@@ -69,6 +69,20 @@ public function __construct($configuration = [])
69
69
$ this ->http_client = new HttpClient ;
70
70
}
71
71
72
+ /**
73
+ * Apply configuration
74
+ *
75
+ * @param array $configuration
76
+ *
77
+ * @return void
78
+ */
79
+ private function applyConfiguration ($ configuration = [])
80
+ {
81
+ array_walk ($ configuration , function ($ value , $ key ) {
82
+ $ this ->updateAttribute ($ key , $ value );
83
+ });
84
+ }
85
+
72
86
/**
73
87
* Cancel a single request
74
88
*
@@ -81,6 +95,58 @@ public function cancelRequest($request_id)
81
95
return $ this ->request ('delete ' , 'requests/ ' .$ request_id );
82
96
}
83
97
98
+ /**
99
+ * Get authorization header value
100
+ *
101
+ * @return string
102
+ */
103
+ private function getAuthorizationHeader ()
104
+ {
105
+ if ($ this ->access_token ) {
106
+ return 'Bearer ' .$ this ->access_token ;
107
+ }
108
+
109
+ return 'Token ' .$ this ->server_token ;
110
+ }
111
+
112
+ /**
113
+ * Get HttpClient config for verb and parameters
114
+ *
115
+ * @param string $verb
116
+ * @param array $parameters
117
+ *
118
+ * @return array
119
+ */
120
+ private function getConfigForVerbAndParameters ($ verb , $ parameters = [])
121
+ {
122
+ $ config = [
123
+ 'headers ' => $ this ->getHeaders ()
124
+ ];
125
+
126
+ if (!empty ($ parameters )) {
127
+ if (strtolower ($ verb ) == 'get ' ) {
128
+ $ config ['query ' ] = $ parameters ;
129
+ } else {
130
+ $ config ['json ' ] = $ parameters ;
131
+ }
132
+ }
133
+
134
+ return $ config ;
135
+ }
136
+
137
+ /**
138
+ * Get headers for request
139
+ *
140
+ * @return array
141
+ */
142
+ public function getHeaders ()
143
+ {
144
+ return [
145
+ 'Authorization ' => trim ($ this ->getAuthorizationHeader ()),
146
+ 'Accept-Language ' => trim ($ this ->locale ),
147
+ ];
148
+ }
149
+
84
150
/**
85
151
* The User Activity endpoint returns a limited amount of data about a
86
152
* user's lifetime activity with Uber. The response will include pickup and
@@ -209,32 +275,6 @@ public function getTimeEstimates($attributes = [])
209
275
return $ this ->request ('get ' , 'estimates/time ' , $ attributes );
210
276
}
211
277
212
- /**
213
- * The Request endpoint allows a ride to be requested on behalf of an Uber
214
- * user given their desired product, start, and end locations.
215
- *
216
- * @param array $attributes Query attributes
217
- *
218
- * @return stdClass The JSON response from the request
219
- */
220
- public function requestRide ($ attributes = [])
221
- {
222
- return $ this ->request ('post ' , 'requests ' , $ attributes );
223
- }
224
-
225
- /**
226
- * Get headers for request
227
- *
228
- * @return array
229
- */
230
- public function getHeaders ()
231
- {
232
- return [
233
- 'Authorization ' => trim ($ this ->getAuthorizationHeader ()),
234
- 'Accept-Language ' => trim ($ this ->locale ),
235
- ];
236
- }
237
-
238
278
/**
239
279
* Build url
240
280
*
@@ -252,90 +292,59 @@ public function getUrlFromPath($path)
252
292
}
253
293
254
294
/**
255
- * Set Http Client
256
- *
257
- * @param HttpClient $client
258
- *
259
- * @return Client
260
- */
261
- public function setHttpClient (HttpClient $ client )
262
- {
263
- $ this ->http_client = $ client ;
264
- return $ this ;
265
- }
266
-
267
- /**
268
- * Apply configuration
295
+ * Handle http client exceptions
269
296
*
270
- * @param array $configuration
297
+ * @param HttpClientException $e
271
298
*
272
299
* @return void
300
+ * @throws Exception
273
301
*/
274
- private function applyConfiguration ( $ configuration = [] )
302
+ private function handleRequestException ( HttpClientException $ e )
275
303
{
276
- array_walk ($ configuration , function ($ value , $ key ) {
277
- $ this ->updateAttribute ($ key , $ value );
278
- });
279
- }
304
+ if ($ response = $ e ->getResponse ()) {
305
+ $ exception = new Exception ($ response ->getReasonPhrase (), $ response ->getStatusCode (), $ e );
306
+ $ exception ->setBody ($ response ->json ());
280
307
281
- /**
282
- * Get authorization header value
283
- *
284
- * @return string
285
- */
286
- private function getAuthorizationHeader ()
287
- {
288
- if ($ this ->access_token ) {
289
- return 'Bearer ' .$ this ->access_token ;
308
+ throw $ exception ;
290
309
}
291
310
292
- return ' Token ' . $ this -> server_token ;
311
+ throw new Exception ( $ e -> getMessage (), 500 , $ e ) ;
293
312
}
294
313
295
314
/**
296
- * Get HttpClient config for verb and parameters
315
+ * Parse configuration using defaults
297
316
*
298
- * @param string $verb
299
- * @param array $parameters
317
+ * @param array $configuration
300
318
*
301
- * @return array
319
+ * @return array $configuration
302
320
*/
303
- private function getConfigForVerbAndParameters ( $ verb , $ parameters = [])
321
+ private function parseConfiguration ( $ configuration = [])
304
322
{
305
- $ config = [
306
- 'headers ' => $ this ->getHeaders ()
307
- ];
308
-
309
- if (!empty ($ parameters )) {
310
- if (strtolower ($ verb ) == 'get ' ) {
311
- $ config ['query ' ] = $ parameters ;
312
- } else {
313
- $ config ['json ' ] = $ parameters ;
314
- }
315
- }
323
+ $ defaults = array (
324
+ 'access_token ' => null ,
325
+ 'server_token ' => null ,
326
+ 'use_sandbox ' => false ,
327
+ 'version ' => 'v1 ' ,
328
+ 'locale ' => 'en_US ' ,
329
+ );
316
330
317
- return $ config ;
331
+ return array_merge ( $ defaults , $ configuration ) ;
318
332
}
319
333
320
-
321
334
/**
322
- * Handle http client exceptions
335
+ * Attempt to pull rate limit headers from response and add to client
323
336
*
324
- * @param HttpClientException $e
337
+ * @param Response $response
325
338
*
326
339
* @return void
327
- * @throws Exception
328
340
*/
329
- private function handleRequestException ( HttpClientException $ e )
341
+ private function parseRateLimitFromResponse ( Response $ response )
330
342
{
331
- if ($ response = $ e ->getResponse ()) {
332
- $ exception = new Exception ($ response ->getReasonPhrase (), $ response ->getStatusCode (), $ e );
333
- $ exception ->setBody ($ response ->json ());
334
-
335
- throw $ exception ;
336
- }
337
-
338
- throw new Exception ($ e ->getMessage (), 500 , $ e );
343
+ $ this ->rate_limit = new RateLimit (
344
+ $ response ->getHeader ('X-Rate-Limit-Limit ' ),
345
+ $ response ->getHeader ('X-Rate-Limit-Remaining ' ),
346
+ $ response ->getHeader ('X-Rate-Limit-Reset ' )
347
+ );
339
348
}
340
349
341
350
/**
@@ -367,38 +376,54 @@ private function request($verb, $path, $parameters = [])
367
376
}
368
377
369
378
/**
370
- * Parse configuration using defaults
379
+ * The Request endpoint allows a ride to be requested on behalf of an Uber
380
+ * user given their desired product, start, and end locations.
371
381
*
372
- * @param array $configuration
382
+ * @param array $attributes Query attributes
373
383
*
374
- * @return array $configuration
384
+ * @return stdClass The JSON response from the request
375
385
*/
376
- private function parseConfiguration ( $ configuration = [])
386
+ public function requestRide ( $ attributes = [])
377
387
{
378
- $ defaults = array (
379
- 'access_token ' => null ,
380
- 'server_token ' => null ,
381
- 'use_sandbox ' => false ,
382
- 'version ' => 'v1 ' ,
383
- 'locale ' => 'en_US ' ,
384
- );
388
+ return $ this ->request ('post ' , 'requests ' , $ attributes );
389
+ }
385
390
386
- return array_merge ($ defaults , $ configuration );
391
+ /**
392
+ * Set Http Client
393
+ *
394
+ * @param HttpClient $client
395
+ *
396
+ * @return Client
397
+ */
398
+ public function setHttpClient (HttpClient $ client )
399
+ {
400
+ $ this ->http_client = $ client ;
401
+ return $ this ;
387
402
}
388
403
389
404
/**
390
- * Attempt to pull rate limit headers from response and add to client
405
+ * Set product properties for sandbox responses
391
406
*
392
- * @param Response $response
407
+ * @param string $product_id
408
+ * @param array $attributes
393
409
*
394
- * @return void
410
+ * @return stdClass
395
411
*/
396
- private function parseRateLimitFromResponse ( Response $ response )
412
+ public function setProduct ( $ product_id , $ attributes = [] )
397
413
{
398
- $ this ->rate_limit = new RateLimit (
399
- $ response ->getHeader ('X-Rate-Limit-Limit ' ),
400
- $ response ->getHeader ('X-Rate-Limit-Remaining ' ),
401
- $ response ->getHeader ('X-Rate-Limit-Reset ' )
402
- );
414
+ return $ this ->request ('put ' , 'sandbox/products/ ' .$ product_id , $ attributes );
415
+ }
416
+
417
+ /**
418
+ * Set request properties for sandbox responses
419
+ *
420
+ * @param string $request_id
421
+ * @param array $attributes
422
+ *
423
+ * @return stdClass
424
+ */
425
+ public function setRequest ($ request_id , $ attributes = [])
426
+ {
427
+ return $ this ->request ('put ' , 'sandbox/requests/ ' .$ request_id , $ attributes );
403
428
}
404
429
}
0 commit comments