@@ -25,53 +25,53 @@ |
||
25 | 25 | class Geocoding extends Api |
26 | 26 | { |
27 | 27 | |
28 | - /** |
|
29 | - * @var string |
|
30 | - */ |
|
31 | - const SERVICE_ENDPOINT = 'geocode'; |
|
28 | + /** |
|
29 | + * @var string |
|
30 | + */ |
|
31 | + const SERVICE_ENDPOINT = 'geocode'; |
|
32 | 32 | |
33 | - /** |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - protected $result_collection = GeocodingResultsCollection::class; |
|
33 | + /** |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + protected $result_collection = GeocodingResultsCollection::class; |
|
37 | 37 | |
38 | - /** |
|
39 | - * @param string $literal_address |
|
40 | - * |
|
41 | - * @return GoogleMapsResultsCollection |
|
42 | - */ |
|
43 | - public function getByAddress(string $literal_address): GoogleMapsResultsCollection |
|
44 | - { |
|
38 | + /** |
|
39 | + * @param string $literal_address |
|
40 | + * |
|
41 | + * @return GoogleMapsResultsCollection |
|
42 | + */ |
|
43 | + public function getByAddress(string $literal_address): GoogleMapsResultsCollection |
|
44 | + { |
|
45 | 45 | |
46 | - return $this->callApi([ |
|
47 | - GoogleMapsRequestFields::ADDRESS => $literal_address |
|
48 | - ]); |
|
49 | - } |
|
46 | + return $this->callApi([ |
|
47 | + GoogleMapsRequestFields::ADDRESS => $literal_address |
|
48 | + ]); |
|
49 | + } |
|
50 | 50 | |
51 | - /** |
|
52 | - * @param LatLng $latlng |
|
53 | - * |
|
54 | - * @return GoogleMapsResultsCollection |
|
55 | - */ |
|
56 | - public function getReverse(LatLng $latlng): GoogleMapsResultsCollection |
|
57 | - { |
|
51 | + /** |
|
52 | + * @param LatLng $latlng |
|
53 | + * |
|
54 | + * @return GoogleMapsResultsCollection |
|
55 | + */ |
|
56 | + public function getReverse(LatLng $latlng): GoogleMapsResultsCollection |
|
57 | + { |
|
58 | 58 | |
59 | - return $this->callApi([ |
|
60 | - GoogleMapsRequestFields::LATLNG => $latlng |
|
61 | - ]); |
|
62 | - } |
|
59 | + return $this->callApi([ |
|
60 | + GoogleMapsRequestFields::LATLNG => $latlng |
|
61 | + ]); |
|
62 | + } |
|
63 | 63 | |
64 | - /** |
|
65 | - * @param string $place_id |
|
66 | - * |
|
67 | - * @return GoogleMapsResultsCollection |
|
68 | - */ |
|
69 | - public function getByPlaceId(string $place_id): GoogleMapsResultsCollection |
|
70 | - { |
|
64 | + /** |
|
65 | + * @param string $place_id |
|
66 | + * |
|
67 | + * @return GoogleMapsResultsCollection |
|
68 | + */ |
|
69 | + public function getByPlaceId(string $place_id): GoogleMapsResultsCollection |
|
70 | + { |
|
71 | 71 | |
72 | - return $this->callApi([ |
|
73 | - GoogleMapsRequestFields::PLACE_ID => $place_id |
|
74 | - ]); |
|
75 | - } |
|
72 | + return $this->callApi([ |
|
73 | + GoogleMapsRequestFields::PLACE_ID => $place_id |
|
74 | + ]); |
|
75 | + } |
|
76 | 76 | |
77 | 77 | } |
78 | 78 | \ No newline at end of file |
@@ -28,92 +28,92 @@ |
||
28 | 28 | class Elevation extends Api |
29 | 29 | { |
30 | 30 | |
31 | - /** |
|
32 | - * @var string |
|
33 | - */ |
|
34 | - const SERVICE_ENDPOINT = 'elevation'; |
|
35 | - |
|
36 | - /** |
|
37 | - * @var string |
|
38 | - */ |
|
39 | - protected $result_collection = ElevationResultsCollection::class; |
|
40 | - |
|
41 | - /** |
|
42 | - * Positional Requests |
|
43 | - * |
|
44 | - * @param LatLng|string|array $locations |
|
45 | - * This parameter takes either a single location or multiple locations passed as an array or as an encoded polyline |
|
46 | - * |
|
47 | - * @return GoogleMapsResultsCollection |
|
48 | - * |
|
49 | - * @since 0.3.0 |
|
50 | - */ |
|
51 | - public function getByLocations($locations): GoogleMapsResultsCollection |
|
52 | - { |
|
53 | - |
|
54 | - $locations = $this->parseLocations($locations); |
|
55 | - |
|
56 | - return $this->callApi([ |
|
57 | - GoogleMapsRequestFields::LOCATIONS => $locations |
|
58 | - ]); |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * @param array|string $locations |
|
63 | - * |
|
64 | - * @return string |
|
65 | - * |
|
66 | - * @since 0.3.0 |
|
67 | - */ |
|
68 | - public function parseLocations($locations): string |
|
69 | - { |
|
70 | - |
|
71 | - if ($locations instanceof Path) { |
|
72 | - $locations = $locations->toArray(); |
|
73 | - } |
|
74 | - |
|
75 | - if (is_array($locations)) { |
|
76 | - $locations = implode('|', array_map(function ($item) { |
|
77 | - |
|
78 | - return (string)$item; |
|
79 | - }, $locations)); |
|
80 | - } |
|
81 | - |
|
82 | - return (string)$locations; |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Sampled Path Requests |
|
87 | - * |
|
88 | - * @param array|string $path |
|
89 | - * This parameter takes either a multiple locations passed as an array or as an encoded polyline |
|
90 | - * |
|
91 | - * @param int $samples |
|
92 | - * This will be the number of results as well |
|
93 | - * |
|
94 | - * @throws InvalidArgumentException |
|
95 | - * @return GoogleMapsResultsCollection |
|
96 | - * |
|
97 | - * @since 0.4.0 |
|
98 | - */ |
|
99 | - public function getBySampledPath($path, int $samples): GoogleMapsResultsCollection |
|
100 | - { |
|
101 | - |
|
102 | - if ((is_array($path) && count($path) < 2) || |
|
103 | - $path instanceof Path && $path->count() < 2) { |
|
104 | - throw new InvalidArgumentException('The number of items provided in the path must be greater than 1 (One)'); |
|
105 | - } |
|
106 | - |
|
107 | - if ($samples <= 0) { |
|
108 | - throw new InvalidArgumentException('The number of samples must be greater than 0 (Zero)'); |
|
109 | - } |
|
110 | - |
|
111 | - $path = $this->parseLocations($path); |
|
112 | - |
|
113 | - return $this->callApi([ |
|
114 | - GoogleMapsRequestFields::PATH => $path, |
|
115 | - GoogleMapsRequestFields::SAMPLES => $samples, |
|
116 | - ]); |
|
117 | - } |
|
31 | + /** |
|
32 | + * @var string |
|
33 | + */ |
|
34 | + const SERVICE_ENDPOINT = 'elevation'; |
|
35 | + |
|
36 | + /** |
|
37 | + * @var string |
|
38 | + */ |
|
39 | + protected $result_collection = ElevationResultsCollection::class; |
|
40 | + |
|
41 | + /** |
|
42 | + * Positional Requests |
|
43 | + * |
|
44 | + * @param LatLng|string|array $locations |
|
45 | + * This parameter takes either a single location or multiple locations passed as an array or as an encoded polyline |
|
46 | + * |
|
47 | + * @return GoogleMapsResultsCollection |
|
48 | + * |
|
49 | + * @since 0.3.0 |
|
50 | + */ |
|
51 | + public function getByLocations($locations): GoogleMapsResultsCollection |
|
52 | + { |
|
53 | + |
|
54 | + $locations = $this->parseLocations($locations); |
|
55 | + |
|
56 | + return $this->callApi([ |
|
57 | + GoogleMapsRequestFields::LOCATIONS => $locations |
|
58 | + ]); |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * @param array|string $locations |
|
63 | + * |
|
64 | + * @return string |
|
65 | + * |
|
66 | + * @since 0.3.0 |
|
67 | + */ |
|
68 | + public function parseLocations($locations): string |
|
69 | + { |
|
70 | + |
|
71 | + if ($locations instanceof Path) { |
|
72 | + $locations = $locations->toArray(); |
|
73 | + } |
|
74 | + |
|
75 | + if (is_array($locations)) { |
|
76 | + $locations = implode('|', array_map(function ($item) { |
|
77 | + |
|
78 | + return (string)$item; |
|
79 | + }, $locations)); |
|
80 | + } |
|
81 | + |
|
82 | + return (string)$locations; |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Sampled Path Requests |
|
87 | + * |
|
88 | + * @param array|string $path |
|
89 | + * This parameter takes either a multiple locations passed as an array or as an encoded polyline |
|
90 | + * |
|
91 | + * @param int $samples |
|
92 | + * This will be the number of results as well |
|
93 | + * |
|
94 | + * @throws InvalidArgumentException |
|
95 | + * @return GoogleMapsResultsCollection |
|
96 | + * |
|
97 | + * @since 0.4.0 |
|
98 | + */ |
|
99 | + public function getBySampledPath($path, int $samples): GoogleMapsResultsCollection |
|
100 | + { |
|
101 | + |
|
102 | + if ((is_array($path) && count($path) < 2) || |
|
103 | + $path instanceof Path && $path->count() < 2) { |
|
104 | + throw new InvalidArgumentException('The number of items provided in the path must be greater than 1 (One)'); |
|
105 | + } |
|
106 | + |
|
107 | + if ($samples <= 0) { |
|
108 | + throw new InvalidArgumentException('The number of samples must be greater than 0 (Zero)'); |
|
109 | + } |
|
110 | + |
|
111 | + $path = $this->parseLocations($path); |
|
112 | + |
|
113 | + return $this->callApi([ |
|
114 | + GoogleMapsRequestFields::PATH => $path, |
|
115 | + GoogleMapsRequestFields::SAMPLES => $samples, |
|
116 | + ]); |
|
117 | + } |
|
118 | 118 | |
119 | 119 | } |
120 | 120 | \ No newline at end of file |
@@ -73,13 +73,13 @@ |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | if (is_array($locations)) { |
76 | - $locations = implode('|', array_map(function ($item) { |
|
76 | + $locations = implode('|', array_map(function($item) { |
|
77 | 77 | |
78 | - return (string)$item; |
|
78 | + return (string) $item; |
|
79 | 79 | }, $locations)); |
80 | 80 | } |
81 | 81 | |
82 | - return (string)$locations; |
|
82 | + return (string) $locations; |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
@@ -25,279 +25,279 @@ |
||
25 | 25 | class GoogleMapsApi |
26 | 26 | { |
27 | 27 | |
28 | - /** |
|
29 | - * @var GoogleMapsApi |
|
30 | - */ |
|
31 | - protected static $instance = null; |
|
32 | - |
|
33 | - /** |
|
34 | - * @var GoogleMapsRequest |
|
35 | - */ |
|
36 | - protected $request = null; |
|
37 | - |
|
38 | - /** |
|
39 | - * Google Maps Geocode Service API url |
|
40 | - * @var string |
|
41 | - */ |
|
42 | - private $api_url = "https://maps.googleapis.com/maps/api/"; |
|
43 | - |
|
44 | - /** |
|
45 | - * your own Google Maps API key |
|
46 | - * @var string |
|
47 | - * @see https://developers.google.com/maps/documentation/javascript/get-api-key |
|
48 | - */ |
|
49 | - private $key = ''; |
|
50 | - |
|
51 | - /** |
|
52 | - * Google Maps API sensor |
|
53 | - * @var string - true|false |
|
54 | - */ |
|
55 | - private $sensor = 'false'; |
|
56 | - |
|
57 | - /** |
|
58 | - * Google Maps API service name |
|
59 | - * @var string |
|
60 | - */ |
|
61 | - private $service_endpoint = ''; |
|
62 | - |
|
63 | - /** |
|
64 | - * @var string |
|
65 | - */ |
|
66 | - private $response = null; |
|
67 | - |
|
68 | - /** |
|
69 | - * @var GoogleMapsClient |
|
70 | - */ |
|
71 | - private $client = null; |
|
72 | - |
|
73 | - /** |
|
74 | - * @var string |
|
75 | - */ |
|
76 | - private $type = null; |
|
77 | - |
|
78 | - /** |
|
79 | - * GoogleMapsApi constructor. |
|
80 | - * |
|
81 | - * @param array $config |
|
82 | - */ |
|
83 | - public function __construct(array $config = []) |
|
84 | - { |
|
85 | - |
|
86 | - // Set "API key" |
|
87 | - $key = (empty($config[GoogleMapsApiConfigFields::KEY])) ? '' : $config[GoogleMapsApiConfigFields::KEY]; |
|
88 | - $this->setKey($key); |
|
89 | - |
|
90 | - // Set "sensor" |
|
91 | - $sensor = (empty($config[GoogleMapsApiConfigFields::SENSOR])) ? SensorValues::FALSE : $config[GoogleMapsApiConfigFields::SENSOR]; |
|
92 | - $this->setSensor($sensor); |
|
93 | - |
|
94 | - // Set the endpoint |
|
95 | - $service_endpoint = (empty($config[GoogleMapsApiConfigFields::SERVICE_ENDPOINT])) ? '' : $config[GoogleMapsApiConfigFields::SERVICE_ENDPOINT]; |
|
96 | - $this->setServiceEndpoint($service_endpoint); |
|
97 | - |
|
98 | - // Set Client |
|
99 | - $this->setClient(); |
|
100 | - } |
|
101 | - |
|
102 | - /** |
|
103 | - * @return string |
|
104 | - */ |
|
105 | - public function getApiUrl(): string |
|
106 | - { |
|
107 | - |
|
108 | - return $this->api_url; |
|
109 | - } |
|
110 | - |
|
111 | - /** |
|
112 | - * Perform the Google Maps API call |
|
113 | - * |
|
114 | - * @param GoogleMapsRequest $request |
|
115 | - * |
|
116 | - * @return Http\GoogleMapsResponse|string |
|
117 | - */ |
|
118 | - public function get(GoogleMapsRequest $request) |
|
119 | - { |
|
120 | - |
|
121 | - $this->setRequest($request); |
|
122 | - |
|
123 | - $url = $this->getUrl(); |
|
124 | - |
|
125 | - $query = $this->getQuery(); |
|
126 | - |
|
127 | - $this->response = $this->getClient()->get($url, $query); |
|
128 | - |
|
129 | - return $this->response; |
|
130 | - } |
|
131 | - |
|
132 | - /** |
|
133 | - * @return string |
|
134 | - * @throws RequestException |
|
135 | - */ |
|
136 | - public function getUrl(): string |
|
137 | - { |
|
138 | - |
|
139 | - $url_chunks = []; |
|
140 | - $service_endpoint = $this->getServiceEndpoint(); |
|
141 | - if (!$service_endpoint) { |
|
142 | - throw new RequestException('Service name missing!'); |
|
143 | - } |
|
144 | - |
|
145 | - $request_endpoint = $this->request->getEndpoint(); |
|
146 | - array_push($url_chunks, $this->api_url . $service_endpoint); |
|
147 | - |
|
148 | - if($request_endpoint) { |
|
149 | - array_push($url_chunks, $request_endpoint); |
|
150 | - } |
|
151 | - |
|
152 | - array_push($url_chunks, GoogleMapsResponseFormat::JSON); |
|
153 | - return implode("/", $url_chunks); |
|
154 | - } |
|
155 | - |
|
156 | - /** |
|
157 | - * @return string |
|
158 | - */ |
|
159 | - public function getServiceEndpoint(): string |
|
160 | - { |
|
161 | - |
|
162 | - return $this->service_endpoint; |
|
163 | - } |
|
164 | - |
|
165 | - /** |
|
166 | - * @param string $service_endpoint |
|
167 | - * |
|
168 | - * @return GoogleMapsApi |
|
169 | - */ |
|
170 | - public function setServiceEndpoint(string $service_endpoint): GoogleMapsApi |
|
171 | - { |
|
172 | - |
|
173 | - $this->service_endpoint = $service_endpoint; |
|
174 | - |
|
175 | - return $this; |
|
176 | - } |
|
177 | - |
|
178 | - /** |
|
179 | - * @return string |
|
180 | - */ |
|
181 | - public function getQuery(): string |
|
182 | - { |
|
183 | - |
|
184 | - $api_query = http_build_query([ |
|
185 | - GoogleMapsRequestFields::KEY => $this->getKey(), |
|
186 | - GoogleMapsRequestFields::SENSOR => $this->getSensor(), |
|
187 | - ]); |
|
188 | - |
|
189 | - $request_query = $this->getRequest()->getQuery(); |
|
190 | - |
|
191 | - return implode('&', [ |
|
192 | - $api_query, |
|
193 | - $request_query |
|
194 | - ]); |
|
195 | - } |
|
196 | - |
|
197 | - /** |
|
198 | - * @return string |
|
199 | - */ |
|
200 | - public function getKey(): string |
|
201 | - { |
|
202 | - |
|
203 | - return $this->key; |
|
204 | - } |
|
205 | - |
|
206 | - /** |
|
207 | - * @param string $key |
|
208 | - * |
|
209 | - * @return GoogleMapsApi |
|
210 | - */ |
|
211 | - public function setKey(string $key): GoogleMapsApi |
|
212 | - { |
|
213 | - |
|
214 | - $this->key = $key; |
|
215 | - |
|
216 | - return $this; |
|
217 | - } |
|
218 | - |
|
219 | - /** |
|
220 | - * @return string |
|
221 | - */ |
|
222 | - public function getSensor(): string |
|
223 | - { |
|
224 | - |
|
225 | - return $this->sensor ? 'true' : 'false'; |
|
226 | - } |
|
227 | - |
|
228 | - /** |
|
229 | - * Set sensor parameter |
|
230 | - * |
|
231 | - * @param bool|string $sensor |
|
232 | - * |
|
233 | - * @return GoogleMapsApi |
|
234 | - */ |
|
235 | - public function setSensor($sensor): GoogleMapsApi |
|
236 | - { |
|
237 | - |
|
238 | - if ($sensor !== SensorValues::FALSE) { |
|
239 | - $sensor = SensorValues::TRUE; |
|
240 | - } |
|
241 | - $this->sensor = $sensor; |
|
242 | - |
|
243 | - return $this; |
|
244 | - } |
|
245 | - |
|
246 | - /** |
|
247 | - * @return GoogleMapsRequest |
|
248 | - */ |
|
249 | - public function getRequest(): GoogleMapsRequest |
|
250 | - { |
|
251 | - |
|
252 | - return $this->request; |
|
253 | - } |
|
254 | - |
|
255 | - /** |
|
256 | - * @param GoogleMapsRequest $request |
|
257 | - * |
|
258 | - * @return GoogleMapsApi |
|
259 | - */ |
|
260 | - public function setRequest(GoogleMapsRequest $request) |
|
261 | - { |
|
262 | - |
|
263 | - $this->request = $request; |
|
264 | - |
|
265 | - return $this; |
|
266 | - } |
|
267 | - |
|
268 | - /** |
|
269 | - * @return GoogleMapsClient |
|
270 | - */ |
|
271 | - public function getClient() |
|
272 | - { |
|
273 | - |
|
274 | - return $this->client; |
|
275 | - } |
|
276 | - |
|
277 | - /** |
|
278 | - * @param GoogleMapsClient|null $client |
|
279 | - * |
|
280 | - * @return GoogleMapsApi |
|
281 | - */ |
|
282 | - public function setClient(?GoogleMapsClient $client = null): GoogleMapsApi |
|
283 | - { |
|
284 | - |
|
285 | - $this->client = $client ?? new GoogleMapsClient(); |
|
286 | - |
|
287 | - return $this; |
|
288 | - } |
|
289 | - |
|
290 | - /** |
|
291 | - * @param string $type |
|
292 | - * |
|
293 | - * @return GoogleMapsApi |
|
294 | - */ |
|
295 | - protected function setType(string $type): GoogleMapsApi |
|
296 | - { |
|
297 | - |
|
298 | - $this->type = $type; |
|
299 | - |
|
300 | - return $this; |
|
301 | - } |
|
28 | + /** |
|
29 | + * @var GoogleMapsApi |
|
30 | + */ |
|
31 | + protected static $instance = null; |
|
32 | + |
|
33 | + /** |
|
34 | + * @var GoogleMapsRequest |
|
35 | + */ |
|
36 | + protected $request = null; |
|
37 | + |
|
38 | + /** |
|
39 | + * Google Maps Geocode Service API url |
|
40 | + * @var string |
|
41 | + */ |
|
42 | + private $api_url = "https://maps.googleapis.com/maps/api/"; |
|
43 | + |
|
44 | + /** |
|
45 | + * your own Google Maps API key |
|
46 | + * @var string |
|
47 | + * @see https://developers.google.com/maps/documentation/javascript/get-api-key |
|
48 | + */ |
|
49 | + private $key = ''; |
|
50 | + |
|
51 | + /** |
|
52 | + * Google Maps API sensor |
|
53 | + * @var string - true|false |
|
54 | + */ |
|
55 | + private $sensor = 'false'; |
|
56 | + |
|
57 | + /** |
|
58 | + * Google Maps API service name |
|
59 | + * @var string |
|
60 | + */ |
|
61 | + private $service_endpoint = ''; |
|
62 | + |
|
63 | + /** |
|
64 | + * @var string |
|
65 | + */ |
|
66 | + private $response = null; |
|
67 | + |
|
68 | + /** |
|
69 | + * @var GoogleMapsClient |
|
70 | + */ |
|
71 | + private $client = null; |
|
72 | + |
|
73 | + /** |
|
74 | + * @var string |
|
75 | + */ |
|
76 | + private $type = null; |
|
77 | + |
|
78 | + /** |
|
79 | + * GoogleMapsApi constructor. |
|
80 | + * |
|
81 | + * @param array $config |
|
82 | + */ |
|
83 | + public function __construct(array $config = []) |
|
84 | + { |
|
85 | + |
|
86 | + // Set "API key" |
|
87 | + $key = (empty($config[GoogleMapsApiConfigFields::KEY])) ? '' : $config[GoogleMapsApiConfigFields::KEY]; |
|
88 | + $this->setKey($key); |
|
89 | + |
|
90 | + // Set "sensor" |
|
91 | + $sensor = (empty($config[GoogleMapsApiConfigFields::SENSOR])) ? SensorValues::FALSE : $config[GoogleMapsApiConfigFields::SENSOR]; |
|
92 | + $this->setSensor($sensor); |
|
93 | + |
|
94 | + // Set the endpoint |
|
95 | + $service_endpoint = (empty($config[GoogleMapsApiConfigFields::SERVICE_ENDPOINT])) ? '' : $config[GoogleMapsApiConfigFields::SERVICE_ENDPOINT]; |
|
96 | + $this->setServiceEndpoint($service_endpoint); |
|
97 | + |
|
98 | + // Set Client |
|
99 | + $this->setClient(); |
|
100 | + } |
|
101 | + |
|
102 | + /** |
|
103 | + * @return string |
|
104 | + */ |
|
105 | + public function getApiUrl(): string |
|
106 | + { |
|
107 | + |
|
108 | + return $this->api_url; |
|
109 | + } |
|
110 | + |
|
111 | + /** |
|
112 | + * Perform the Google Maps API call |
|
113 | + * |
|
114 | + * @param GoogleMapsRequest $request |
|
115 | + * |
|
116 | + * @return Http\GoogleMapsResponse|string |
|
117 | + */ |
|
118 | + public function get(GoogleMapsRequest $request) |
|
119 | + { |
|
120 | + |
|
121 | + $this->setRequest($request); |
|
122 | + |
|
123 | + $url = $this->getUrl(); |
|
124 | + |
|
125 | + $query = $this->getQuery(); |
|
126 | + |
|
127 | + $this->response = $this->getClient()->get($url, $query); |
|
128 | + |
|
129 | + return $this->response; |
|
130 | + } |
|
131 | + |
|
132 | + /** |
|
133 | + * @return string |
|
134 | + * @throws RequestException |
|
135 | + */ |
|
136 | + public function getUrl(): string |
|
137 | + { |
|
138 | + |
|
139 | + $url_chunks = []; |
|
140 | + $service_endpoint = $this->getServiceEndpoint(); |
|
141 | + if (!$service_endpoint) { |
|
142 | + throw new RequestException('Service name missing!'); |
|
143 | + } |
|
144 | + |
|
145 | + $request_endpoint = $this->request->getEndpoint(); |
|
146 | + array_push($url_chunks, $this->api_url . $service_endpoint); |
|
147 | + |
|
148 | + if($request_endpoint) { |
|
149 | + array_push($url_chunks, $request_endpoint); |
|
150 | + } |
|
151 | + |
|
152 | + array_push($url_chunks, GoogleMapsResponseFormat::JSON); |
|
153 | + return implode("/", $url_chunks); |
|
154 | + } |
|
155 | + |
|
156 | + /** |
|
157 | + * @return string |
|
158 | + */ |
|
159 | + public function getServiceEndpoint(): string |
|
160 | + { |
|
161 | + |
|
162 | + return $this->service_endpoint; |
|
163 | + } |
|
164 | + |
|
165 | + /** |
|
166 | + * @param string $service_endpoint |
|
167 | + * |
|
168 | + * @return GoogleMapsApi |
|
169 | + */ |
|
170 | + public function setServiceEndpoint(string $service_endpoint): GoogleMapsApi |
|
171 | + { |
|
172 | + |
|
173 | + $this->service_endpoint = $service_endpoint; |
|
174 | + |
|
175 | + return $this; |
|
176 | + } |
|
177 | + |
|
178 | + /** |
|
179 | + * @return string |
|
180 | + */ |
|
181 | + public function getQuery(): string |
|
182 | + { |
|
183 | + |
|
184 | + $api_query = http_build_query([ |
|
185 | + GoogleMapsRequestFields::KEY => $this->getKey(), |
|
186 | + GoogleMapsRequestFields::SENSOR => $this->getSensor(), |
|
187 | + ]); |
|
188 | + |
|
189 | + $request_query = $this->getRequest()->getQuery(); |
|
190 | + |
|
191 | + return implode('&', [ |
|
192 | + $api_query, |
|
193 | + $request_query |
|
194 | + ]); |
|
195 | + } |
|
196 | + |
|
197 | + /** |
|
198 | + * @return string |
|
199 | + */ |
|
200 | + public function getKey(): string |
|
201 | + { |
|
202 | + |
|
203 | + return $this->key; |
|
204 | + } |
|
205 | + |
|
206 | + /** |
|
207 | + * @param string $key |
|
208 | + * |
|
209 | + * @return GoogleMapsApi |
|
210 | + */ |
|
211 | + public function setKey(string $key): GoogleMapsApi |
|
212 | + { |
|
213 | + |
|
214 | + $this->key = $key; |
|
215 | + |
|
216 | + return $this; |
|
217 | + } |
|
218 | + |
|
219 | + /** |
|
220 | + * @return string |
|
221 | + */ |
|
222 | + public function getSensor(): string |
|
223 | + { |
|
224 | + |
|
225 | + return $this->sensor ? 'true' : 'false'; |
|
226 | + } |
|
227 | + |
|
228 | + /** |
|
229 | + * Set sensor parameter |
|
230 | + * |
|
231 | + * @param bool|string $sensor |
|
232 | + * |
|
233 | + * @return GoogleMapsApi |
|
234 | + */ |
|
235 | + public function setSensor($sensor): GoogleMapsApi |
|
236 | + { |
|
237 | + |
|
238 | + if ($sensor !== SensorValues::FALSE) { |
|
239 | + $sensor = SensorValues::TRUE; |
|
240 | + } |
|
241 | + $this->sensor = $sensor; |
|
242 | + |
|
243 | + return $this; |
|
244 | + } |
|
245 | + |
|
246 | + /** |
|
247 | + * @return GoogleMapsRequest |
|
248 | + */ |
|
249 | + public function getRequest(): GoogleMapsRequest |
|
250 | + { |
|
251 | + |
|
252 | + return $this->request; |
|
253 | + } |
|
254 | + |
|
255 | + /** |
|
256 | + * @param GoogleMapsRequest $request |
|
257 | + * |
|
258 | + * @return GoogleMapsApi |
|
259 | + */ |
|
260 | + public function setRequest(GoogleMapsRequest $request) |
|
261 | + { |
|
262 | + |
|
263 | + $this->request = $request; |
|
264 | + |
|
265 | + return $this; |
|
266 | + } |
|
267 | + |
|
268 | + /** |
|
269 | + * @return GoogleMapsClient |
|
270 | + */ |
|
271 | + public function getClient() |
|
272 | + { |
|
273 | + |
|
274 | + return $this->client; |
|
275 | + } |
|
276 | + |
|
277 | + /** |
|
278 | + * @param GoogleMapsClient|null $client |
|
279 | + * |
|
280 | + * @return GoogleMapsApi |
|
281 | + */ |
|
282 | + public function setClient(?GoogleMapsClient $client = null): GoogleMapsApi |
|
283 | + { |
|
284 | + |
|
285 | + $this->client = $client ?? new GoogleMapsClient(); |
|
286 | + |
|
287 | + return $this; |
|
288 | + } |
|
289 | + |
|
290 | + /** |
|
291 | + * @param string $type |
|
292 | + * |
|
293 | + * @return GoogleMapsApi |
|
294 | + */ |
|
295 | + protected function setType(string $type): GoogleMapsApi |
|
296 | + { |
|
297 | + |
|
298 | + $this->type = $type; |
|
299 | + |
|
300 | + return $this; |
|
301 | + } |
|
302 | 302 | |
303 | 303 | } |
@@ -143,9 +143,9 @@ |
||
143 | 143 | } |
144 | 144 | |
145 | 145 | $request_endpoint = $this->request->getEndpoint(); |
146 | - array_push($url_chunks, $this->api_url . $service_endpoint); |
|
146 | + array_push($url_chunks, $this->api_url.$service_endpoint); |
|
147 | 147 | |
148 | - if($request_endpoint) { |
|
148 | + if ($request_endpoint) { |
|
149 | 149 | array_push($url_chunks, $request_endpoint); |
150 | 150 | } |
151 | 151 |
@@ -17,227 +17,227 @@ |
||
17 | 17 | abstract class AbstractCollection implements \Iterator, \Countable |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var array |
|
22 | - */ |
|
23 | - protected $items = []; |
|
24 | - |
|
25 | - /** |
|
26 | - * @var int |
|
27 | - */ |
|
28 | - protected $index = 0; |
|
29 | - |
|
30 | - /** |
|
31 | - * AbstractCollection constructor. |
|
32 | - * |
|
33 | - * @param null|array $items |
|
34 | - */ |
|
35 | - public function __construct(?array $items = []) |
|
36 | - { |
|
37 | - |
|
38 | - $this->setItems($items); |
|
39 | - } |
|
40 | - |
|
41 | - /** |
|
42 | - * @param array $items |
|
43 | - * |
|
44 | - * @return AbstractCollection |
|
45 | - */ |
|
46 | - protected function setItems(?array $items = []) |
|
47 | - { |
|
48 | - |
|
49 | - if (is_array($items) && count($items)) { |
|
50 | - foreach ($items as $item) { |
|
51 | - $this->addItem($item); |
|
52 | - } |
|
53 | - } |
|
54 | - |
|
55 | - return $this; |
|
56 | - } |
|
57 | - |
|
58 | - /** |
|
59 | - * @param $item |
|
60 | - * |
|
61 | - * @return AbstractCollection |
|
62 | - */ |
|
63 | - public function addItem($item) |
|
64 | - { |
|
65 | - |
|
66 | - $item = $this->parseItem($item); |
|
67 | - array_push($this->items, $item); |
|
68 | - |
|
69 | - return $this; |
|
70 | - } |
|
71 | - |
|
72 | - /** |
|
73 | - * @param $item |
|
74 | - * |
|
75 | - * @return mixed |
|
76 | - */ |
|
77 | - protected function parseItem($item) |
|
78 | - { |
|
79 | - |
|
80 | - return $item; |
|
81 | - } |
|
82 | - |
|
83 | - /** |
|
84 | - * @return string |
|
85 | - */ |
|
86 | - public function toJson(): string |
|
87 | - { |
|
88 | - |
|
89 | - return json_encode($this->toArray()); |
|
90 | - } |
|
91 | - |
|
92 | - /** |
|
93 | - * @return array |
|
94 | - */ |
|
95 | - public function toArray(): array |
|
96 | - { |
|
97 | - |
|
98 | - return $this->items; |
|
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * @return string |
|
103 | - */ |
|
104 | - public function __toString(): string |
|
105 | - { |
|
106 | - |
|
107 | - return implode(',', $this->toArray()); |
|
108 | - } |
|
109 | - |
|
110 | - /** |
|
111 | - * Return the current position of the index |
|
112 | - * |
|
113 | - * @return int |
|
114 | - */ |
|
115 | - public function position(): int |
|
116 | - { |
|
117 | - |
|
118 | - return $this->index; |
|
119 | - } |
|
120 | - |
|
121 | - /** |
|
122 | - * Move index to first position and return current element |
|
123 | - * |
|
124 | - * @return mixed|null |
|
125 | - */ |
|
126 | - public function first() |
|
127 | - { |
|
128 | - |
|
129 | - return $this->get(0); |
|
130 | - } |
|
131 | - |
|
132 | - /** |
|
133 | - * @param $index |
|
134 | - * |
|
135 | - * @return mixed|null |
|
136 | - */ |
|
137 | - public function get(int $index) |
|
138 | - { |
|
139 | - |
|
140 | - return isset($this->items[$index]) ? $this->items[$index] : null; |
|
141 | - } |
|
142 | - |
|
143 | - /** |
|
144 | - * Move the index at the specified position |
|
145 | - * |
|
146 | - * @param int|null $index |
|
147 | - * |
|
148 | - * @return mixed|null |
|
149 | - */ |
|
150 | - public function seek(?int $index = 0) |
|
151 | - { |
|
152 | - |
|
153 | - $this->index = ($index < $this->count()) ? $index : $this->getLastIndex(); |
|
154 | - |
|
155 | - return $this->get(intval($this->index)); |
|
156 | - } |
|
157 | - |
|
158 | - /** |
|
159 | - * @return int |
|
160 | - */ |
|
161 | - public function count(): int |
|
162 | - { |
|
163 | - |
|
164 | - return count($this->items); |
|
165 | - } |
|
166 | - |
|
167 | - /** |
|
168 | - * @return int |
|
169 | - */ |
|
170 | - public function getLastIndex(): int |
|
171 | - { |
|
172 | - |
|
173 | - $last_position = $this->count() - 1; |
|
174 | - |
|
175 | - return ($last_position) < 0 ? 0 : $last_position; |
|
176 | - } |
|
177 | - |
|
178 | - /** |
|
179 | - * Move index at the end of collection and return current element |
|
180 | - * |
|
181 | - * @return mixed|null |
|
182 | - */ |
|
183 | - public function last() |
|
184 | - { |
|
185 | - |
|
186 | - return $this->get($this->getLastIndex()); |
|
187 | - } |
|
188 | - |
|
189 | - /** |
|
190 | - * |
|
191 | - * @return mixed|null |
|
192 | - */ |
|
193 | - public function current() |
|
194 | - { |
|
195 | - |
|
196 | - return $this->get($this->index); |
|
197 | - } |
|
198 | - |
|
199 | - /** |
|
200 | - * Move index to next position and return current element |
|
201 | - * |
|
202 | - * @return mixed|null |
|
203 | - */ |
|
204 | - public function next() |
|
205 | - { |
|
206 | - |
|
207 | - ++$this->index; |
|
208 | - } |
|
209 | - |
|
210 | - /** |
|
211 | - * Return current key/index |
|
212 | - * |
|
213 | - * @return mixed|null |
|
214 | - */ |
|
215 | - public function key() |
|
216 | - { |
|
217 | - |
|
218 | - return $this->index; |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * Return current key/index |
|
223 | - * |
|
224 | - * @return mixed|null |
|
225 | - */ |
|
226 | - public function valid() |
|
227 | - { |
|
228 | - |
|
229 | - return !empty($this->current()); |
|
230 | - } |
|
231 | - |
|
232 | - /** |
|
233 | - * Move index to first position and return current element |
|
234 | - * |
|
235 | - * @return mixed|null |
|
236 | - */ |
|
237 | - public function rewind() |
|
238 | - { |
|
239 | - |
|
240 | - return $this->index = 0; |
|
241 | - } |
|
20 | + /** |
|
21 | + * @var array |
|
22 | + */ |
|
23 | + protected $items = []; |
|
24 | + |
|
25 | + /** |
|
26 | + * @var int |
|
27 | + */ |
|
28 | + protected $index = 0; |
|
29 | + |
|
30 | + /** |
|
31 | + * AbstractCollection constructor. |
|
32 | + * |
|
33 | + * @param null|array $items |
|
34 | + */ |
|
35 | + public function __construct(?array $items = []) |
|
36 | + { |
|
37 | + |
|
38 | + $this->setItems($items); |
|
39 | + } |
|
40 | + |
|
41 | + /** |
|
42 | + * @param array $items |
|
43 | + * |
|
44 | + * @return AbstractCollection |
|
45 | + */ |
|
46 | + protected function setItems(?array $items = []) |
|
47 | + { |
|
48 | + |
|
49 | + if (is_array($items) && count($items)) { |
|
50 | + foreach ($items as $item) { |
|
51 | + $this->addItem($item); |
|
52 | + } |
|
53 | + } |
|
54 | + |
|
55 | + return $this; |
|
56 | + } |
|
57 | + |
|
58 | + /** |
|
59 | + * @param $item |
|
60 | + * |
|
61 | + * @return AbstractCollection |
|
62 | + */ |
|
63 | + public function addItem($item) |
|
64 | + { |
|
65 | + |
|
66 | + $item = $this->parseItem($item); |
|
67 | + array_push($this->items, $item); |
|
68 | + |
|
69 | + return $this; |
|
70 | + } |
|
71 | + |
|
72 | + /** |
|
73 | + * @param $item |
|
74 | + * |
|
75 | + * @return mixed |
|
76 | + */ |
|
77 | + protected function parseItem($item) |
|
78 | + { |
|
79 | + |
|
80 | + return $item; |
|
81 | + } |
|
82 | + |
|
83 | + /** |
|
84 | + * @return string |
|
85 | + */ |
|
86 | + public function toJson(): string |
|
87 | + { |
|
88 | + |
|
89 | + return json_encode($this->toArray()); |
|
90 | + } |
|
91 | + |
|
92 | + /** |
|
93 | + * @return array |
|
94 | + */ |
|
95 | + public function toArray(): array |
|
96 | + { |
|
97 | + |
|
98 | + return $this->items; |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * @return string |
|
103 | + */ |
|
104 | + public function __toString(): string |
|
105 | + { |
|
106 | + |
|
107 | + return implode(',', $this->toArray()); |
|
108 | + } |
|
109 | + |
|
110 | + /** |
|
111 | + * Return the current position of the index |
|
112 | + * |
|
113 | + * @return int |
|
114 | + */ |
|
115 | + public function position(): int |
|
116 | + { |
|
117 | + |
|
118 | + return $this->index; |
|
119 | + } |
|
120 | + |
|
121 | + /** |
|
122 | + * Move index to first position and return current element |
|
123 | + * |
|
124 | + * @return mixed|null |
|
125 | + */ |
|
126 | + public function first() |
|
127 | + { |
|
128 | + |
|
129 | + return $this->get(0); |
|
130 | + } |
|
131 | + |
|
132 | + /** |
|
133 | + * @param $index |
|
134 | + * |
|
135 | + * @return mixed|null |
|
136 | + */ |
|
137 | + public function get(int $index) |
|
138 | + { |
|
139 | + |
|
140 | + return isset($this->items[$index]) ? $this->items[$index] : null; |
|
141 | + } |
|
142 | + |
|
143 | + /** |
|
144 | + * Move the index at the specified position |
|
145 | + * |
|
146 | + * @param int|null $index |
|
147 | + * |
|
148 | + * @return mixed|null |
|
149 | + */ |
|
150 | + public function seek(?int $index = 0) |
|
151 | + { |
|
152 | + |
|
153 | + $this->index = ($index < $this->count()) ? $index : $this->getLastIndex(); |
|
154 | + |
|
155 | + return $this->get(intval($this->index)); |
|
156 | + } |
|
157 | + |
|
158 | + /** |
|
159 | + * @return int |
|
160 | + */ |
|
161 | + public function count(): int |
|
162 | + { |
|
163 | + |
|
164 | + return count($this->items); |
|
165 | + } |
|
166 | + |
|
167 | + /** |
|
168 | + * @return int |
|
169 | + */ |
|
170 | + public function getLastIndex(): int |
|
171 | + { |
|
172 | + |
|
173 | + $last_position = $this->count() - 1; |
|
174 | + |
|
175 | + return ($last_position) < 0 ? 0 : $last_position; |
|
176 | + } |
|
177 | + |
|
178 | + /** |
|
179 | + * Move index at the end of collection and return current element |
|
180 | + * |
|
181 | + * @return mixed|null |
|
182 | + */ |
|
183 | + public function last() |
|
184 | + { |
|
185 | + |
|
186 | + return $this->get($this->getLastIndex()); |
|
187 | + } |
|
188 | + |
|
189 | + /** |
|
190 | + * |
|
191 | + * @return mixed|null |
|
192 | + */ |
|
193 | + public function current() |
|
194 | + { |
|
195 | + |
|
196 | + return $this->get($this->index); |
|
197 | + } |
|
198 | + |
|
199 | + /** |
|
200 | + * Move index to next position and return current element |
|
201 | + * |
|
202 | + * @return mixed|null |
|
203 | + */ |
|
204 | + public function next() |
|
205 | + { |
|
206 | + |
|
207 | + ++$this->index; |
|
208 | + } |
|
209 | + |
|
210 | + /** |
|
211 | + * Return current key/index |
|
212 | + * |
|
213 | + * @return mixed|null |
|
214 | + */ |
|
215 | + public function key() |
|
216 | + { |
|
217 | + |
|
218 | + return $this->index; |
|
219 | + } |
|
220 | + |
|
221 | + /** |
|
222 | + * Return current key/index |
|
223 | + * |
|
224 | + * @return mixed|null |
|
225 | + */ |
|
226 | + public function valid() |
|
227 | + { |
|
228 | + |
|
229 | + return !empty($this->current()); |
|
230 | + } |
|
231 | + |
|
232 | + /** |
|
233 | + * Move index to first position and return current element |
|
234 | + * |
|
235 | + * @return mixed|null |
|
236 | + */ |
|
237 | + public function rewind() |
|
238 | + { |
|
239 | + |
|
240 | + return $this->index = 0; |
|
241 | + } |
|
242 | 242 | |
243 | 243 | } |
244 | 244 | \ No newline at end of file |
@@ -24,158 +24,158 @@ |
||
24 | 24 | abstract class Api |
25 | 25 | { |
26 | 26 | |
27 | - /** |
|
28 | - * @var string |
|
29 | - */ |
|
30 | - const SERVICE_ENDPOINT = null; |
|
31 | - |
|
32 | - /** |
|
33 | - * @var GoogleMapsApi |
|
34 | - */ |
|
35 | - protected $google_maps_api = null; |
|
36 | - |
|
37 | - /** |
|
38 | - * @var string |
|
39 | - */ |
|
40 | - protected $result_collection = ''; |
|
41 | - |
|
42 | - /** |
|
43 | - * @var GoogleMapsResponse |
|
44 | - */ |
|
45 | - protected $response; |
|
46 | - |
|
47 | - /** |
|
48 | - * @var GoogleMapsRequest |
|
49 | - */ |
|
50 | - protected $request; |
|
51 | - |
|
52 | - /** |
|
53 | - * Api constructor. |
|
54 | - * |
|
55 | - * @param array $config |
|
56 | - */ |
|
57 | - public function __construct(array $config = []) |
|
58 | - { |
|
59 | - |
|
60 | - $service_config = $this->getServiceConfig($config); |
|
61 | - $this->setGoogleMapsApi(new GoogleMapsApi($service_config)); |
|
62 | - } |
|
63 | - |
|
64 | - /** |
|
65 | - * @param array $config |
|
66 | - * |
|
67 | - * @return array |
|
68 | - */ |
|
69 | - protected function getServiceConfig(array $config = []): array |
|
70 | - { |
|
71 | - |
|
72 | - return array_merge($config, [ |
|
73 | - GoogleMapsApiConfigFields::SERVICE_ENDPOINT => $this->getServiceEndpoint() |
|
74 | - ]); |
|
75 | - } |
|
76 | - |
|
77 | - /** |
|
78 | - * @return string |
|
79 | - */ |
|
80 | - public function getServiceEndpoint(): string |
|
81 | - { |
|
82 | - |
|
83 | - return static::SERVICE_ENDPOINT ?? ''; |
|
84 | - } |
|
85 | - |
|
86 | - /** |
|
87 | - * @param array $params |
|
88 | - * @param null|string $endpoint |
|
89 | - * |
|
90 | - * @return GoogleMapsResultsCollection |
|
91 | - */ |
|
92 | - public function callApi(array $params, ?string $endpoint = null): GoogleMapsResultsCollection |
|
93 | - { |
|
94 | - |
|
95 | - $this->createRequest($params, $endpoint); |
|
96 | - |
|
97 | - return $this->getResultsCollections(); |
|
98 | - } |
|
99 | - |
|
100 | - /** |
|
101 | - * @param array $params |
|
102 | - * @param null|string $endpoint since 0.5.0 |
|
103 | - * |
|
104 | - * @return GoogleMapsRequest |
|
105 | - */ |
|
106 | - public function createRequest(array $params, ?string $endpoint = null): GoogleMapsRequest |
|
107 | - { |
|
108 | - |
|
109 | - $this->request = new GoogleMapsRequest($params, $endpoint);; |
|
110 | - |
|
111 | - return $this->request; |
|
112 | - } |
|
113 | - |
|
114 | - /** |
|
115 | - * @return GoogleMapsResultsCollection |
|
116 | - */ |
|
117 | - public function getResultsCollections(): GoogleMapsResultsCollection |
|
118 | - { |
|
119 | - |
|
120 | - $results = $this->getResponse()->getResults(); |
|
121 | - |
|
122 | - $result_collection_class = $this->result_collection; |
|
123 | - |
|
124 | - return new $result_collection_class($results); |
|
125 | - } |
|
126 | - |
|
127 | - /** |
|
128 | - * @return GoogleMapsResponse |
|
129 | - */ |
|
130 | - public function getResponse(): GoogleMapsResponse |
|
131 | - { |
|
132 | - |
|
133 | - $this->response = $this->getGoogleMapsApi()->get($this->request); |
|
134 | - |
|
135 | - return $this->response; |
|
136 | - } |
|
137 | - |
|
138 | - /** |
|
139 | - * @return GoogleMapsApi |
|
140 | - */ |
|
141 | - public function getGoogleMapsApi(): GoogleMapsApi |
|
142 | - { |
|
143 | - |
|
144 | - return $this->google_maps_api; |
|
145 | - } |
|
146 | - |
|
147 | - /** |
|
148 | - * @param GoogleMapsApi $google_maps_api |
|
149 | - * |
|
150 | - * @return Api |
|
151 | - */ |
|
152 | - public function setGoogleMapsApi(GoogleMapsApi $google_maps_api): Api |
|
153 | - { |
|
154 | - |
|
155 | - $this->google_maps_api = $google_maps_api; |
|
156 | - |
|
157 | - return $this; |
|
158 | - } |
|
159 | - |
|
160 | - /** |
|
161 | - * @return GoogleMapsResultsCollection |
|
162 | - */ |
|
163 | - public function getNextPage(): GoogleMapsResultsCollection |
|
164 | - { |
|
165 | - |
|
166 | - if ($this->responseHasNewPage()) { |
|
167 | - $this->request->setParam(GoogleMapsRequestFields::NEXT_PAGE_TOKEN, $this->response->getNextPageToken()); |
|
168 | - } |
|
169 | - |
|
170 | - return $this->getResultsCollections(); |
|
171 | - } |
|
172 | - |
|
173 | - /** |
|
174 | - * @return bool |
|
175 | - */ |
|
176 | - public function responseHasNewPage(): bool |
|
177 | - { |
|
178 | - |
|
179 | - return ($this->response instanceof GoogleMapsResponse) ? $this->response->getNextPageToken() : false; |
|
180 | - } |
|
27 | + /** |
|
28 | + * @var string |
|
29 | + */ |
|
30 | + const SERVICE_ENDPOINT = null; |
|
31 | + |
|
32 | + /** |
|
33 | + * @var GoogleMapsApi |
|
34 | + */ |
|
35 | + protected $google_maps_api = null; |
|
36 | + |
|
37 | + /** |
|
38 | + * @var string |
|
39 | + */ |
|
40 | + protected $result_collection = ''; |
|
41 | + |
|
42 | + /** |
|
43 | + * @var GoogleMapsResponse |
|
44 | + */ |
|
45 | + protected $response; |
|
46 | + |
|
47 | + /** |
|
48 | + * @var GoogleMapsRequest |
|
49 | + */ |
|
50 | + protected $request; |
|
51 | + |
|
52 | + /** |
|
53 | + * Api constructor. |
|
54 | + * |
|
55 | + * @param array $config |
|
56 | + */ |
|
57 | + public function __construct(array $config = []) |
|
58 | + { |
|
59 | + |
|
60 | + $service_config = $this->getServiceConfig($config); |
|
61 | + $this->setGoogleMapsApi(new GoogleMapsApi($service_config)); |
|
62 | + } |
|
63 | + |
|
64 | + /** |
|
65 | + * @param array $config |
|
66 | + * |
|
67 | + * @return array |
|
68 | + */ |
|
69 | + protected function getServiceConfig(array $config = []): array |
|
70 | + { |
|
71 | + |
|
72 | + return array_merge($config, [ |
|
73 | + GoogleMapsApiConfigFields::SERVICE_ENDPOINT => $this->getServiceEndpoint() |
|
74 | + ]); |
|
75 | + } |
|
76 | + |
|
77 | + /** |
|
78 | + * @return string |
|
79 | + */ |
|
80 | + public function getServiceEndpoint(): string |
|
81 | + { |
|
82 | + |
|
83 | + return static::SERVICE_ENDPOINT ?? ''; |
|
84 | + } |
|
85 | + |
|
86 | + /** |
|
87 | + * @param array $params |
|
88 | + * @param null|string $endpoint |
|
89 | + * |
|
90 | + * @return GoogleMapsResultsCollection |
|
91 | + */ |
|
92 | + public function callApi(array $params, ?string $endpoint = null): GoogleMapsResultsCollection |
|
93 | + { |
|
94 | + |
|
95 | + $this->createRequest($params, $endpoint); |
|
96 | + |
|
97 | + return $this->getResultsCollections(); |
|
98 | + } |
|
99 | + |
|
100 | + /** |
|
101 | + * @param array $params |
|
102 | + * @param null|string $endpoint since 0.5.0 |
|
103 | + * |
|
104 | + * @return GoogleMapsRequest |
|
105 | + */ |
|
106 | + public function createRequest(array $params, ?string $endpoint = null): GoogleMapsRequest |
|
107 | + { |
|
108 | + |
|
109 | + $this->request = new GoogleMapsRequest($params, $endpoint);; |
|
110 | + |
|
111 | + return $this->request; |
|
112 | + } |
|
113 | + |
|
114 | + /** |
|
115 | + * @return GoogleMapsResultsCollection |
|
116 | + */ |
|
117 | + public function getResultsCollections(): GoogleMapsResultsCollection |
|
118 | + { |
|
119 | + |
|
120 | + $results = $this->getResponse()->getResults(); |
|
121 | + |
|
122 | + $result_collection_class = $this->result_collection; |
|
123 | + |
|
124 | + return new $result_collection_class($results); |
|
125 | + } |
|
126 | + |
|
127 | + /** |
|
128 | + * @return GoogleMapsResponse |
|
129 | + */ |
|
130 | + public function getResponse(): GoogleMapsResponse |
|
131 | + { |
|
132 | + |
|
133 | + $this->response = $this->getGoogleMapsApi()->get($this->request); |
|
134 | + |
|
135 | + return $this->response; |
|
136 | + } |
|
137 | + |
|
138 | + /** |
|
139 | + * @return GoogleMapsApi |
|
140 | + */ |
|
141 | + public function getGoogleMapsApi(): GoogleMapsApi |
|
142 | + { |
|
143 | + |
|
144 | + return $this->google_maps_api; |
|
145 | + } |
|
146 | + |
|
147 | + /** |
|
148 | + * @param GoogleMapsApi $google_maps_api |
|
149 | + * |
|
150 | + * @return Api |
|
151 | + */ |
|
152 | + public function setGoogleMapsApi(GoogleMapsApi $google_maps_api): Api |
|
153 | + { |
|
154 | + |
|
155 | + $this->google_maps_api = $google_maps_api; |
|
156 | + |
|
157 | + return $this; |
|
158 | + } |
|
159 | + |
|
160 | + /** |
|
161 | + * @return GoogleMapsResultsCollection |
|
162 | + */ |
|
163 | + public function getNextPage(): GoogleMapsResultsCollection |
|
164 | + { |
|
165 | + |
|
166 | + if ($this->responseHasNewPage()) { |
|
167 | + $this->request->setParam(GoogleMapsRequestFields::NEXT_PAGE_TOKEN, $this->response->getNextPageToken()); |
|
168 | + } |
|
169 | + |
|
170 | + return $this->getResultsCollections(); |
|
171 | + } |
|
172 | + |
|
173 | + /** |
|
174 | + * @return bool |
|
175 | + */ |
|
176 | + public function responseHasNewPage(): bool |
|
177 | + { |
|
178 | + |
|
179 | + return ($this->response instanceof GoogleMapsResponse) ? $this->response->getNextPageToken() : false; |
|
180 | + } |
|
181 | 181 | } |
182 | 182 | \ No newline at end of file |
@@ -106,7 +106,7 @@ |
||
106 | 106 | public function createRequest(array $params, ?string $endpoint = null): GoogleMapsRequest |
107 | 107 | { |
108 | 108 | |
109 | - $this->request = new GoogleMapsRequest($params, $endpoint);; |
|
109 | + $this->request = new GoogleMapsRequest($params, $endpoint); ; |
|
110 | 110 | |
111 | 111 | return $this->request; |
112 | 112 | } |
@@ -17,15 +17,15 @@ |
||
17 | 17 | class GoogleMapsResponseFormat |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * string: json |
|
22 | - */ |
|
23 | - const JSON = 'json'; |
|
20 | + /** |
|
21 | + * string: json |
|
22 | + */ |
|
23 | + const JSON = 'json'; |
|
24 | 24 | |
25 | - /** |
|
26 | - * string: xml |
|
27 | - * NOT supported in this version |
|
28 | - */ |
|
29 | - const XML = 'xml'; |
|
25 | + /** |
|
26 | + * string: xml |
|
27 | + * NOT supported in this version |
|
28 | + */ |
|
29 | + const XML = 'xml'; |
|
30 | 30 | |
31 | 31 | } |
32 | 32 | \ No newline at end of file |
@@ -17,18 +17,18 @@ |
||
17 | 17 | class PlaceServicesEndpoints |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var string |
|
22 | - */ |
|
23 | - const FINDPLACEFROMTEXT = "findplacefromtext"; |
|
20 | + /** |
|
21 | + * @var string |
|
22 | + */ |
|
23 | + const FINDPLACEFROMTEXT = "findplacefromtext"; |
|
24 | 24 | |
25 | - /** |
|
26 | - * @var string |
|
27 | - */ |
|
28 | - const NEARBYSEARCH = "nearbysearch"; |
|
25 | + /** |
|
26 | + * @var string |
|
27 | + */ |
|
28 | + const NEARBYSEARCH = "nearbysearch"; |
|
29 | 29 | |
30 | - /** |
|
31 | - * @var string |
|
32 | - */ |
|
33 | - const TEXTSEARCH = "textsearch"; |
|
30 | + /** |
|
31 | + * @var string |
|
32 | + */ |
|
33 | + const TEXTSEARCH = "textsearch"; |
|
34 | 34 | } |
35 | 35 | \ No newline at end of file |
@@ -17,18 +17,18 @@ |
||
17 | 17 | class GoogleMapsApiConfigFields |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * string: key |
|
22 | - */ |
|
23 | - const KEY = 'key'; |
|
20 | + /** |
|
21 | + * string: key |
|
22 | + */ |
|
23 | + const KEY = 'key'; |
|
24 | 24 | |
25 | - /** |
|
26 | - * string: sensor |
|
27 | - */ |
|
28 | - const SENSOR = 'sensor'; |
|
25 | + /** |
|
26 | + * string: sensor |
|
27 | + */ |
|
28 | + const SENSOR = 'sensor'; |
|
29 | 29 | |
30 | - /** |
|
31 | - * string: service_endpoint |
|
32 | - */ |
|
33 | - const SERVICE_ENDPOINT = 'service_endpoint'; |
|
30 | + /** |
|
31 | + * string: service_endpoint |
|
32 | + */ |
|
33 | + const SERVICE_ENDPOINT = 'service_endpoint'; |
|
34 | 34 | } |
35 | 35 | \ No newline at end of file |
@@ -23,303 +23,303 @@ |
||
23 | 23 | class GoogleMapsResponse |
24 | 24 | { |
25 | 25 | |
26 | - /** |
|
27 | - * @var Response |
|
28 | - */ |
|
29 | - protected $response = null; |
|
30 | - |
|
31 | - /** |
|
32 | - * contains an array of places, with information about each. |
|
33 | - * The Places API returns up to 20 establishment results per query. |
|
34 | - * Additionally, political results may be returned which serve to identify the area of the request. |
|
35 | - * |
|
36 | - * @var array |
|
37 | - * @see https://developers.google.com/places/web-service/search#PlaceSearchResults |
|
38 | - */ |
|
39 | - protected $results = null; |
|
40 | - |
|
41 | - /** |
|
42 | - * contains metadata on the request. |
|
43 | - * |
|
44 | - * @var string |
|
45 | - * @see https://developers.google.com/places/web-service/search#PlaceSearchStatusCodes |
|
46 | - */ |
|
47 | - protected $status = null; |
|
48 | - |
|
49 | - /** |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - protected $error_message = null; |
|
53 | - |
|
54 | - /** |
|
55 | - * @var array |
|
56 | - */ |
|
57 | - protected $array_response = null; |
|
58 | - |
|
59 | - /** |
|
60 | - * @var null|array |
|
61 | - */ |
|
62 | - protected $http_status_code = null; |
|
63 | - |
|
64 | - /** |
|
65 | - * may contain a set of attributions about this listing which must be displayed to the user (some listings may not have attribution). |
|
66 | - * |
|
67 | - * @var null|array |
|
68 | - * @since 0.5.0 |
|
69 | - */ |
|
70 | - protected $html_attributions = null; |
|
71 | - |
|
72 | - /** |
|
73 | - * @var null|string |
|
74 | - * @since 0.5.0 |
|
75 | - */ |
|
76 | - protected $next_page_token = null; |
|
77 | - |
|
78 | - /** |
|
79 | - * GoogleMapsResponse constructor. |
|
80 | - * |
|
81 | - * @param Response $response |
|
82 | - */ |
|
83 | - public function __construct(Response $response) |
|
84 | - { |
|
85 | - |
|
86 | - $this->setResponse($response); |
|
87 | - |
|
88 | - $this->parseResponse(); |
|
89 | - |
|
90 | - $this->checkHttpStatusCode(); |
|
91 | - } |
|
92 | - |
|
93 | - /** |
|
94 | - * @param Response $response |
|
95 | - * |
|
96 | - * @return GoogleMapsResponse |
|
97 | - */ |
|
98 | - public function setResponse(Response $response): GoogleMapsResponse |
|
99 | - { |
|
100 | - |
|
101 | - $this->response = $response; |
|
102 | - |
|
103 | - return $this; |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * @return GoogleMapsResponse |
|
108 | - * |
|
109 | - * @throws RequestException |
|
110 | - * @throws ResponseException |
|
111 | - */ |
|
112 | - protected function parseResponse(): GoogleMapsResponse |
|
113 | - { |
|
114 | - |
|
115 | - $json_response = $this->response->getBody()->getContents(); |
|
116 | - $array_response = $this->toArray($json_response); |
|
117 | - $results = null; |
|
118 | - |
|
119 | - if (empty($array_response[GoogleMapsResponseFields::STATUS])) { |
|
120 | - throw new ResponseException('Missing "status" in GoogleMapsApi Response'); |
|
121 | - } |
|
122 | - $this->setStatus($array_response[GoogleMapsResponseFields::STATUS]); |
|
123 | - |
|
124 | - if ($this->getStatus() != GoogleMapsResponseStatusValues::OK) { |
|
125 | - $error_message = 'Something went wrong'; |
|
126 | - if (!empty($array_response[GoogleMapsResponseFields::ERROR_MESSAGE])) { |
|
127 | - $error_message = $array_response[GoogleMapsResponseFields::ERROR_MESSAGE]; |
|
128 | - $this->setErrorMessage($error_message); |
|
129 | - } elseif (!empty($array_response[GoogleMapsResponseFields::STATUS])) { |
|
130 | - $error_message .= ': ' . $array_response[GoogleMapsResponseFields::STATUS]; |
|
131 | - $this->setErrorMessage($error_message); |
|
132 | - } |
|
133 | - throw new RequestException($error_message); |
|
134 | - |
|
135 | - } |
|
136 | - |
|
137 | - if (!empty($array_response[GoogleMapsResponseFields::RESULTS])) { |
|
138 | - $results = $array_response[GoogleMapsResponseFields::RESULTS]; |
|
139 | - |
|
140 | - } elseif (!empty($array_response[GoogleMapsResponseFields::CANDIDATES])) { |
|
141 | - $results = $array_response[GoogleMapsResponseFields::CANDIDATES]; |
|
142 | - |
|
143 | - } else { |
|
144 | - throw new ResponseException('Missing "results" in GoogleMapsApi Response'); |
|
145 | - } |
|
146 | - $this->setResults($results); |
|
147 | - |
|
148 | - if (!empty($array_response[GoogleMapsResponseFields::HTML_ATTRIBUTIONS])) { |
|
149 | - $this->setHtmlAttributions($array_response[GoogleMapsResponseFields::HTML_ATTRIBUTIONS]); |
|
150 | - } |
|
151 | - |
|
152 | - if (!empty($array_response[GoogleMapsResponseFields::NEXT_PAGE_TOKEN])) { |
|
153 | - $this->setNextPageToken($array_response[GoogleMapsResponseFields::NEXT_PAGE_TOKEN]); |
|
154 | - } |
|
155 | - |
|
156 | - return $this; |
|
157 | - } |
|
158 | - |
|
159 | - /** |
|
160 | - * @param string $json_response |
|
161 | - * |
|
162 | - * @return array |
|
163 | - */ |
|
164 | - public function toArray(string $json_response): array |
|
165 | - { |
|
166 | - |
|
167 | - $this->array_response = json_decode($json_response, true); |
|
168 | - |
|
169 | - return $this->array_response; |
|
170 | - } |
|
171 | - |
|
172 | - /** |
|
173 | - * @return string |
|
174 | - */ |
|
175 | - public function getStatus(): string |
|
176 | - { |
|
177 | - |
|
178 | - return $this->status; |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * @param string $status |
|
183 | - * |
|
184 | - * @return GoogleMapsResponse |
|
185 | - */ |
|
186 | - public function setStatus(string $status) |
|
187 | - { |
|
188 | - |
|
189 | - $this->status = $status; |
|
190 | - |
|
191 | - return $this; |
|
192 | - } |
|
193 | - |
|
194 | - /** |
|
195 | - * Check HTTP status code (silent/No exceptions!) |
|
196 | - * @return int |
|
197 | - */ |
|
198 | - protected function checkHttpStatusCode(): int |
|
199 | - { |
|
200 | - |
|
201 | - $this->http_status_code = $this->response->getStatusCode(); |
|
202 | - |
|
203 | - return $this->http_status_code; |
|
204 | - } |
|
205 | - |
|
206 | - /** |
|
207 | - * @return array |
|
208 | - */ |
|
209 | - public function getResults() |
|
210 | - { |
|
211 | - |
|
212 | - return $this->results; |
|
213 | - } |
|
214 | - |
|
215 | - /** |
|
216 | - * @param array $results |
|
217 | - * |
|
218 | - * @return $this |
|
219 | - */ |
|
220 | - public function setResults(array $results) |
|
221 | - { |
|
222 | - |
|
223 | - $this->results = $results; |
|
224 | - |
|
225 | - return $this; |
|
226 | - } |
|
227 | - |
|
228 | - /** |
|
229 | - * @return array |
|
230 | - */ |
|
231 | - public function getArrayResponse(): array |
|
232 | - { |
|
233 | - |
|
234 | - return $this->array_response; |
|
235 | - } |
|
236 | - |
|
237 | - /** |
|
238 | - * @param array $array_response |
|
239 | - * |
|
240 | - * @return GoogleMapsResponse |
|
241 | - */ |
|
242 | - public function setArrayResponse(array $array_response): GoogleMapsResponse |
|
243 | - { |
|
244 | - |
|
245 | - $this->array_response = $array_response; |
|
246 | - |
|
247 | - return $this; |
|
248 | - } |
|
249 | - |
|
250 | - /** |
|
251 | - * @return mixed |
|
252 | - */ |
|
253 | - public function getErrorMessage() |
|
254 | - { |
|
255 | - |
|
256 | - return $this->error_message; |
|
257 | - } |
|
258 | - |
|
259 | - /** |
|
260 | - * @param $error_message |
|
261 | - * |
|
262 | - * @return GoogleMapsResponse |
|
263 | - */ |
|
264 | - public function setErrorMessage($error_message): GoogleMapsResponse |
|
265 | - { |
|
266 | - |
|
267 | - $this->error_message = $error_message; |
|
268 | - |
|
269 | - return $this; |
|
270 | - } |
|
271 | - |
|
272 | - /** |
|
273 | - * @return int |
|
274 | - */ |
|
275 | - public function getHttpStatusCode(): int |
|
276 | - { |
|
277 | - |
|
278 | - return intval($this->http_status_code); |
|
279 | - } |
|
280 | - |
|
281 | - /** |
|
282 | - * @return array|null |
|
283 | - */ |
|
284 | - public function getHtmlAttributions(): ?array |
|
285 | - { |
|
286 | - |
|
287 | - return $this->html_attributions; |
|
288 | - } |
|
289 | - |
|
290 | - /** |
|
291 | - * @param array|null $html_attributions |
|
292 | - * |
|
293 | - * @return GoogleMapsResponse |
|
294 | - */ |
|
295 | - public function setHtmlAttributions(?array $html_attributions): GoogleMapsResponse |
|
296 | - { |
|
297 | - |
|
298 | - $this->html_attributions = $html_attributions; |
|
299 | - |
|
300 | - return $this; |
|
301 | - } |
|
302 | - |
|
303 | - /** |
|
304 | - * @return string |
|
305 | - */ |
|
306 | - public function getNextPageToken(): string |
|
307 | - { |
|
308 | - |
|
309 | - return $this->next_page_token ?? ''; |
|
310 | - } |
|
311 | - |
|
312 | - /** |
|
313 | - * @param $next_page_token |
|
314 | - * |
|
315 | - * @return GoogleMapsResponse |
|
316 | - */ |
|
317 | - public function setNextPageToken($next_page_token): GoogleMapsResponse |
|
318 | - { |
|
319 | - |
|
320 | - $this->next_page_token = $next_page_token; |
|
321 | - |
|
322 | - return $this; |
|
323 | - } |
|
26 | + /** |
|
27 | + * @var Response |
|
28 | + */ |
|
29 | + protected $response = null; |
|
30 | + |
|
31 | + /** |
|
32 | + * contains an array of places, with information about each. |
|
33 | + * The Places API returns up to 20 establishment results per query. |
|
34 | + * Additionally, political results may be returned which serve to identify the area of the request. |
|
35 | + * |
|
36 | + * @var array |
|
37 | + * @see https://developers.google.com/places/web-service/search#PlaceSearchResults |
|
38 | + */ |
|
39 | + protected $results = null; |
|
40 | + |
|
41 | + /** |
|
42 | + * contains metadata on the request. |
|
43 | + * |
|
44 | + * @var string |
|
45 | + * @see https://developers.google.com/places/web-service/search#PlaceSearchStatusCodes |
|
46 | + */ |
|
47 | + protected $status = null; |
|
48 | + |
|
49 | + /** |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + protected $error_message = null; |
|
53 | + |
|
54 | + /** |
|
55 | + * @var array |
|
56 | + */ |
|
57 | + protected $array_response = null; |
|
58 | + |
|
59 | + /** |
|
60 | + * @var null|array |
|
61 | + */ |
|
62 | + protected $http_status_code = null; |
|
63 | + |
|
64 | + /** |
|
65 | + * may contain a set of attributions about this listing which must be displayed to the user (some listings may not have attribution). |
|
66 | + * |
|
67 | + * @var null|array |
|
68 | + * @since 0.5.0 |
|
69 | + */ |
|
70 | + protected $html_attributions = null; |
|
71 | + |
|
72 | + /** |
|
73 | + * @var null|string |
|
74 | + * @since 0.5.0 |
|
75 | + */ |
|
76 | + protected $next_page_token = null; |
|
77 | + |
|
78 | + /** |
|
79 | + * GoogleMapsResponse constructor. |
|
80 | + * |
|
81 | + * @param Response $response |
|
82 | + */ |
|
83 | + public function __construct(Response $response) |
|
84 | + { |
|
85 | + |
|
86 | + $this->setResponse($response); |
|
87 | + |
|
88 | + $this->parseResponse(); |
|
89 | + |
|
90 | + $this->checkHttpStatusCode(); |
|
91 | + } |
|
92 | + |
|
93 | + /** |
|
94 | + * @param Response $response |
|
95 | + * |
|
96 | + * @return GoogleMapsResponse |
|
97 | + */ |
|
98 | + public function setResponse(Response $response): GoogleMapsResponse |
|
99 | + { |
|
100 | + |
|
101 | + $this->response = $response; |
|
102 | + |
|
103 | + return $this; |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * @return GoogleMapsResponse |
|
108 | + * |
|
109 | + * @throws RequestException |
|
110 | + * @throws ResponseException |
|
111 | + */ |
|
112 | + protected function parseResponse(): GoogleMapsResponse |
|
113 | + { |
|
114 | + |
|
115 | + $json_response = $this->response->getBody()->getContents(); |
|
116 | + $array_response = $this->toArray($json_response); |
|
117 | + $results = null; |
|
118 | + |
|
119 | + if (empty($array_response[GoogleMapsResponseFields::STATUS])) { |
|
120 | + throw new ResponseException('Missing "status" in GoogleMapsApi Response'); |
|
121 | + } |
|
122 | + $this->setStatus($array_response[GoogleMapsResponseFields::STATUS]); |
|
123 | + |
|
124 | + if ($this->getStatus() != GoogleMapsResponseStatusValues::OK) { |
|
125 | + $error_message = 'Something went wrong'; |
|
126 | + if (!empty($array_response[GoogleMapsResponseFields::ERROR_MESSAGE])) { |
|
127 | + $error_message = $array_response[GoogleMapsResponseFields::ERROR_MESSAGE]; |
|
128 | + $this->setErrorMessage($error_message); |
|
129 | + } elseif (!empty($array_response[GoogleMapsResponseFields::STATUS])) { |
|
130 | + $error_message .= ': ' . $array_response[GoogleMapsResponseFields::STATUS]; |
|
131 | + $this->setErrorMessage($error_message); |
|
132 | + } |
|
133 | + throw new RequestException($error_message); |
|
134 | + |
|
135 | + } |
|
136 | + |
|
137 | + if (!empty($array_response[GoogleMapsResponseFields::RESULTS])) { |
|
138 | + $results = $array_response[GoogleMapsResponseFields::RESULTS]; |
|
139 | + |
|
140 | + } elseif (!empty($array_response[GoogleMapsResponseFields::CANDIDATES])) { |
|
141 | + $results = $array_response[GoogleMapsResponseFields::CANDIDATES]; |
|
142 | + |
|
143 | + } else { |
|
144 | + throw new ResponseException('Missing "results" in GoogleMapsApi Response'); |
|
145 | + } |
|
146 | + $this->setResults($results); |
|
147 | + |
|
148 | + if (!empty($array_response[GoogleMapsResponseFields::HTML_ATTRIBUTIONS])) { |
|
149 | + $this->setHtmlAttributions($array_response[GoogleMapsResponseFields::HTML_ATTRIBUTIONS]); |
|
150 | + } |
|
151 | + |
|
152 | + if (!empty($array_response[GoogleMapsResponseFields::NEXT_PAGE_TOKEN])) { |
|
153 | + $this->setNextPageToken($array_response[GoogleMapsResponseFields::NEXT_PAGE_TOKEN]); |
|
154 | + } |
|
155 | + |
|
156 | + return $this; |
|
157 | + } |
|
158 | + |
|
159 | + /** |
|
160 | + * @param string $json_response |
|
161 | + * |
|
162 | + * @return array |
|
163 | + */ |
|
164 | + public function toArray(string $json_response): array |
|
165 | + { |
|
166 | + |
|
167 | + $this->array_response = json_decode($json_response, true); |
|
168 | + |
|
169 | + return $this->array_response; |
|
170 | + } |
|
171 | + |
|
172 | + /** |
|
173 | + * @return string |
|
174 | + */ |
|
175 | + public function getStatus(): string |
|
176 | + { |
|
177 | + |
|
178 | + return $this->status; |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * @param string $status |
|
183 | + * |
|
184 | + * @return GoogleMapsResponse |
|
185 | + */ |
|
186 | + public function setStatus(string $status) |
|
187 | + { |
|
188 | + |
|
189 | + $this->status = $status; |
|
190 | + |
|
191 | + return $this; |
|
192 | + } |
|
193 | + |
|
194 | + /** |
|
195 | + * Check HTTP status code (silent/No exceptions!) |
|
196 | + * @return int |
|
197 | + */ |
|
198 | + protected function checkHttpStatusCode(): int |
|
199 | + { |
|
200 | + |
|
201 | + $this->http_status_code = $this->response->getStatusCode(); |
|
202 | + |
|
203 | + return $this->http_status_code; |
|
204 | + } |
|
205 | + |
|
206 | + /** |
|
207 | + * @return array |
|
208 | + */ |
|
209 | + public function getResults() |
|
210 | + { |
|
211 | + |
|
212 | + return $this->results; |
|
213 | + } |
|
214 | + |
|
215 | + /** |
|
216 | + * @param array $results |
|
217 | + * |
|
218 | + * @return $this |
|
219 | + */ |
|
220 | + public function setResults(array $results) |
|
221 | + { |
|
222 | + |
|
223 | + $this->results = $results; |
|
224 | + |
|
225 | + return $this; |
|
226 | + } |
|
227 | + |
|
228 | + /** |
|
229 | + * @return array |
|
230 | + */ |
|
231 | + public function getArrayResponse(): array |
|
232 | + { |
|
233 | + |
|
234 | + return $this->array_response; |
|
235 | + } |
|
236 | + |
|
237 | + /** |
|
238 | + * @param array $array_response |
|
239 | + * |
|
240 | + * @return GoogleMapsResponse |
|
241 | + */ |
|
242 | + public function setArrayResponse(array $array_response): GoogleMapsResponse |
|
243 | + { |
|
244 | + |
|
245 | + $this->array_response = $array_response; |
|
246 | + |
|
247 | + return $this; |
|
248 | + } |
|
249 | + |
|
250 | + /** |
|
251 | + * @return mixed |
|
252 | + */ |
|
253 | + public function getErrorMessage() |
|
254 | + { |
|
255 | + |
|
256 | + return $this->error_message; |
|
257 | + } |
|
258 | + |
|
259 | + /** |
|
260 | + * @param $error_message |
|
261 | + * |
|
262 | + * @return GoogleMapsResponse |
|
263 | + */ |
|
264 | + public function setErrorMessage($error_message): GoogleMapsResponse |
|
265 | + { |
|
266 | + |
|
267 | + $this->error_message = $error_message; |
|
268 | + |
|
269 | + return $this; |
|
270 | + } |
|
271 | + |
|
272 | + /** |
|
273 | + * @return int |
|
274 | + */ |
|
275 | + public function getHttpStatusCode(): int |
|
276 | + { |
|
277 | + |
|
278 | + return intval($this->http_status_code); |
|
279 | + } |
|
280 | + |
|
281 | + /** |
|
282 | + * @return array|null |
|
283 | + */ |
|
284 | + public function getHtmlAttributions(): ?array |
|
285 | + { |
|
286 | + |
|
287 | + return $this->html_attributions; |
|
288 | + } |
|
289 | + |
|
290 | + /** |
|
291 | + * @param array|null $html_attributions |
|
292 | + * |
|
293 | + * @return GoogleMapsResponse |
|
294 | + */ |
|
295 | + public function setHtmlAttributions(?array $html_attributions): GoogleMapsResponse |
|
296 | + { |
|
297 | + |
|
298 | + $this->html_attributions = $html_attributions; |
|
299 | + |
|
300 | + return $this; |
|
301 | + } |
|
302 | + |
|
303 | + /** |
|
304 | + * @return string |
|
305 | + */ |
|
306 | + public function getNextPageToken(): string |
|
307 | + { |
|
308 | + |
|
309 | + return $this->next_page_token ?? ''; |
|
310 | + } |
|
311 | + |
|
312 | + /** |
|
313 | + * @param $next_page_token |
|
314 | + * |
|
315 | + * @return GoogleMapsResponse |
|
316 | + */ |
|
317 | + public function setNextPageToken($next_page_token): GoogleMapsResponse |
|
318 | + { |
|
319 | + |
|
320 | + $this->next_page_token = $next_page_token; |
|
321 | + |
|
322 | + return $this; |
|
323 | + } |
|
324 | 324 | |
325 | 325 | } |
326 | 326 | \ No newline at end of file |
@@ -127,7 +127,7 @@ |
||
127 | 127 | $error_message = $array_response[GoogleMapsResponseFields::ERROR_MESSAGE]; |
128 | 128 | $this->setErrorMessage($error_message); |
129 | 129 | } elseif (!empty($array_response[GoogleMapsResponseFields::STATUS])) { |
130 | - $error_message .= ': ' . $array_response[GoogleMapsResponseFields::STATUS]; |
|
130 | + $error_message .= ': '.$array_response[GoogleMapsResponseFields::STATUS]; |
|
131 | 131 | $this->setErrorMessage($error_message); |
132 | 132 | } |
133 | 133 | throw new RequestException($error_message); |