-
Notifications
You must be signed in to change notification settings - Fork 84
/
FppClient.php
400 lines (343 loc) · 9.35 KB
/
FppClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php
namespace Fpp;
require_once 'lib/MimeTypes.php';
require_once 'lib/MultiPartForm.php';
require_once 'lib/Adapter.php';
/**
* Class FppClient
*
* Face++ api client for sending request to cloud server.
*
* @package Fpp
*/
class FppClient
{
// the server uri
// in china is api-cn.faceplusplus.com, and in others is api-us.faceplusplus.com
private $host;
// the request key
private $apiKey;
// the request secret
private $apiSecret;
// establish connection timeout time
private $connectTimeout;
// the request timeout time, send request but not receive response in some time
private $socketTimeout;
private $sslVerification = true;
private $curlOpts = array();
// public headers
private $headers = array();
// the client commicumating to the face++ server
private $adapter;
// adapter class
private $adapterClass = 'Fpp\Adapter';
/**
* Constructor
*
* Usage: $client = new FppClient(apiKey, apiSecret, host);
*
* @param string $apiKey The key you obtain from face++ web console
* @param string $apiSecret The secret you obtain from face++ web console
* @param string $hostname The domain name of the datacenter,For example: api-cn.faceplusplus.com
* @throws Exception
*/
public function __construct($apiKey, $apiSecret, $host, $connectTimeout=10000, $socketTimeout=120000)
{
$apiKey = trim($apiKey);
$apiSecret = trim($apiSecret);
$host = trim(trim($host), "/");
if (empty($apiKey)) {
throw new Exception("apiKey is empty");
}
if (empty($apiSecret)) {
throw new Exception("apiSecret is empty");
}
if (empty($host)) {
throw new Exception("host is empty");
}
$this->host = $host;
$this->apiKey = $apiKey;
$this->apiSecret = $apiSecret;
$this->connectTimeout = $connectTimeout;
$this->socketTimeout = $socketTimeout;
}
/**
* @param array $options The options for detect
* @throws Exception \ RequestException
*/
public function detectFace($options)
{
$path = '/facepp/v3/detect';
return $this->request($path, $options);
}
public function compareFace($options)
{
$path = '/facepp/v3/compare';
return $this->request($path, $options);
}
public function searchFace($options)
{
$path = '/facepp/v3/search';
return $this->request($path, $options);
}
/**
* create a faceset if outer_id not exists, else when
* outer_id exists and force_merge is 0, return 400 error.
*/
public function createFaceset($options)
{
$path = '/facepp/v3/faceset/create';
return $this->request($path, $options);
}
/**
* add one or more face to exists faceset
*/
public function addFaceset($options) {
$path = '/facepp/v3/faceset/addface';
return $this->request($path, $options);
}
/**
* remove one or more face of the faceset
*/
public function removeFaceset($options) {
$path = '/facepp/v3/faceset/removeface';
return $this->request($path, $options);
}
/**
* update faceset information
*/
public function updateFaceset($options) {
$path = '/facepp/v3/faceset/update';
return $this->request($path, $options);
}
/**
* get faceset information
*/
public function getDetailFaceset($options) {
$path = '/facepp/v3/faceset/getdetail';
return $this->request($path, $options);
}
/**
* delete faceset
*/
public function deleteFaceset($options) {
$path = '/facepp/v3/faceset/delete';
return $this->request($path, $options);
}
/**
* get faceset list
*/
public function getFacesets($options) {
$path = '/facepp/v3/faceset/getfacesets';
return $this->request($path, $options);
}
/**
* analyze face_token face
*/
public function analyzeFace($options) {
$path = '/facepp/v3/face/analyze';
return $this->request($path, $options);
}
/**
* get face token detail
*/
public function getDetailFace($options) {
$path = '/facepp/v3/face/getdetail';
return $this->request($path, $options);
}
/**
* set user id of the face token
*/
public function setUserIdFace($options) {
$path = '/facepp/v3/face/setuserid';
return $this->request($path, $options);
}
/**
* beauty user face
*/
public function beautyFace($options) {
$path = '/facepp/beta/beautify';
return $this->request($path, $options);
}
/**
* human body detect and analyze
*/
public function detectHumanBody($options) {
$path = '/humanbodypp/v1/detect';
return $this->request($path, $options);
}
/**
* segment human body
*/
public function segmentHumanBody($options)
{
$path = '/humanbodypp/v2/segment';
return $this->request($path, $options);
}
/**
* analyze human body gesture
*/
public function gestureHumanBody($options)
{
$path = '/humanbodypp/beta/gesture';
return $this->request($path, $options);
}
/**
* [OCR] detect id card
*/
public function detectIdCard($options)
{
$path = '/cardpp/v1/ocridcard';
return $this->request($path, $options);
}
/**
* [OCR] detect driver license
*/
public function detectDriverLicense($options)
{
$path = '/cardpp/v2/ocrdriverlicense';
return $this->request($path, $options);
}
/**
* [OCR] detect vehicle license
*/
public function detectVehicleLicense($options)
{
$path = '/cardpp/v1/ocrvehiclelicense';
return $this->request($path, $options);
}
/**
* [OCR] detect bank card
*/
public function detectBankCard($options)
{
$path = '/cardpp/v1/ocrbankcard';
return $this->request($path, $options);
}
/**
* detect scene object
*/
public function detectSenceObject($options)
{
$path = '/imagepp/beta/detectsceneandobject';
return $this->request($path, $options);
}
/**
* recognize text
*/
public function recognizeText($options)
{
$path = '/imagepp/v1/recognizetext';
return $this->request($path, $options);
}
/**
* merge face
*/
public function mergeFace($options)
{
$path = '/imagepp/v1/mergeface';
return $this->request($path, $options);
}
/**
* detect license license plate
*/
public function detectLicensePlate($options)
{
$path = '/imagepp/v1/licenseplate';
return $this->request($path, $options);
}
/**
* Singleton of adapter
*/
public function getAdapter() {
$adapter = $this->adapter;
if (!isset($adapter)) {
$adapter = new $this->adapterClass($this->headers, $this->connectTimeout, $this->socketTimeout);
$adapter->setCurlOpts($this->curlOpts);
$this->adapter = $adapter;
}
return $adapter;
}
/**
* set adapter, if you need more control of the adapter, you can
* construct a adapter, and then set it
*/
public function setAdapter($adapter) {
$this->adapter = $adapter;
}
public function getPublicForms()
{
return array(
'api_key' => $this->apiKey,
'api_secret' => $this->apiSecret
);
}
/**
* Send request
* @return the response instance, see Response.php for more details
*/
public function request($path, $options)
{
$forms = new MultiPartForm();
// add public key field, for example api_key, api_secret
$publics = $this->getPublicForms();
$forms->addForms($publics);
foreach ($options as $key => $value) {
if (is_file($value)) {
$forms->addFile($key, $value, file_get_contents($value));
}else {
$forms->addForm($key, $value);
}
}
$headers = array('Content-Type' => $forms->getContentType());
$adapter = $this->getAdapter();
$url = $this->generateUrl($path);
return $adapter->post($url, $forms, null, $headers);
}
/**
* @param string $path the request uri, starts with '/''
* @return string the request url
*/
public function generateUrl($path) {
return $this->host . '/' . trim($path, '/');
}
/**
* Sets the http's timeout (in millisecond)
*
* @param int $ms
*/
public function setSocketTimeout($ms)
{
$this->socketTimeout = $ms;
}
/**
* Sets the http's connection timeout (in millisecond)
*
* @param int $ms
*/
public function setConnectTimeout($ms)
{
$this->connectTimeout = $ms;
}
/**
* Set the public http's headers
* @param array $headers
*/
public function setHeaders($headers) {
$this->headers = $headers;
}
/**
* set sslVerification
*/
public function setSslVerification($ssl) {
$this->sslVerification = $ssl;
}
/**
* set curl options
*/
public function setCurlOpts($conf)
{
$this->curlOpts = $conf;
}
}
?>