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 HttpRequest 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 HttpRequest, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
33 | class HttpRequest implements HttpRequestInterface, \ArrayAccess |
||
34 | { |
||
35 | /** |
||
36 | * @var array Contains the cleaned Parameters. |
||
37 | */ |
||
38 | private $post_parameters; |
||
|
|||
39 | |||
40 | /** |
||
41 | * @var array Contains the cleaned Parameters. |
||
42 | */ |
||
43 | private $get_parameters; |
||
44 | |||
45 | /** |
||
46 | * @var array Contains the cleaned Parameters. |
||
47 | */ |
||
48 | private $cookie_parameters; |
||
49 | |||
50 | /** |
||
51 | * @var The requestmethod. Possible values are GET, POST, PUT, DELETE. |
||
52 | */ |
||
53 | protected static $request_method; |
||
54 | |||
55 | /** |
||
56 | * @var string the base URL (protocol://server:port) |
||
57 | */ |
||
58 | protected static $baseURL; |
||
59 | |||
60 | /** |
||
61 | * @var object Object with pieces of informations about the target route. |
||
62 | */ |
||
63 | private $route; |
||
64 | |||
65 | /** |
||
66 | * Construct the Request Object. |
||
67 | * |
||
68 | * 1) Drop Superglobal $_REQUEST. Just hardcoded reminder for developers to not use it! |
||
69 | * 2) Additional Security Checks |
||
70 | * 3) Clear Array, Filter and Assign the $_REQUEST Global to it |
||
71 | * 4) Detect REST Tunneling through POST and set request_method accordingly |
||
72 | */ |
||
73 | public function __construct() |
||
108 | |||
109 | /** |
||
110 | * Returns the raw POST Parameters Array. |
||
111 | * Raw means: no validation, no filtering, no sanitization. |
||
112 | * |
||
113 | * @return array POST Parameters Array. |
||
114 | */ |
||
115 | public function getPost() |
||
119 | |||
120 | /** |
||
121 | * Returns the HTTP POST data in raw format via Stream. |
||
122 | * |
||
123 | * @return string HTTP POST data (raw). |
||
124 | */ |
||
125 | public function getPostRaw() |
||
129 | |||
130 | /** |
||
131 | * Returns the raw GET Parameters Array. |
||
132 | * Raw means: no validation, no filtering, no sanitization. |
||
133 | * |
||
134 | * @return array GET Parameters Array. |
||
135 | */ |
||
136 | public function getGet() |
||
140 | |||
141 | /** |
||
142 | * Returns the COOKIES Parameters Array. |
||
143 | * Raw means: no validation, no filtering, no sanitization. |
||
144 | * |
||
145 | * @return array COOKIES Parameters Array. |
||
146 | */ |
||
147 | public function getCookies() |
||
151 | |||
152 | public function getServer() |
||
156 | |||
157 | /** |
||
158 | * expectParameters. |
||
159 | * |
||
160 | * a) isset test - to determine if the parameter is incomming |
||
161 | * b) exception throwing - if parameter is not incomming, but expected |
||
162 | * |
||
163 | * @todo c) validation - validates the incomming parameter via rules |
||
164 | * |
||
165 | * $parameters array structure: |
||
166 | * $parameters = array( |
||
167 | * 'parametername' => array ( // parametername as key for rules array |
||
168 | * 'source', // (GET|POST) |
||
169 | * 'validation-rule' |
||
170 | * ); |
||
171 | * 'modulename' => array ('GET', 'string|lowercase') |
||
172 | * |
||
173 | * @example |
||
174 | * // parameter names only |
||
175 | * $this->expectParameters(array('modulename','language')); |
||
176 | * // parameters, one with rules |
||
177 | * // parameters, all with rules |
||
178 | * |
||
179 | * @param array $parameters |
||
180 | */ |
||
181 | public function expectParameters(array $parameters) |
||
182 | { |
||
183 | foreach ($parameters as $parameter => $array_or_parametername) { |
||
184 | /* |
||
185 | * check if we have some rules to process |
||
186 | */ |
||
187 | if (true === is_array($array_or_parametername)) { |
||
188 | $array_name = $array_or_parametername[0]; // GET|POST|COOKIE |
||
189 | #$validation_rules = $array_or_parametername[1]; // some validation commands |
||
190 | |||
191 | /* |
||
192 | * ISSET or Exception |
||
193 | */ |
||
194 | $this->expectParameter($parameter, $array_name); |
||
195 | |||
196 | /* |
||
197 | * VALID or Exception |
||
198 | */ |
||
199 | #$this->validateParameter($parameter, $validation_rules); |
||
200 | } else { // if(is_int($array_or_parametername)) |
||
201 | $this->expectParameter($array_or_parametername); |
||
202 | } |
||
203 | } |
||
204 | } |
||
205 | |||
206 | /** |
||
207 | * This method ensures that all the parameters you are expecting |
||
208 | * and which are required by your action are really incomming with the request. |
||
209 | * It's a multiple call to issetParameter(), with the difference, |
||
210 | * that it throws an Exception if not isset! |
||
211 | * |
||
212 | * a) isset test - to determine if the parameter is incomming |
||
213 | * b) exception throwing - if parameter is not incomming, but expected |
||
214 | * |
||
215 | * @param string $parameter |
||
216 | * @param string $array (GET|POST|COOKIE) |
||
217 | */ |
||
218 | public function expectParameter($parameter, $array = '') |
||
233 | |||
234 | /** |
||
235 | * isset, checks if a certain parameter exists in the parameters array. |
||
236 | * |
||
237 | * @param string $parameter Name of the Parameter |
||
238 | * @param string $array GET, POST, COOKIE. Default = GET. |
||
239 | * @param bool $where If set to true, method will return the name of the array the parameter was found in. |
||
240 | * |
||
241 | * @return string boolean string arrayname |
||
242 | */ |
||
243 | public function issetParameter($parameter, $array = 'GET', $where = false) |
||
268 | |||
269 | /** |
||
270 | * get, returns a certain parameter if existing. |
||
271 | * |
||
272 | * @param string $parameter Name of the Parameter |
||
273 | * @param string $array GET, POST, COOKIE. Default = POST. |
||
274 | * @param string $default You can set a default value. It's returned if parametername was not found. |
||
275 | * |
||
276 | * @return mixed data | null |
||
277 | */ |
||
278 | public function getParameter($parameter, $array = 'POST', $default = null) |
||
279 | { |
||
280 | /* |
||
281 | * check if the parameter exists in $array |
||
282 | * the third property of issetParameter is set to true, so that we get the full and correct array name back |
||
283 | */ |
||
284 | $parameter_array = $this->issetParameter($parameter, $array, true); |
||
285 | |||
286 | /* |
||
287 | * we use type hinting here to cast the string with array name to boolean |
||
288 | */ |
||
289 | if ((bool) $parameter_array === true) { |
||
290 | // this returns a value from the parameterarray |
||
291 | return $this->{mb_strtolower($parameter_array) . '_parameters'}[$parameter]; |
||
292 | } elseif ($default !== null) { |
||
293 | // this returns the default value,incomming via method property $default |
||
294 | return $default; |
||
295 | } else { |
||
296 | return; |
||
297 | } |
||
298 | } |
||
299 | |||
300 | /** |
||
301 | * set, returns a certain parameter if existing. |
||
302 | * |
||
303 | * @param string $parameter Name of the Parameter |
||
304 | * @param string $array G, P, C. Default = POST. |
||
305 | * |
||
306 | * @return mixed data | null |
||
307 | */ |
||
308 | public function setParameter($parameter, $array = 'POST') |
||
309 | { |
||
310 | if (true === $this->issetParameter($parameter, $array)) { |
||
311 | return $this->{mb_strtolower($array) . '_parameters'}[$parameter]; |
||
312 | } else { |
||
313 | return; |
||
314 | } |
||
315 | } |
||
316 | |||
317 | /** |
||
318 | * Shortcut to get a Parameter from $_POST. |
||
319 | * |
||
320 | * @param string $name Name of the Parameter |
||
321 | * |
||
322 | * @return mixed data | null |
||
323 | */ |
||
324 | public function getParameterFromPost($name) |
||
325 | { |
||
326 | return $this->getParameter($name, 'POST'); |
||
327 | } |
||
328 | |||
329 | /** |
||
330 | * Shortcut to get a Parameter from $_GET. |
||
331 | * |
||
332 | * @param string $name Name of the Parameter |
||
333 | * |
||
334 | * @return mixed data | null |
||
335 | */ |
||
336 | public function getParameterFromGet($name) |
||
337 | { |
||
338 | return $this->getParameter($name, 'GET'); |
||
339 | } |
||
340 | |||
341 | /** |
||
342 | * Shortcut to get a Parameter from $_SERVER. |
||
343 | * |
||
344 | * @param string $name Name of the Parameter |
||
345 | * |
||
346 | * @return mixed data | null |
||
347 | */ |
||
348 | public function getParameterFromServer($name) |
||
349 | { |
||
350 | if (in_array($name, array_keys($_SERVER), true)) { |
||
351 | return $_SERVER[$name]; |
||
352 | } else { |
||
353 | return; |
||
354 | } |
||
355 | } |
||
356 | |||
357 | /** |
||
358 | * Get previously set cookies. |
||
359 | * |
||
360 | * @param string $name Name of the Cookie |
||
361 | * |
||
362 | * @return Returns an associative array containing any previously set cookies. |
||
363 | */ |
||
364 | public function getParameterFromCookie($name) |
||
365 | { |
||
366 | if (isset($this->cookie_parameters[$name]) === true) { |
||
367 | return $this->cookie_parameters($name); |
||
368 | } |
||
369 | } |
||
370 | |||
371 | /** |
||
372 | * Get Value of a specific http-header. |
||
373 | * |
||
374 | * @param string $parameter Name of the Parameter |
||
375 | * |
||
376 | * @return string |
||
377 | */ |
||
378 | public static function getHeader($parameter) |
||
379 | { |
||
380 | $parameter = 'HTTP_' . mb_strtoupper(str_replace('-', '_', $parameter)); |
||
381 | |||
382 | if ($_SERVER[$parameter] !== null) { |
||
383 | return $_SERVER[$parameter]; |
||
384 | } |
||
385 | |||
386 | return; |
||
387 | } |
||
388 | |||
389 | /** |
||
390 | * Determine Type of Protocol for Webpaths (http/https) |
||
391 | * Get for $_SERVER['HTTPS']. |
||
392 | * |
||
393 | * @todo check $_SERVER['SSL_PROTOCOL'] + $_SERVER['HTTP_X_FORWARD_PROTO']? |
||
394 | * @todo check -> or $_SERVER['SSL_PROTOCOL'] |
||
395 | * |
||
396 | * @return string |
||
397 | */ |
||
398 | public static function getServerProtocol() |
||
399 | { |
||
400 | if (self::isSecure()) { |
||
401 | return 'https://'; |
||
402 | } else { |
||
403 | return 'http://'; |
||
404 | } |
||
405 | } |
||
406 | |||
407 | /** |
||
408 | * Determine Type of Protocol for Webpaths (http/https) |
||
409 | * Get for $_SERVER['HTTPS'] with boolean return value. |
||
410 | * |
||
411 | * @todo check about $_SERVER['SERVER_PORT'] == 443, is this always ssl then? |
||
412 | * |
||
413 | * @see $this->getServerProtocol() |
||
414 | * |
||
415 | * @return bool |
||
416 | */ |
||
417 | public static function isSecure() |
||
425 | |||
426 | /** |
||
427 | * Determine Port Number for Webpaths (http/https) |
||
428 | * Get for $_SERVER['SERVER_PORT'] and $_SERVER['SSL_PROTOCOL']. |
||
429 | * |
||
430 | * @return string |
||
431 | */ |
||
432 | private static function getServerPort() |
||
433 | { |
||
434 | // custom port |
||
435 | if (self::isSecure() === false and $_SERVER['SERVER_PORT'] !== 80) { |
||
436 | return ':' . $_SERVER['SERVER_PORT']; |
||
437 | } |
||
438 | |||
439 | // custom ssl port |
||
440 | if (self::isSecure() && $_SERVER['SERVER_PORT'] !== 443) { |
||
441 | return ':' . $_SERVER['SERVER_PORT']; |
||
442 | } |
||
443 | } |
||
444 | |||
445 | /** |
||
446 | * Returns the base of the current URL |
||
447 | * Format: protocol://server:port. |
||
448 | * |
||
449 | * The "template constant"" WWW_ROOT is later defined as getBaseURL |
||
450 | * <form action="<?=WWW_ROOT?>/news/7" method="DELETE"/> |
||
451 | * |
||
452 | * @return string |
||
453 | */ |
||
454 | public static function getBaseURL() |
||
455 | { |
||
456 | if (empty(self::$baseURL)) { |
||
457 | // 1. Determine Protocol |
||
458 | self::$baseURL = self::getServerProtocol(); |
||
459 | |||
460 | // 2. Determine Servername |
||
461 | self::$baseURL .= self::getServerName(); |
||
462 | |||
463 | // 3. Determine Port |
||
464 | self::$baseURL .= self::getServerPort(); |
||
465 | } |
||
466 | |||
467 | return self::$baseURL; |
||
468 | } |
||
469 | |||
470 | /** |
||
471 | * Get $_SERVER SERVER_NAME. |
||
472 | * |
||
473 | * @return string The name of the server host under which the current script is executing. |
||
474 | */ |
||
475 | public static function getServerName() |
||
479 | |||
480 | /** |
||
481 | * Get $_SERVER REQUEST_URI. |
||
482 | * |
||
483 | * @return string The URI which was given in order to access this page; for instance, '/index.html'. |
||
484 | */ |
||
485 | public static function getRequestURI() |
||
486 | { |
||
487 | if ($_SERVER['REQUEST_URI'] !== null) { |
||
488 | return urldecode(mb_strtolower($_SERVER['REQUEST_URI'])); |
||
489 | } |
||
490 | |||
491 | // MS-IIS and ISAPI Rewrite Filter (only on windows platforms) |
||
492 | if (isset($_SERVER['HTTP_X_REWRITE_URL']) and stripos(PHP_OS, 'WIN') !== false) { |
||
493 | return urldecode(mb_strtolower($_SERVER['HTTP_X_REWRITE_URL'])); |
||
494 | } |
||
495 | |||
496 | $p = $_SERVER['SCRIPT_NAME']; |
||
497 | if ($_SERVER['QUERY_STRING'] !== null) { |
||
498 | $p .= '?' . $_SERVER['QUERY_STRING']; |
||
499 | } |
||
500 | |||
501 | return urldecode(mb_strtolower($p)); |
||
502 | } |
||
503 | |||
504 | /** |
||
505 | * Get $_SERVER REMOTE_URI. |
||
506 | * |
||
507 | * @return string |
||
508 | */ |
||
509 | public static function getRemoteURI() |
||
513 | |||
514 | /** |
||
515 | * Get $_SERVER QUERY_STRING. |
||
516 | * |
||
517 | * @return string The query string via which the page was accessed. |
||
518 | */ |
||
519 | public static function getQueryString() |
||
523 | |||
524 | /** |
||
525 | * Get the current Url. |
||
526 | * |
||
527 | * @return string Returns the current URL, which is the HOST + REQUEST_URI, without index.php. |
||
528 | */ |
||
529 | public static function getCurrentUrl() |
||
533 | |||
534 | /** |
||
535 | * Get IP = $_SERVER REMOTE_ADDRESS. |
||
536 | * |
||
537 | * @return string The IP/HOST from which the user is viewing the current page. |
||
538 | */ |
||
539 | public static function getRemoteAddress() |
||
540 | { |
||
541 | $ip = null; |
||
542 | |||
543 | if ($_SERVER['HTTP_CLIENT_IP'] !== null) { |
||
544 | $ip = $_SERVER['HTTP_CLIENT_IP']; |
||
545 | } elseif ($_SERVER['HTTP_X_FORWARDED_FOR'] !== null) { |
||
546 | $ip = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']); |
||
547 | $ip = array_pop($ip); |
||
548 | } elseif ($_SERVER['HTTP_X_REAL_IP'] !== null) { |
||
549 | // NGINX - with natural russian config passes the IP as REAL_IP |
||
550 | $ip = $_SERVER['HTTP_X_REAL_IP']; |
||
551 | } elseif ($_SERVER['HTTP_FORWARDED_FOR'] !== null) { |
||
552 | $ip = $_SERVER['HTTP_FORWARDED_FOR']; |
||
553 | } elseif ($_SERVER['HTTP_CLIENT_IP'] !== null) { |
||
554 | $ip = $_SERVER['HTTP_CLIENT_IP']; |
||
555 | } elseif ($_SERVER['HTTP_X_CLUSTER_CLIENT_IP'] !== null) { |
||
556 | $ip = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP']; |
||
557 | } elseif ($_SERVER['HTTP_FORWARDED'] !== null) { |
||
558 | $ip = $_SERVER['HTTP_FORWARDED']; |
||
559 | } elseif ($_SERVER['HTTP_X_FORWARDED'] !== null) { |
||
560 | $ip = $_SERVER['HTTP_X_FORWARDED']; |
||
561 | } else { |
||
562 | $ip = $_SERVER['REMOTE_ADDR']; |
||
563 | } |
||
564 | |||
565 | if (true === self::validateIP($ip)) { |
||
566 | return $ip; |
||
567 | } |
||
568 | } |
||
569 | |||
570 | /** |
||
571 | * Returns the User Agent ($_SERVER HTTP_USER_AGENT). |
||
572 | * |
||
573 | * @return string String denoting the user agent being which is accessing the page. |
||
574 | */ |
||
575 | View Code Duplication | public static function getUserAgent() |
|
582 | |||
583 | /** |
||
584 | * Returns the Referrer ($_SERVER HTTP_REFERER). |
||
585 | * |
||
586 | * @return string The address of the page (if any) which referred the user agent to the current page. |
||
587 | */ |
||
588 | View Code Duplication | public static function getReferer() |
|
589 | { |
||
590 | if ($_SERVER['HTTP_REFERER'] !== null) { |
||
591 | $refr = strip_tags($_SERVER['HTTP_REFERER']); |
||
592 | $refr_filtered = filter_var($refr, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH); |
||
593 | } |
||
594 | |||
595 | return $refr_filtered; |
||
596 | } |
||
597 | |||
598 | /** |
||
599 | * Validates a given IP. |
||
600 | * |
||
601 | * @see getRemoteAddress() |
||
602 | * |
||
603 | * @param string $ip The IP address to validate. |
||
604 | * @param boolen $ipv6 Boolean true, activates ipv6 checking. |
||
605 | * |
||
606 | * @return bool True, if IP is valid. False, otherwise. |
||
607 | */ |
||
608 | public static function validateIP($ip, $ipv6 = false) |
||
620 | |||
621 | /** |
||
622 | * Get Route returns the static \Koch\Router\TargetRoute object. |
||
623 | * |
||
624 | * With php onbord tools you can't debug this. |
||
625 | * Please use \Koch\Debug\Debug:firebug($route); to debug. |
||
626 | * Firebug uses Reflection to show the static properties and values. |
||
627 | * |
||
628 | * @return object \Koch\Router\TargetRoute |
||
629 | */ |
||
630 | public function getRoute() |
||
634 | |||
635 | /** |
||
636 | * Set Route Object. |
||
637 | * |
||
638 | * @param $route \Koch\Router\TargetRoute |
||
639 | */ |
||
640 | public function setRoute(\Koch\Router\TargetRoute $route) |
||
644 | |||
645 | /** |
||
646 | * REST Tunneling Detection. |
||
647 | * |
||
648 | * This method takes care for REST (Representational State Transfer) |
||
649 | * by tunneling PUT, DELETE through POST (principal of least power). |
||
650 | * Ok, this is faked or spoofed REST, but lowers the power of POST |
||
651 | * and it's short and nice in html forms. |
||
652 | * |
||
653 | * @todo consider allowing 'GET' through POST? |
||
654 | * |
||
655 | * @see https://wiki.nbic.nl/index.php/REST.inc |
||
656 | * @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html |
||
657 | */ |
||
658 | public function detectRESTTunneling() |
||
659 | { |
||
660 | $allowed_rest_methodnames = ['DELETE', 'PUT']; |
||
661 | |||
662 | // request_method has to be POST AND GET has to to have the method GET |
||
663 | if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST' |
||
664 | and $this->issetParameter('GET', 'method')) { |
||
665 | // check for allowed rest commands |
||
666 | if (in_array(mb_strtoupper($_GET['method']), $allowed_rest_methodnames, true)) { |
||
667 | // set the internal (tunneled) method as new REQUEST_METHOD |
||
668 | self::setRequestMethod($_GET['method']); |
||
669 | |||
670 | // unset the tunneled method |
||
671 | unset($_GET['method']); |
||
672 | |||
673 | // now strip the methodname from the QUERY_STRING and rebuild REQUEST_URI |
||
674 | |||
675 | // rebuild the QUERY_STRING from $_GET |
||
676 | $_SERVER['QUERY_STRING'] = http_build_query($_GET); |
||
677 | // rebuild the REQUEST_URI |
||
678 | $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME']; |
||
679 | // append QUERY_STRING to REQUEST_URI if not empty |
||
680 | if ($_SERVER['QUERY_STRING'] !== '') { |
||
681 | $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
||
682 | } |
||
683 | } else { |
||
684 | throw new \Koch\Exception\Exception( |
||
685 | 'Request Method failure. You tried to tunnel a ' . $this->getParameter('method', 'GET') |
||
686 | . ' request through an HTTP POST request.' |
||
687 | ); |
||
688 | } |
||
689 | } elseif (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'GET' |
||
690 | and $this->issetParameter('GET', 'method')) { |
||
691 | // NOPE, there's no tunneling through GET! |
||
692 | throw new \Koch\Exception\Exception( |
||
693 | 'Request Method failure. You tried to tunnel a ' . $this->getParameter('method', 'GET') |
||
694 | . ' request through an HTTP GET request.' |
||
695 | ); |
||
696 | } |
||
697 | } |
||
698 | |||
699 | /** |
||
700 | * Get the REQUEST METHOD (GET, HEAD, POST, PUT, DELETE). |
||
701 | * |
||
702 | * HEAD request is returned internally as GET. |
||
703 | * The internally set request_method (PUT or DELETE) is returned first, |
||
704 | * because we might have a REST-tunneling. |
||
705 | * |
||
706 | * @return string request method |
||
707 | */ |
||
708 | public static function getRequestMethod() |
||
728 | |||
729 | /** |
||
730 | * Set the REQUEST_METHOD. |
||
731 | */ |
||
732 | public static function setRequestMethod($method) |
||
736 | |||
737 | /** |
||
738 | * Checks if a ajax(xhr)-request is given, |
||
739 | * by checking X-Requested-With Header for XMLHttpRequest. |
||
740 | * |
||
741 | * @return bool true if the request is an XMLHttpRequest, false otherwise |
||
742 | */ |
||
743 | public static function isAjax() |
||
744 | { |
||
745 | if (isset($_SERVER['X-Requested-With']) and $_SERVER['X-Requested-With'] === 'XMLHttpRequest') { |
||
746 | return true; |
||
747 | } elseif (isset($_SERVER['HTTP_X_REQUESTED_WITH']) and $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest') { |
||
748 | return true; |
||
749 | } else { |
||
750 | return false; |
||
751 | } |
||
752 | } |
||
753 | |||
754 | /** |
||
755 | * is(GET|POST|PUT|DELETE) |
||
756 | * Boolean "getters" for several HttpRequest Types. |
||
757 | * This makes request type checking in controllers easy. |
||
758 | */ |
||
759 | |||
760 | /** |
||
761 | * Determines, if request is of type GET. |
||
762 | * |
||
763 | * @return bool |
||
764 | */ |
||
765 | public function isGet() |
||
769 | |||
770 | /** |
||
771 | * Determines, if request is of type POST. |
||
772 | * |
||
773 | * @return bool |
||
774 | */ |
||
775 | public function isPost() |
||
779 | |||
780 | /** |
||
781 | * Determines, if request is of type PUT. |
||
782 | * |
||
783 | * @return bool |
||
784 | */ |
||
785 | public function isPut() |
||
786 | { |
||
787 | return self::$request_method === 'PUT'; |
||
788 | } |
||
789 | |||
790 | /** |
||
791 | * Determines, if request is of type DELETE. |
||
792 | * |
||
793 | * @return bool |
||
794 | */ |
||
795 | public function isDelete() |
||
796 | { |
||
797 | return self::$request_method === 'DELETE'; |
||
798 | } |
||
799 | |||
800 | /** |
||
801 | * Implementation of SPL ArrayAccess |
||
802 | * only offsetExists and offsetGet are relevant. |
||
803 | */ |
||
804 | public function offsetExists($offset) |
||
808 | |||
809 | public function offsetGet($offset) |
||
813 | |||
814 | // not setting request vars |
||
815 | public function offsetSet($offset, $value) |
||
819 | |||
820 | // not unsetting request vars |
||
821 | public function offsetUnset($offset) |
||
825 | } |
||
826 |
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.