1 | <?php namespace JobApis\Jobs\Client\Providers; |
||
8 | abstract class AbstractProvider |
||
9 | { |
||
10 | /** |
||
11 | * HTTP Client |
||
12 | * |
||
13 | * @var HttpClient |
||
14 | */ |
||
15 | protected $client; |
||
16 | |||
17 | /** |
||
18 | * Query params |
||
19 | * |
||
20 | * @var AbstractQuery |
||
21 | */ |
||
22 | protected $query; |
||
23 | |||
24 | /** |
||
25 | * Create new client |
||
26 | * |
||
27 | * @param array $parameters |
||
|
|||
28 | */ |
||
29 | 16 | public function __construct(AbstractQuery $query) |
|
34 | |||
35 | /** |
||
36 | * Returns the standardized job object |
||
37 | * |
||
38 | * @param array|object $payload |
||
39 | * |
||
40 | * @return \JobApis\Jobs\Client\Job |
||
41 | */ |
||
42 | abstract public function createJobObject($payload); |
||
43 | |||
44 | /** |
||
45 | * Job response object default keys that should be set |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | abstract public function getDefaultResponseFields(); |
||
50 | |||
51 | /** |
||
52 | * Get listings path |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | abstract public function getListingsPath(); |
||
57 | |||
58 | /** |
||
59 | * Uses the Query to make a call to the client |
||
60 | * |
||
61 | * @return \Psr\Http\Message\ResponseInterface |
||
62 | */ |
||
63 | 6 | public function getClientResponse() |
|
80 | |||
81 | /** |
||
82 | * Get format |
||
83 | * |
||
84 | * @return string Currently only 'json' and 'xml' supported |
||
85 | */ |
||
86 | 6 | public function getFormat() |
|
90 | |||
91 | /** |
||
92 | * Makes the api call and returns a collection of job objects |
||
93 | * |
||
94 | * @return \JobApis\Jobs\Client\Collection |
||
95 | * @throws MissingParameterException |
||
96 | */ |
||
97 | 6 | public function getJobs() |
|
115 | |||
116 | /** |
||
117 | * Get source attribution |
||
118 | * |
||
119 | * @return string |
||
120 | */ |
||
121 | 6 | public function getSource() |
|
134 | |||
135 | /** |
||
136 | * Parse job attributes against defaults |
||
137 | * |
||
138 | * @param array $attributes |
||
139 | * @param array $defaults |
||
140 | * |
||
141 | * @return array |
||
142 | */ |
||
143 | 6 | public static function parseAttributeDefaults(array $attributes, array $defaults = array()) |
|
152 | |||
153 | /** |
||
154 | * Parse location string into components. |
||
155 | * |
||
156 | * @param string $location |
||
157 | * |
||
158 | * @return array |
||
159 | **/ |
||
160 | 2 | public static function parseLocation($location, $separator = ', ') |
|
164 | |||
165 | /** |
||
166 | * Sets http client |
||
167 | * |
||
168 | * @param HttpClient $client |
||
169 | * |
||
170 | * @return AbstractProvider |
||
171 | */ |
||
172 | 16 | public function setClient(HttpClient $client) |
|
178 | |||
179 | /** |
||
180 | * Sets query object |
||
181 | * |
||
182 | * @param AbstractQuery $query |
||
183 | * |
||
184 | * @return AbstractProvider |
||
185 | */ |
||
186 | 16 | public function setQuery(AbstractQuery $query) |
|
192 | |||
193 | /** |
||
194 | * Create and get collection of jobs from given listings |
||
195 | * |
||
196 | * @param array $listings |
||
197 | * |
||
198 | * @return Collection |
||
199 | */ |
||
200 | 4 | protected function getJobsCollectionFromListings(array $listings = []) |
|
217 | |||
218 | /** |
||
219 | * Get raw listings from payload |
||
220 | * |
||
221 | * @param array $payload |
||
222 | * |
||
223 | * @return array |
||
224 | */ |
||
225 | 4 | protected function getRawListings(array $payload = array()) |
|
243 | |||
244 | /** |
||
245 | * Navigate through a payload array looking for a particular index |
||
246 | * |
||
247 | * @param array $index The index sequence we are navigating down |
||
248 | * @param array $value The portion of the config array to process |
||
249 | * |
||
250 | * @return mixed |
||
251 | */ |
||
252 | 4 | protected static function getValue($index, $value) |
|
269 | |||
270 | /** |
||
271 | * Attempt to parse string as given format |
||
272 | * |
||
273 | * @param string $string |
||
274 | * @param string $format |
||
275 | * |
||
276 | * @return array |
||
277 | */ |
||
278 | 4 | protected function parseAsFormat($string, $format) |
|
288 | |||
289 | /** |
||
290 | * Get value current index |
||
291 | * |
||
292 | * @param mixed $index |
||
293 | * |
||
294 | * @return array|null |
||
295 | */ |
||
296 | 4 | private static function getValueCurrentIndex(&$index) |
|
300 | |||
301 | /** |
||
302 | * Checks if given value is an array and that it has contents |
||
303 | * |
||
304 | * @param mixed $array |
||
305 | * |
||
306 | * @return boolean |
||
307 | */ |
||
308 | 4 | private static function isArrayNotEmpty($array) |
|
312 | |||
313 | /** |
||
314 | * Attempt to parse as Json |
||
315 | * |
||
316 | * @param string $string |
||
317 | * |
||
318 | * @return array |
||
319 | */ |
||
320 | 4 | private function parseAsJson($string) |
|
336 | |||
337 | /** |
||
338 | * Attempt to parse as XML |
||
339 | * |
||
340 | * @param string $string |
||
341 | * |
||
342 | * @return array |
||
343 | */ |
||
344 | private function parseAsXml($string) |
||
363 | |||
364 | /** |
||
365 | * Determine whether a string ends with another string |
||
366 | * |
||
367 | * @param $string |
||
368 | * @param $test |
||
369 | * |
||
370 | * @return bool |
||
371 | */ |
||
372 | 6 | private function stringEndsWith($string, $test) |
|
381 | } |
||
382 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.