Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like Request 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 Request, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
16 | class Request extends Http |
||
17 | { |
||
18 | const MAX_REDIRECTS_DEFAULT = 10; |
||
19 | protected static $curlAlias = array( |
||
20 | 'url' => 'CURLOPT_URL', |
||
21 | 'uri' => 'CURLOPT_URL', |
||
22 | 'debug' => 'CURLOPT_VERBOSE',//for debug verbose |
||
23 | 'method' => 'CURLOPT_CUSTOMREQUEST', |
||
24 | 'data' => 'CURLOPT_POSTFIELDS', // array or string , file begin with '@' |
||
25 | 'ua' => 'CURLOPT_USERAGENT', |
||
26 | 'timeout' => 'CURLOPT_TIMEOUT', // (secs) 0 means indefinitely |
||
27 | 'connect_timeout' => 'CURLOPT_CONNECTTIMEOUT', |
||
28 | 'referer' => 'CURLOPT_REFERER', |
||
29 | 'binary' => 'CURLOPT_BINARYTRANSFER', |
||
30 | 'port' => 'CURLOPT_PORT', |
||
31 | 'header' => 'CURLOPT_HEADER', // TRUE:include header |
||
32 | 'headers' => 'CURLOPT_HTTPHEADER', // array |
||
33 | 'download' => 'CURLOPT_FILE', // writing file stream (using fopen()), default is STDOUT |
||
34 | 'upload' => 'CURLOPT_INFILE', // reading file stream |
||
35 | 'transfer' => 'CURLOPT_RETURNTRANSFER', // TRUE:return string; FALSE:output directly (curl_exec) |
||
36 | 'follow_location' => 'CURLOPT_FOLLOWLOCATION', |
||
37 | 'timeout_ms' => 'CURLOPT_TIMEOUT_MS', // milliseconds, libcurl version > 7.36.0 , |
||
38 | ); |
||
39 | protected static $logger; |
||
40 | public $curlHandle; |
||
41 | public |
||
42 | $uri, |
||
43 | $timeout, |
||
44 | $maxRedirects, |
||
45 | $followRedirects; |
||
46 | public $cert; |
||
47 | public $key; |
||
48 | public $passphrase; |
||
49 | public $encoding; |
||
50 | public $payload; |
||
51 | protected $options = array( |
||
52 | 'CURLOPT_MAXREDIRS' => 10, |
||
53 | 'header' => true, |
||
54 | 'method' => self::GET, |
||
55 | 'transfer' => true, |
||
56 | 'follow_location' => true, |
||
57 | 'timeout' => 0); |
||
58 | protected $endCallback; |
||
59 | protected $withURIQuery; |
||
60 | protected $hasInitialized = false; |
||
61 | |||
62 | protected function __construct() |
||
63 | { |
||
64 | |||
65 | } |
||
66 | |||
67 | public static function create() |
||
68 | { |
||
69 | return new self; |
||
70 | } |
||
71 | |||
72 | public static function setLogger($logger) |
||
73 | { |
||
74 | self::$logger = $logger; |
||
75 | } |
||
76 | |||
77 | /** |
||
78 | * Specify timeout |
||
79 | * @param float|int $timeout seconds to timeout the HTTP call |
||
80 | * @return Request |
||
81 | */ |
||
82 | public function timeout($timeout) |
||
87 | |||
88 | public function noFollow() |
||
89 | { |
||
90 | 2 | return $this->follow(0); |
|
91 | } |
||
92 | 2 | ||
93 | /** |
||
94 | * If the response is a 301 or 302 redirect, automatically |
||
95 | * send off another request to that location |
||
96 | * @param int $follow follow or not to follow or maximal number of redirects |
||
97 | * @return Request |
||
98 | 1 | */ |
|
99 | public function follow(int $follow) |
||
100 | 1 | { |
|
101 | 1 | $this->maxRedirects = abs($follow); |
|
102 | $this->followRedirects = $follow > 0; |
||
103 | return $this; |
||
104 | } |
||
105 | |||
106 | public function endCallback() |
||
110 | 2 | ||
111 | 2 | public function hasEndCallback() |
|
112 | 2 | { |
|
113 | 2 | return isset($this->endCallback); |
|
114 | 2 | } |
|
115 | 2 | ||
116 | 2 | public function uri($uri) |
|
121 | |||
122 | public function hasCert() |
||
123 | { |
||
124 | return isset($this->cert) && isset($this->key); |
||
125 | 2 | } |
|
126 | |||
127 | 2 | /** |
|
128 | 2 | * Use Client Side Cert Authentication |
|
129 | * @param string $key file path to client key |
||
130 | * @param string $cert file path to client cert |
||
131 | * @param string $passphrase for client key |
||
132 | * @param string $encoding default PEM |
||
133 | * @return Request |
||
134 | */ |
||
135 | 2 | public function cert($cert, $key, $passphrase = null, $encoding = 'PEM') |
|
136 | { |
||
137 | 2 | $this->cert = $cert; |
|
138 | 2 | $this->key = $key; |
|
139 | 2 | $this->passphrase = $passphrase; |
|
140 | $this->encoding = $encoding; |
||
141 | return $this; |
||
142 | } |
||
143 | |||
144 | public function body($payload, $mimeType = null) |
||
145 | { |
||
146 | $this->mime($mimeType); |
||
147 | 2 | $this->payload = $payload; |
|
148 | // Iserntentially don't call _serializePayload yet. Wait until |
||
149 | 2 | // we actually send off the request to convert payload to string. |
|
150 | 2 | // At that time, the `serialized_payload` is set accordingly. |
|
151 | return $this; |
||
152 | } |
||
153 | public function mime($mime) |
||
154 | { |
||
155 | if (empty($mime)) return $this; |
||
156 | $this->content_type = $this->expected_type = Mime::getFullMime($mime); |
||
157 | if ($this->isUpload()) { |
||
158 | $this->neverSerializePayload(); |
||
159 | } |
||
160 | return $this; |
||
161 | } |
||
162 | public function addHeader($header_name, $value) |
||
163 | { |
||
164 | $this->headers[$header_name] = $value; |
||
165 | return $this; |
||
166 | } |
||
167 | |||
168 | public function addHeaders(array $headers) |
||
169 | { |
||
170 | foreach ($headers as $header => $value) { |
||
171 | $this->addHeader($header, $value); |
||
172 | } |
||
173 | return $this; |
||
174 | } |
||
175 | public function expectsType($mime) |
||
176 | { |
||
177 | 1 | return $this->expects($mime); |
|
178 | } |
||
179 | 1 | public function sendType($mime) |
|
180 | 1 | { |
|
181 | 1 | return $this->contentType = $mime; |
|
182 | 1 | } |
|
183 | public function expects($mime) |
||
184 | { |
||
185 | if (empty($mime)) return $this; |
||
186 | $this->expected_type = Mime::getFullMime($mime); |
||
187 | return $this; |
||
188 | } |
||
189 | /** |
||
190 | * @param $field alias or field name |
||
191 | * @return bool|mixed |
||
192 | */ |
||
193 | public function getIni($field) |
||
194 | { |
||
195 | $alias = self::optionAlias($field); |
||
196 | 2 | return isset($this->options[$alias]) ? $this->options[$alias] : false; |
|
197 | } |
||
198 | 2 | ||
199 | /** |
||
200 | * @param $key |
||
201 | * @return mixed |
||
202 | */ |
||
203 | protected static function optionAlias($key) |
||
204 | { |
||
205 | 2 | $alias = false; |
|
206 | if (isset(self::$curlAlias[$key])) { |
||
207 | 2 | $alias = self::$curlAlias[$key]; |
|
208 | 2 | } elseif ((substr($key, 0, strlen('CURLOPT_')) == 'CURLOPT_') && defined($key)) { |
|
209 | 2 | $alias = $key; |
|
210 | } |
||
211 | return $alias; |
||
212 | } |
||
213 | |||
214 | public function addQuery($data) |
||
215 | { |
||
216 | 2 | if (!empty($data)) { |
|
217 | if (is_array($data)) { |
||
218 | 2 | $this->withURIQuery = http_build_query($data); |
|
219 | 2 | } else if (is_string($data)) { |
|
220 | 2 | $this->withURIQuery = $data; |
|
221 | 2 | } else { |
|
222 | 2 | throw new InvalidArgumentException('data must be array or string'); |
|
223 | 2 | } |
|
224 | 2 | } |
|
225 | return $this; |
||
226 | } |
||
227 | |||
228 | public function post($uri, $payload = null, array $options = array()) |
||
232 | |||
233 | 1 | /* no body */ |
|
234 | 1 | ||
235 | 1 | View Code Duplication | protected function ini($method, $url, $data , array $options = array()) |
236 | 1 | { |
|
237 | 1 | $options = array('url' => $url, 'method' => $method, 'data' => $data) + $options; |
|
238 | 1 | $this->addOptions($options); |
|
239 | |||
240 | return $this; |
||
241 | 1 | } |
|
242 | 1 | ||
243 | public function addOptions(array $options = array()) |
||
244 | { |
||
245 | $this->options = $options + $this->options; |
||
246 | $this->uri = $this->options['url']; |
||
247 | return $this; |
||
248 | } |
||
249 | |||
250 | function put($uri, $payload = null, array $options = array()) |
||
251 | 1 | { |
|
252 | return $this->ini(Http::PUT, $uri, $payload, $options); |
||
253 | 1 | } |
|
254 | |||
255 | function patch($uri, $payload = null, array $options = array()) |
||
256 | { |
||
257 | return $this->ini(Http::PATCH, $uri, $payload, $options); |
||
258 | } |
||
259 | |||
260 | public function get($uri, array $options = array()) |
||
261 | { |
||
262 | return $this->ini(Http::GET, $uri, array(), $options); |
||
263 | 2 | } |
|
264 | |||
265 | 2 | function options($uri, array $options = array()) |
|
266 | 2 | { |
|
267 | return $this->ini(Http::OPTIONS, $uri, array(), $options); |
||
268 | 2 | } |
|
269 | |||
270 | function head($uri, array $options = array()) |
||
274 | |||
275 | 2 | function delete($uri, array $options = array()) |
|
276 | { |
||
277 | 2 | return $this->ini(Http::DELETE, $uri, array(), $options); |
|
278 | 2 | } |
|
279 | 2 | ||
280 | function trace($uri, array $options = array()) |
||
284 | |||
285 | /** |
||
286 | * @return Response |
||
287 | */ |
||
288 | 1 | public function send() |
|
289 | { |
||
290 | 1 | if (!$this->hasInitialized) |
|
291 | $this->applyOptions(); |
||
292 | $response = $this->makeResponse(); |
||
293 | if ($this->endCallback) { |
||
294 | $func = $this->endCallback; |
||
295 | $func($response); |
||
296 | } |
||
297 | return $response; |
||
298 | } |
||
299 | 1 | ||
300 | public function applyOptions() |
||
301 | 1 | { |
|
302 | $curl = curl_init(); |
||
303 | $this->curlHandle = $curl; |
||
304 | $this->prepare(); |
||
305 | $this->hasInitialized = true; |
||
306 | return $this; |
||
307 | } |
||
308 | |||
309 | 1 | protected function prepare() |
|
310 | { |
||
311 | 1 | if (empty($this->options['url'])) { |
|
367 | |||
368 | public function onEnd(callable $callback) |
||
377 | |||
378 | 2 | protected static function filterAndRaw(array &$options) |
|
391 | |||
392 | public function makeResponse($isMultiCurl = false) |
||
405 | |||
406 | 1 | private static function log(Response $response) |
|
415 | } |
||
416 |
Only declaring a single property per statement allows you to later on add doc comments more easily.
It is also recommended by PSR2, so it is a common style that many people expect.