Skip to content

Commit 59b5d8a

Browse files
committed
adding support for sandbox PUT methods and added documentation for confirmation flow
1 parent 4091c4b commit 59b5d8a

File tree

3 files changed

+218
-108
lines changed

3 files changed

+218
-108
lines changed

README.md

+48-1
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,30 @@ $request = $client->requestRide(array(
127127
'start_latitude' => '41.85582993',
128128
'start_longitude' => '-87.62730337',
129129
'end_latitude' => '41.87499492',
130-
'end_longitude' => '-87.67126465'
130+
'end_longitude' => '-87.67126465',
131+
'surge_confirmation_id' => 'e100a670' // Optional
131132
));
132133
```
133134

135+
#### Surge Confirmation Flow
136+
137+
If the ride request is using a product that has a surge multiplier, the API wrapper will throw an Exception and provide a response body that includes a surge confirmation ID.
138+
139+
```php
140+
try {
141+
$request = $client->requestRide(array(
142+
'product_id' => '4bfc6c57-98c0-424f-a72e-c1e2a1d49939',
143+
'start_latitude' => '41.85582993',
144+
'start_longitude' => '-87.62730337',
145+
'end_latitude' => '41.87499492',
146+
'end_longitude' => '-87.67126465'
147+
));
148+
} catch (Stevenmaguire\Uber\Exception $e) {
149+
$body = $e->getBody();
150+
$surgeConfirmationId = $body['meta']['surge_confirmation']['surge_confirmation_id'];
151+
}
152+
```
153+
134154
[https://developer.uber.com/v1/endpoints/#request](https://developer.uber.com/v1/endpoints/#request)
135155

136156
### Get Ride Details
@@ -176,6 +196,33 @@ These values will update after each request. `getRateLimit` will return null aft
176196

177197
[https://developer.uber.com/v1/api-reference/#rate-limiting](https://developer.uber.com/v1/api-reference/#rate-limiting)
178198

199+
### Using the Sandbox
200+
201+
Modify the status of an ongoing sandbox Request.
202+
203+
```php
204+
$request = $client->requestRide(array(
205+
'product_id' => '4bfc6c57-98c0-424f-a72e-c1e2a1d49939',
206+
'start_latitude' => '41.85582993',
207+
'start_longitude' => '-87.62730337',
208+
'end_latitude' => '41.87499492',
209+
'end_longitude' => '-87.67126465'
210+
));
211+
212+
$updateRequest = $client->setRequest($request->request_id, ['status' => 'accepted']);
213+
```
214+
[https://developer.uber.com/v1/sandbox/#request](https://developer.uber.com/v1/sandbox/#request)
215+
216+
Simulate the possible responses the Request endpoint will return when requesting a particular product, such as surge pricing, against the Sandbox.
217+
218+
```php
219+
$product = $client->getProduct($product_id);
220+
221+
$updateProduct = $client->setProduct($product_id, ['surge_multiplier' => 2.2, 'drivers_available' => false]);
222+
```
223+
224+
[https://developer.uber.com/v1/sandbox/#product-types](https://developer.uber.com/v1/sandbox/#product-types)
225+
179226
## Testing
180227

181228
``` bash

src/Client.php

+132-107
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,20 @@ public function __construct($configuration = [])
6969
$this->http_client = new HttpClient;
7070
}
7171

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+
7286
/**
7387
* Cancel a single request
7488
*
@@ -81,6 +95,58 @@ public function cancelRequest($request_id)
8195
return $this->request('delete', 'requests/'.$request_id);
8296
}
8397

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+
84150
/**
85151
* The User Activity endpoint returns a limited amount of data about a
86152
* user's lifetime activity with Uber. The response will include pickup and
@@ -209,32 +275,6 @@ public function getTimeEstimates($attributes = [])
209275
return $this->request('get', 'estimates/time', $attributes);
210276
}
211277

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-
238278
/**
239279
* Build url
240280
*
@@ -252,90 +292,59 @@ public function getUrlFromPath($path)
252292
}
253293

254294
/**
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
269296
*
270-
* @param array $configuration
297+
* @param HttpClientException $e
271298
*
272299
* @return void
300+
* @throws Exception
273301
*/
274-
private function applyConfiguration($configuration = [])
302+
private function handleRequestException(HttpClientException $e)
275303
{
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());
280307

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;
290309
}
291310

292-
return 'Token '.$this->server_token;
311+
throw new Exception($e->getMessage(), 500, $e);
293312
}
294313

295314
/**
296-
* Get HttpClient config for verb and parameters
315+
* Parse configuration using defaults
297316
*
298-
* @param string $verb
299-
* @param array $parameters
317+
* @param array $configuration
300318
*
301-
* @return array
319+
* @return array $configuration
302320
*/
303-
private function getConfigForVerbAndParameters($verb, $parameters = [])
321+
private function parseConfiguration($configuration = [])
304322
{
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+
);
316330

317-
return $config;
331+
return array_merge($defaults, $configuration);
318332
}
319333

320-
321334
/**
322-
* Handle http client exceptions
335+
* Attempt to pull rate limit headers from response and add to client
323336
*
324-
* @param HttpClientException $e
337+
* @param Response $response
325338
*
326339
* @return void
327-
* @throws Exception
328340
*/
329-
private function handleRequestException(HttpClientException $e)
341+
private function parseRateLimitFromResponse(Response $response)
330342
{
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+
);
339348
}
340349

341350
/**
@@ -367,38 +376,54 @@ private function request($verb, $path, $parameters = [])
367376
}
368377

369378
/**
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.
371381
*
372-
* @param array $configuration
382+
* @param array $attributes Query attributes
373383
*
374-
* @return array $configuration
384+
* @return stdClass The JSON response from the request
375385
*/
376-
private function parseConfiguration($configuration = [])
386+
public function requestRide($attributes = [])
377387
{
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+
}
385390

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;
387402
}
388403

389404
/**
390-
* Attempt to pull rate limit headers from response and add to client
405+
* Set product properties for sandbox responses
391406
*
392-
* @param Response $response
407+
* @param string $product_id
408+
* @param array $attributes
393409
*
394-
* @return void
410+
* @return stdClass
395411
*/
396-
private function parseRateLimitFromResponse(Response $response)
412+
public function setProduct($product_id, $attributes = [])
397413
{
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);
403428
}
404429
}

0 commit comments

Comments
 (0)