forked from parse-community/parse-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParseClient.php
More file actions
executable file
·484 lines (423 loc) · 13.5 KB
/
Copy pathParseClient.php
File metadata and controls
executable file
·484 lines (423 loc) · 13.5 KB
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php
namespace Parse;
use Exception;
use Parse\Internal\Encodable;
/**
* ParseClient - Main class for Parse initialization and communication.
*
* @author Fosco Marotto <fjm@fb.com>
*/
final class ParseClient
{
/**
* Constant for the API Server Host Address.
*/
const HOST_NAME = 'https://api.parse.com';
/**
* Constant for the API Service version.
*/
const API_VERSION = '1';
/**
* The application id.
*
* @var string
*/
private static $applicationId;
/**
* The REST API Key.
*
* @var string
*/
private static $restKey;
/**
* The Master Key.
*
* @var string
*/
private static $masterKey;
/**
* Enable/Disable curl exceptions.
*
* @var bool
*/
private static $enableCurlExceptions;
/**
* The object for managing persistence.
*
* @var ParseStorageInterface
*/
private static $storage;
/**
* Are revocable sessions enabled?
*
* @var bool
*/
private static $forceRevocableSession = false;
/**
* Number of seconds to wait while trying to connect. Use 0 to wait indefinitely.
*
* @var int
*/
private static $connectionTimeout;
/**
* Maximum number of seconds of request/response operation.
*
* @var int
*/
private static $timeout;
/**
* Constant for version string to include with requests.
*
* @var string
*/
const VERSION_STRING = 'php1.1.0';
/**
* Parse\Client::initialize, must be called before using Parse features.
*
* @param string $app_id Parse Application ID
* @param string $rest_key Parse REST API Key
* @param string $master_key Parse Master Key
* @param bool $enableCurlExceptions Enable or disable Parse curl exceptions
*/
public static function initialize($app_id, $rest_key, $master_key, $enableCurlExceptions = true)
{
if (!ParseObject::hasRegisteredSubclass('_User')) {
ParseUser::registerSubclass();
}
if (!ParseObject::hasRegisteredSubclass('_Role')) {
ParseRole::registerSubclass();
}
if (!ParseObject::hasRegisteredSubclass('_Installation')) {
ParseInstallation::registerSubclass();
}
ParseSession::registerSubclass();
self::$applicationId = $app_id;
self::$restKey = $rest_key;
self::$masterKey = $master_key;
self::$enableCurlExceptions = $enableCurlExceptions;
if (!static::$storage) {
if (session_status() === PHP_SESSION_ACTIVE) {
self::setStorage(new ParseSessionStorage());
} else {
self::setStorage(new ParseMemoryStorage());
}
}
}
/**
* ParseClient::_encode, internal method for encoding object values.
*
* @param mixed $value Value to encode
* @param bool $allowParseObjects Allow nested objects
*
* @throws \Exception
*
* @return mixed Encoded results.
*/
public static function _encode($value, $allowParseObjects)
{
if ($value instanceof \DateTime || $value instanceof \DateTimeImmutable) {
return [
'__type' => 'Date', 'iso' => self::getProperDateFormat($value),
];
}
if ($value instanceof \stdClass) {
return $value;
}
if ($value instanceof ParseObject) {
if (!$allowParseObjects) {
throw new Exception('ParseObjects not allowed here.');
}
return $value->_toPointer();
}
if ($value instanceof Encodable) {
return $value->_encode();
}
if (is_array($value)) {
return self::_encodeArray($value, $allowParseObjects);
}
if (!is_scalar($value) && $value !== null) {
throw new \Exception('Invalid type encountered.');
}
return $value;
}
/**
* ParseClient::_decode, internal method for decoding server responses.
*
* @param mixed $data The value to decode
*
* @return mixed
*/
public static function _decode($data)
{
// The json decoded response from Parse will make JSONObjects into stdClass
// objects. We'll change it to an associative array here.
if ($data instanceof \stdClass) {
$tmp = (array) $data;
if (!empty($tmp)) {
return self::_decode(get_object_vars($data));
}
}
if (!isset($data) && !is_array($data)) {
return;
}
if (is_array($data)) {
$typeString = (isset($data['__type']) ? $data['__type'] : null);
if ($typeString === 'Date') {
return new \DateTime($data['iso']);
}
if ($typeString === 'Bytes') {
return base64_decode($data['base64']);
}
if ($typeString === 'Pointer') {
return ParseObject::create($data['className'], $data['objectId']);
}
if ($typeString === 'File') {
return ParseFile::_createFromServer($data['name'], $data['url']);
}
if ($typeString === 'GeoPoint') {
return new ParseGeoPoint($data['latitude'], $data['longitude']);
}
if ($typeString === 'Object') {
$output = ParseObject::create($data['className']);
$output->_mergeAfterFetch($data);
return $output;
}
if ($typeString === 'Relation') {
return $data;
}
$newDict = [];
foreach ($data as $key => $value) {
$newDict[$key] = static::_decode($value);
}
return $newDict;
}
return $data;
}
/**
* ParseClient::_encodeArray, internal method for encoding arrays.
*
* @param array $value Array to encode.
* @param bool $allowParseObjects Allow nested objects.
*
* @return array Encoded results.
*/
public static function _encodeArray($value, $allowParseObjects)
{
$output = [];
foreach ($value as $key => $item) {
$output[$key] = self::_encode($item, $allowParseObjects);
}
return $output;
}
/**
* Parse\Client::_request, internal method for communicating with Parse.
*
* @param string $method HTTP Method for this request.
* @param string $relativeUrl REST API Path.
* @param null $sessionToken Session Token.
* @param null $data Data to provide with the request.
* @param bool $useMasterKey Whether to use the Master Key.
*
* @throws \Exception
*
* @return mixed Result from Parse API Call.
*/
public static function _request($method, $relativeUrl, $sessionToken = null,
$data = null, $useMasterKey = false
) {
if ($data === '[]') {
$data = '{}';
}
self::assertParseInitialized();
$headers = self::_getRequestHeaders($sessionToken, $useMasterKey);
$url = self::HOST_NAME.'/'.self::API_VERSION.'/'.ltrim($relativeUrl, '/');
if ($method === 'GET' && !empty($data)) {
$url .= '?'.http_build_query($data);
}
$rest = curl_init();
curl_setopt($rest, CURLOPT_URL, $url);
curl_setopt($rest, CURLOPT_RETURNTRANSFER, 1);
if ($method === 'POST') {
$headers[] = 'Content-Type: application/json';
curl_setopt($rest, CURLOPT_POST, 1);
curl_setopt($rest, CURLOPT_POSTFIELDS, $data);
}
if ($method === 'PUT') {
$headers[] = 'Content-Type: application/json';
curl_setopt($rest, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($rest, CURLOPT_POSTFIELDS, $data);
}
if ($method === 'DELETE') {
curl_setopt($rest, CURLOPT_CUSTOMREQUEST, $method);
}
curl_setopt($rest, CURLOPT_HTTPHEADER, $headers);
if (!is_null(self::$connectionTimeout)) {
curl_setopt($rest, CURLOPT_CONNECTTIMEOUT, self::$connectionTimeout);
}
if (!is_null(self::$timeout)) {
curl_setopt($rest, CURLOPT_TIMEOUT, self::$timeout);
}
$response = curl_exec($rest);
$status = curl_getinfo($rest, CURLINFO_HTTP_CODE);
$contentType = curl_getinfo($rest, CURLINFO_CONTENT_TYPE);
if (curl_errno($rest)) {
if (self::$enableCurlExceptions) {
throw new ParseException(curl_error($rest), curl_errno($rest));
} else {
return false;
}
}
curl_close($rest);
if (strpos($contentType, 'text/html') !== false) {
throw new ParseException('Bad Request', -1);
}
$decoded = json_decode($response, true);
if (isset($decoded['error'])) {
throw new ParseException(
$decoded['error'],
isset($decoded['code']) ? $decoded['code'] : 0
);
}
return $decoded;
}
/**
* ParseClient::setStorage, will update the storage object used for
* persistence.
*
* @param ParseStorageInterface $storageObject
*/
public static function setStorage(ParseStorageInterface $storageObject)
{
self::$storage = $storageObject;
}
/**
* ParseClient::getStorage, will return the storage object used for
* persistence.
*
* @return ParseStorageInterface
*/
public static function getStorage()
{
return self::$storage;
}
/**
* ParseClient::_unsetStorage, will null the storage object.
*
* Without some ability to clear the storage objects, all test cases would
* use the first assigned storage object.
*/
public static function _unsetStorage()
{
self::$storage = null;
}
private static function assertParseInitialized()
{
if (self::$applicationId === null) {
throw new Exception(
'You must call Parse::initialize() before making any requests.'
);
}
}
/**
* @param $sessionToken
* @param $useMasterKey
*
* @return array
*/
public static function _getRequestHeaders($sessionToken, $useMasterKey)
{
$headers = ['X-Parse-Application-Id: '.self::$applicationId,
'X-Parse-Client-Version: '.self::VERSION_STRING, ];
if ($sessionToken) {
$headers[] = 'X-Parse-Session-Token: '.$sessionToken;
}
if ($useMasterKey) {
$headers[] = 'X-Parse-Master-Key: '.self::$masterKey;
} else {
$headers[] = 'X-Parse-REST-API-Key: '.self::$restKey;
}
if (self::$forceRevocableSession) {
$headers[] = 'X-Parse-Revocable-Session: 1';
}
/*
* Set an empty Expect header to stop the 100-continue behavior for post
* data greater than 1024 bytes.
* http://pilif.github.io/2007/02/the-return-of-except-100-continue/
*/
$headers[] = 'Expect: ';
return $headers;
}
/**
* Get remote Parse API url.
*
* @return string
*/
public static function getAPIUrl()
{
return self::HOST_NAME.'/'.self::API_VERSION.'/';
}
/**
* Get a date value in the format stored on Parse.
*
* All the SDKs do some slightly different date handling.
* PHP provides 6 digits for the microseconds (u) so we have to chop 3 off.
*
* @param \DateTime $value DateTime value to format.
*
* @return string
*/
public static function getProperDateFormat($value)
{
$dateFormatString = 'Y-m-d\TH:i:s.u';
$date = date_format($value, $dateFormatString);
$date = substr($date, 0, -3).'Z';
return $date;
}
/**
* Get a date value in the format to use in Local Push Scheduling on Parse.
*
* All the SDKs do some slightly different date handling.
* Format from Parse doc: an ISO 8601 date without a time zone, i.e. 2014-10-16T12:00:00 .
*
* @param \DateTime $value DateTime value to format.
* @param bool $local Whether to return the local push time
*
* @return string
*/
public static function getPushDateFormat($value, $local = false)
{
$dateFormatString = 'Y-m-d\TH:i:s';
if (!$local) {
$dateFormatString .= '\Z';
}
$date = date_format($value, $dateFormatString);
return $date;
}
/**
* Allows an existing application to start using revocable sessions, without forcing
* all requests for the app to use them. After calling this method, login & signup requests
* will be returned a unique and revocable session token.
*/
public static function enableRevocableSessions()
{
self::$forceRevocableSession = true;
}
/**
* Sets number of seconds to wait while trying to connect. Use 0 to wait indefinitely, null to default behaviour.
*
* @param int|null $connectionTimeout
*/
public static function setConnectionTimeout($connectionTimeout)
{
self::$connectionTimeout = $connectionTimeout;
}
/**
* Sets maximum number of seconds of request/response operation. Use 0 to wait indefinitely, null to default behaviour.
*
* @param int|null $timeout
*/
public static function setTimeout($timeout)
{
self::$timeout = $timeout;
}
}