Completed
Push — master ( c5355d...bffdc6 )
by Karl
03:02
created

AbstractProvider   A

Complexity

Total Complexity 33

Size/Duplication

Total Lines 349
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 6

Test Coverage

Coverage 81.05%

Importance

Changes 0
Metric Value
wmc 33
lcom 1
cbo 6
dl 0
loc 349
ccs 77
cts 95
cp 0.8105
rs 9.3999
c 0
b 0
f 0

20 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
createJobObject() 0 1 ?
getDefaultResponseFields() 0 1 ?
getListingsPath() 0 1 ?
A getClientResponse() 0 17 1
A getFormat() 0 4 1
A getJobs() 0 18 3
A getSource() 0 6 1
A parseAttributeDefaults() 0 9 2
A parseLocation() 0 4 1
A setClient() 0 6 1
A setQuery() 0 6 1
A getJobsCollectionFromListings() 0 17 1
A getRawListings() 0 18 4
A getValue() 0 17 4
A parseAsFormat() 0 10 2
A getValueCurrentIndex() 0 4 3
A isArrayNotEmpty() 0 4 2
A parseAsJson() 0 16 3
A parseAsXml() 0 19 2
1
<?php namespace JobApis\Jobs\Client\Providers;
2
3
use GuzzleHttp\Client as HttpClient;
4
use JobApis\Jobs\Client\Collection;
5
use JobApis\Jobs\Client\Exceptions\MissingParameterException;
6
use JobApis\Jobs\Client\Queries\AbstractQuery;
7
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
0 ignored issues
show
Bug introduced by
There is no parameter named $parameters. Was it maybe removed?

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 method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
28
     */
29 16
    public function __construct(AbstractQuery $query)
30
    {
31 16
        $this->setQuery($query)
32 16
            ->setClient(new HttpClient);
33 16
    }
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()
64
    {
65
        // Create a local copy of the client object
66 6
        $client = $this->client;
67
68
        // GET or POST request
69 6
        $verb = strtolower($this->query->getVerb());
70
71
        // The URL string
72 6
        $url = $this->query->getUrl();
73
74
        // HTTP method options
75 6
        $options = $this->query->getHttpMethodOptions();
76
77
        // Get the response
78 6
        return $client->{$verb}($url, $options);
79
    }
80
81
    /**
82
     * Get format
83
     *
84
     * @return  string Currently only 'json' and 'xml' supported
85
     */
86 6
    public function getFormat()
87
    {
88 6
        return 'json';
89
    }
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()
98
    {
99
        // Verify that all required query vars are set
100 6
        if ($this->query->isValid()) {
101
            // Get the response from the client using the query
102 4
            $response = $this->getClientResponse();
103
            // Get the response body as a string
104 4
            $body = (string) $response->getBody();
105
            // Parse the string
106 4
            $payload = $this->parseAsFormat($body, $this->getFormat());
107
            // Gets listings if they're nested
108 4
            $listings = is_array($payload) ? $this->getRawListings($payload) : [];
109
            // Return a job collection
110 4
            return $this->getJobsCollectionFromListings($listings);
111
        } else {
112 2
            throw new MissingParameterException("All Required parameters for this provider must be set");
113
        }
114
    }
115
116
    /**
117
     * Get source attribution
118
     *
119
     * @return string
120
     */
121 6
    public function getSource()
122
    {
123 6
        $ref = new \ReflectionClass(get_class($this));
124
125 6
        return $ref->getShortName();
126
    }
127
128
    /**
129
     * Parse job attributes against defaults
130
     *
131
     * @param  array $attributes
132
     * @param  array $defaults
133
     *
134
     * @return array
135
     */
136 6
    public static function parseAttributeDefaults(array $attributes, array $defaults = array())
137
    {
138
        array_map(function ($attribute) use (&$attributes) {
139 6
            if (!isset($attributes[$attribute])) {
140 6
                $attributes[$attribute] = null;
141 6
            }
142 6
        }, $defaults);
143 6
        return $attributes;
144
    }
145
146
    /**
147
     * Parse location string into components.
148
     *
149
     * @param string $location
150
     *
151
     * @return  array
152
     **/
153 2
    public static function parseLocation($location, $separator = ', ')
154
    {
155 2
        return explode($separator, $location);
156
    }
157
158
    /**
159
     * Sets http client
160
     *
161
     * @param HttpClient $client
162
     *
163
     * @return  AbstractProvider
164
     */
165 16
    public function setClient(HttpClient $client)
166
    {
167 16
        $this->client = $client;
168
169 16
        return $this;
170
    }
171
172
    /**
173
     * Sets query object
174
     *
175
     * @param AbstractQuery $query
176
     *
177
     * @return  AbstractProvider
178
     */
179 16
    public function setQuery(AbstractQuery $query)
180
    {
181 16
        $this->query = $query;
182
183 16
        return $this;
184
    }
185
186
    /**
187
     * Create and get collection of jobs from given listings
188
     *
189
     * @param  array $listings
190
     *
191
     * @return Collection
192
     */
193 4
    protected function getJobsCollectionFromListings(array $listings = [])
194
    {
195 4
        $collection = new Collection;
196
197 4
        array_map(function ($item) use ($collection) {
198 4
            $item = static::parseAttributeDefaults(
199 4
                $item,
200 4
                $this->getDefaultResponseFields()
0 ignored issues
show
Documentation introduced by
$this->getDefaultResponseFields() is of type string, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
201 4
            );
202 4
            $job = $this->createJobObject($item);
203 4
            $job->setQuery($this->query->getKeyword())
204 4
                ->setSource($this->getSource());
205 4
            $collection->add($job);
206 4
        }, $listings);
207
208 4
        return $collection;
209
    }
210
211
    /**
212
     * Get raw listings from payload
213
     *
214
     * @param  array $payload
215
     *
216
     * @return array
217
     */
218 4
    protected function getRawListings(array $payload = array())
219
    {
220 4
        $path = $this->getListingsPath();
221
222 4
        if (!empty($path)) {
223 4
            $index = explode('.', $path);
224
225 4
            $listings = self::getValue($index, $payload);
226
227
            // Listings should be returned as an array of arrays
228 4
            if (reset($listings) && is_array(reset($listings))) {
229 2
                return $listings;
230
            }
231 2
            return [0 => $listings];
232
        }
233
234
        return (array) $payload;
235
    }
236
237
    /**
238
     * Navigate through a payload array looking for a particular index
239
     *
240
     * @param array $index The index sequence we are navigating down
241
     * @param array $value The portion of the config array to process
242
     *
243
     * @return mixed
244
     */
245 4
    protected static function getValue($index, $value)
246
    {
247 4
        $current_index = self::getValueCurrentIndex($index);
248
249 4
        if (isset($value[$current_index])) {
250 4
            $index_array = self::isArrayNotEmpty($index);
251 4
            $value_array = self::isArrayNotEmpty($value[$current_index]);
252
253 4
            if ($index_array && $value_array) {
254
                return self::getValue($index, $value[$current_index]);
255
            } else {
256 4
                return $value[$current_index];
257
            }
258
        } else {
259
            throw new \OutOfRangeException("Attempt to access missing variable: $current_index");
260
        }
261
    }
262
263
    /**
264
     * Attempt to parse string as given format
265
     *
266
     * @param  string  $string
267
     * @param  string  $format
268
     *
269
     * @return array
270
     */
271 4
    protected function parseAsFormat($string, $format)
272
    {
273 4
        $method = 'parseAs'.ucfirst(strtolower($format));
274
275 4
        if (method_exists($this, $method)) {
276 4
            return $this->$method($string);
277
        }
278
279
        return [];
280
    }
281
282
    /**
283
     * Get value current index
284
     *
285
     * @param  mixed $index
286
     *
287
     * @return array|null
288
     */
289 4
    private static function getValueCurrentIndex(&$index)
290
    {
291 4
        return is_array($index) && count($index) ? array_shift($index) : null;
292
    }
293
294
    /**
295
     * Checks if given value is an array and that it has contents
296
     *
297
     * @param  mixed $array
298
     *
299
     * @return boolean
300
     */
301 4
    private static function isArrayNotEmpty($array)
302
    {
303 4
        return is_array($array) && count($array);
304
    }
305
306
    /**
307
     * Attempt to parse as Json
308
     *
309
     * @param  string $string
310
     *
311
     * @return array
312
     */
313 4
    private function parseAsJson($string)
314
    {
315
        try {
316 4
            $json = json_decode($string, true);
317
318 4
            if (json_last_error() != JSON_ERROR_NONE) {
319
                throw new \Exception;
320
            }
321
322 4
            return $json;
323
        } catch (\Exception $e) {
324
            // Ignore malformed json.
325
        }
326
327
        return [];
328
    }
329
330
    /**
331
     * Attempt to parse as XML
332
     *
333
     * @param  string $string
334
     *
335
     * @return array
336
     */
337
    private function parseAsXml($string)
338
    {
339
        try {
340
            return json_decode(
341
                json_encode(
342
                    simplexml_load_string(
343
                        $string,
344
                        null,
345
                        LIBXML_NOCDATA
346
                    )
347
                ),
348
                true
349
            );
350
        } catch (\Exception $e) {
351
            // Ignore malformed xml.
352
        }
353
354
        return [];
355
    }
356
}
357