Total Complexity | 68 |
Total Lines | 555 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like WebClient often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WebClient, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
17 | class WebClient extends Client |
||
18 | { |
||
19 | const MODE = 'web'; |
||
20 | |||
21 | /** |
||
22 | * Cached responses to avoid multiple request for the same file |
||
23 | * |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $cache = []; |
||
27 | |||
28 | /** |
||
29 | * Apache Tika server host |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $host = null; |
||
34 | |||
35 | /** |
||
36 | * Apache Tika server port |
||
37 | * |
||
38 | * @var int |
||
39 | */ |
||
40 | protected $port = null; |
||
41 | |||
42 | /** |
||
43 | * Number of retries on server error |
||
44 | * |
||
45 | * @var int |
||
46 | */ |
||
47 | protected $retries = 3; |
||
48 | |||
49 | /** |
||
50 | * Default cURL options |
||
51 | * |
||
52 | * @var array |
||
53 | */ |
||
54 | protected $options = |
||
55 | [ |
||
56 | CURLINFO_HEADER_OUT => true, |
||
57 | CURLOPT_HTTPHEADER => [], |
||
58 | CURLOPT_PUT => true, |
||
59 | CURLOPT_RETURNTRANSFER => true, |
||
60 | CURLOPT_TIMEOUT => 5 |
||
61 | ]; |
||
62 | |||
63 | /** |
||
64 | * Configure class and test if server is running |
||
65 | * |
||
66 | * @param string $host |
||
67 | * @param int $port |
||
68 | * @param array $options |
||
69 | * @throws \Exception |
||
70 | */ |
||
71 | public function __construct($host = null, $port = null, $options = []) |
||
72 | { |
||
73 | if(is_string($host) && filter_var($host, FILTER_VALIDATE_URL)) |
||
74 | { |
||
75 | $this->setUrl($host); |
||
76 | } |
||
77 | elseif($host) |
||
78 | { |
||
79 | $this->setHost($host); |
||
80 | } |
||
81 | |||
82 | if(is_numeric($port)) |
||
83 | { |
||
84 | $this->setPort($port); |
||
85 | } |
||
86 | |||
87 | if(!empty($options)) |
||
88 | { |
||
89 | $this->setOptions($options); |
||
90 | } |
||
91 | |||
92 | $this->setDownloadRemote(true); |
||
93 | |||
94 | if(self::$check == true) |
||
|
|||
95 | { |
||
96 | $this->check(); |
||
97 | } |
||
98 | } |
||
99 | |||
100 | /** |
||
101 | * Get the base URL |
||
102 | * |
||
103 | * @return string |
||
104 | */ |
||
105 | public function getUrl() |
||
106 | { |
||
107 | return sprintf('http://%s:%d', $this->host, $this->port ?: 9998); |
||
108 | } |
||
109 | |||
110 | /** |
||
111 | * Set the host and port using an URL |
||
112 | * |
||
113 | * @param string $url |
||
114 | * @return $this |
||
115 | */ |
||
116 | public function setUrl($url) |
||
117 | { |
||
118 | $url = parse_url($url); |
||
119 | |||
120 | $this->setHost($url['host']); |
||
121 | |||
122 | if(isset($url['port'])) |
||
123 | { |
||
124 | $this->setPort($url['port']); |
||
125 | } |
||
126 | |||
127 | return $this; |
||
128 | } |
||
129 | |||
130 | /** |
||
131 | * Get the host |
||
132 | * |
||
133 | * @return null|string |
||
134 | */ |
||
135 | public function getHost() |
||
136 | { |
||
137 | return $this->host; |
||
138 | } |
||
139 | |||
140 | /** |
||
141 | * Set the host |
||
142 | * |
||
143 | * @param string $host |
||
144 | * @return $this |
||
145 | */ |
||
146 | public function setHost($host) |
||
147 | { |
||
148 | $this->host = $host; |
||
149 | |||
150 | return $this; |
||
151 | } |
||
152 | |||
153 | /** |
||
154 | * Get the port |
||
155 | * |
||
156 | * @return null|int |
||
157 | */ |
||
158 | public function getPort() |
||
159 | { |
||
160 | return $this->port; |
||
161 | } |
||
162 | |||
163 | /** |
||
164 | * Set the port |
||
165 | * |
||
166 | * @param int $port |
||
167 | * @return $this |
||
168 | */ |
||
169 | public function setPort($port) |
||
170 | { |
||
171 | $this->port = $port; |
||
172 | |||
173 | return $this; |
||
174 | } |
||
175 | |||
176 | /** |
||
177 | * Get the number of retries |
||
178 | * |
||
179 | * @return int |
||
180 | */ |
||
181 | public function getRetries() |
||
182 | { |
||
183 | return $this->retries; |
||
184 | } |
||
185 | |||
186 | /** |
||
187 | * Set the number of retries |
||
188 | * |
||
189 | * @param int $retries |
||
190 | * @return $this |
||
191 | */ |
||
192 | public function setRetries($retries) |
||
193 | { |
||
194 | $this->retries = $retries; |
||
195 | |||
196 | return $this; |
||
197 | } |
||
198 | |||
199 | /** |
||
200 | * Get all the options |
||
201 | * |
||
202 | * @return null|array |
||
203 | */ |
||
204 | public function getOptions() |
||
205 | { |
||
206 | return $this->options; |
||
207 | } |
||
208 | |||
209 | /** |
||
210 | * Get an specified option |
||
211 | * |
||
212 | * @param string $key |
||
213 | * @return mixed |
||
214 | */ |
||
215 | public function getOption($key) |
||
218 | } |
||
219 | |||
220 | /** |
||
221 | * Set a cURL option to be set with curl_setopt() |
||
222 | * |
||
223 | * @link http://php.net/manual/en/curl.constants.php |
||
224 | * @link http://php.net/manual/en/function.curl-setopt.php |
||
225 | * @param string $key |
||
226 | * @param mixed $value |
||
227 | * @return $this |
||
228 | * @throws \Exception |
||
229 | */ |
||
230 | public function setOption($key, $value) |
||
231 | { |
||
232 | if(in_array($key, [CURLINFO_HEADER_OUT, CURLOPT_PUT, CURLOPT_RETURNTRANSFER])) |
||
233 | { |
||
234 | throw new Exception("Value for cURL option $key cannot be modified", 3); |
||
235 | } |
||
236 | |||
237 | $this->options[$key] = $value; |
||
238 | |||
239 | return $this; |
||
240 | } |
||
241 | |||
242 | /** |
||
243 | * Set the cURL options |
||
244 | * |
||
245 | * @param array $options |
||
246 | * @return $this |
||
247 | * @throws \Exception |
||
248 | */ |
||
249 | public function setOptions($options) |
||
250 | { |
||
251 | foreach($options as $key => $value) |
||
252 | { |
||
253 | $this->setOption($key, $value); |
||
254 | } |
||
255 | |||
256 | return $this; |
||
257 | } |
||
258 | |||
259 | /** |
||
260 | * Get the timeout value for cURL |
||
261 | * |
||
262 | * @return int |
||
263 | */ |
||
264 | public function getTimeout() |
||
265 | { |
||
266 | return $this->getOption(CURLOPT_TIMEOUT); |
||
267 | } |
||
268 | |||
269 | /** |
||
270 | * Set the timeout value for cURL |
||
271 | * |
||
272 | * @param int $value |
||
273 | * @return $this |
||
274 | * @throws \Exception |
||
275 | */ |
||
276 | public function setTimeout($value) |
||
277 | { |
||
278 | $this->setOption(CURLOPT_TIMEOUT, (int) $value); |
||
279 | |||
280 | return $this; |
||
281 | } |
||
282 | |||
283 | /** |
||
284 | * Check if server is running |
||
285 | * |
||
286 | * @throws \Exception |
||
287 | */ |
||
288 | public function check() |
||
289 | { |
||
290 | if(self::$checked == false) |
||
291 | { |
||
292 | // throws an exception if server is unreachable or can't connect |
||
293 | $this->getVersion(); |
||
294 | |||
295 | self::$checked = true; |
||
296 | } |
||
297 | } |
||
298 | |||
299 | /** |
||
300 | * Configure, make a request and return its results |
||
301 | * |
||
302 | * @param string $type |
||
303 | * @param string $file |
||
304 | * @return string |
||
305 | * @throws \Exception |
||
306 | */ |
||
307 | public function request($type, $file = null) |
||
376 | } |
||
377 | |||
378 | /** |
||
379 | * Make a request to Apache Tika Server |
||
380 | * |
||
381 | * @param array $options |
||
382 | * @return array |
||
383 | * @throws \Exception |
||
384 | */ |
||
385 | protected function exec(array $options = []) |
||
386 | { |
||
387 | // cURL init and options |
||
388 | $curl = curl_init(); |
||
389 | |||
390 | // we avoid curl_setopt_array($curl, $options) because extrange Windows behaviour (issue #8) |
||
391 | foreach($options as $option => $value) |
||
392 | { |
||
393 | curl_setopt($curl, $option, $value); |
||
394 | } |
||
395 | |||
396 | // make the request |
||
397 | if(is_null($this->callback)) |
||
398 | { |
||
399 | $this->response = curl_exec($curl); |
||
400 | } |
||
401 | else |
||
402 | { |
||
403 | $this->response = ''; |
||
404 | curl_exec($curl); |
||
405 | } |
||
406 | |||
407 | // exception if cURL fails |
||
408 | if(curl_errno($curl)) |
||
409 | { |
||
410 | throw new Exception(curl_error($curl), curl_errno($curl)); |
||
411 | } |
||
412 | |||
413 | // return the response and the status code |
||
414 | return [trim($this->response), curl_getinfo($curl, CURLINFO_HTTP_CODE)]; |
||
415 | } |
||
416 | |||
417 | /** |
||
418 | * Throws an exception for an error status code |
||
419 | * |
||
420 | * @codeCoverageIgnore |
||
421 | * |
||
422 | * @param int $status |
||
423 | * @param string $resource |
||
424 | * @throws \Exception |
||
425 | */ |
||
426 | protected function error($status, $resource) |
||
427 | { |
||
428 | switch($status) |
||
429 | { |
||
430 | // method not allowed |
||
431 | case 405: |
||
432 | throw new Exception('Method not allowed', 405); |
||
433 | break; |
||
434 | |||
435 | // unsupported media type |
||
436 | case 415: |
||
437 | throw new Exception('Unsupported media type', 415); |
||
438 | break; |
||
439 | |||
440 | // unprocessable entity |
||
441 | case 422: |
||
442 | throw new Exception('Unprocessable document', 422); |
||
443 | break; |
||
444 | |||
445 | // server error |
||
446 | case 500: |
||
447 | throw new Exception('Error while processing document', 500); |
||
448 | break; |
||
449 | |||
450 | // unexpected |
||
451 | default: |
||
452 | throw new Exception("Unexpected response for /$resource ($status)", 501); |
||
453 | } |
||
454 | } |
||
455 | |||
456 | /** |
||
457 | * Get the parameters to make the request |
||
458 | * |
||
459 | * @link https://wiki.apache.org/tika/TikaJAXRS#Specifying_a_URL_Instead_of_Putting_Bytes |
||
460 | * @param string $type |
||
461 | * @param string $file |
||
462 | * @return array |
||
463 | * @throws \Exception |
||
464 | */ |
||
465 | protected function getParameters($type, $file = null) |
||
518 | } |
||
519 | |||
520 | /** |
||
521 | * Get the cURL options |
||
522 | * |
||
523 | * @param string $type |
||
524 | * @param string file |
||
525 | * @return array |
||
526 | * @throws \Exception |
||
527 | */ |
||
528 | protected function getCurlOptions($type, $file = null) |
||
572 | } |
||
573 | } |
||
574 |
When comparing two booleans, it is generally considered safer to use the strict comparison operator.