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:
| 1 | <?php |
||
| 35 | class Varnish extends HttpProxyClient implements BanCapable, PurgeCapable, RefreshCapable, TagCapable |
||
| 36 | { |
||
| 37 | const HTTP_METHOD_BAN = 'BAN'; |
||
| 38 | const HTTP_METHOD_PURGE = 'PURGE'; |
||
| 39 | const HTTP_METHOD_REFRESH = 'GET'; |
||
| 40 | const HTTP_HEADER_HOST = 'X-Host'; |
||
| 41 | const HTTP_HEADER_URL = 'X-Url'; |
||
| 42 | const HTTP_HEADER_CONTENT_TYPE = 'X-Content-Type'; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Default name of the header used to invalidate content with specific tags. |
||
| 46 | * |
||
| 47 | * This happens to be the same as TagHeaderFormatter::DEFAULT_HEADER_NAME |
||
| 48 | * but does not technically need to be the same. |
||
| 49 | * |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | const DEFAULT_HTTP_HEADER_CACHE_TAGS = 'X-Cache-Tags'; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * {@inheritdoc} |
||
| 56 | */ |
||
| 57 | 4 | public function invalidateTags(array $tags) |
|
| 58 | { |
||
| 59 | 4 | $tagMode = $this->options['tag_mode']; |
|
| 60 | $escapedTags = array_map('preg_quote', $this->escapeTags($tags)); |
||
| 61 | 4 | ||
| 62 | if ($tagMode === 'purge_single') { |
||
| 63 | $elems = 1; |
||
| 64 | } elseif (mb_strlen(implode('|', $escapedTags)) >= $this->options['header_length']) { |
||
| 65 | /* |
||
| 66 | 1 | * estimate the amount of tags to invalidate by dividing the max |
|
| 67 | 1 | * header length by the largest tag (minus 1 for the implode character) |
|
| 68 | 1 | */ |
|
| 69 | 3 | $tagsize = max(array_map('mb_strlen', $escapedTags)); |
|
| 70 | $elems = floor($this->options['header_length'] / ($tagsize - 1)) ?: 1; |
||
| 71 | } else { |
||
| 72 | 4 | $elems = count($escapedTags); |
|
| 73 | 4 | } |
|
| 74 | 4 | ||
| 75 | 4 | foreach (array_chunk($escapedTags, $elems) as $tagchunk) { |
|
| 76 | if ($tagMode === 'ban') { |
||
| 77 | 4 | $tagExpression = sprintf('(%s)(,.+)?$', implode('|', $tagchunk)); |
|
| 78 | $this->ban([$this->options['tags_header'] => $tagExpression]); |
||
| 79 | } else { |
||
| 80 | $this->queueRequest( |
||
| 81 | self::HTTP_METHOD_PURGE, |
||
| 82 | '/', |
||
| 83 | 10 | [$this->options['tags_header'] => implode(' ', $tagchunk)], |
|
| 84 | false |
||
| 85 | 10 | ); |
|
| 86 | 10 | } |
|
| 87 | } |
||
| 88 | 10 | ||
| 89 | return $this; |
||
| 90 | 10 | } |
|
| 91 | |||
| 92 | 10 | /** |
|
| 93 | * {@inheritdoc} |
||
| 94 | */ |
||
| 95 | public function ban(array $headers) |
||
| 96 | { |
||
| 97 | $headers = array_merge( |
||
| 98 | 4 | $this->options['default_ban_headers'], |
|
| 99 | $headers |
||
| 100 | 4 | ); |
|
| 101 | 2 | ||
| 102 | 1 | $this->queueRequest(self::HTTP_METHOD_BAN, '/', $headers, false); |
|
| 103 | |||
| 104 | 1 | return $this; |
|
| 105 | 1 | } |
|
| 106 | |||
| 107 | /** |
||
| 108 | 3 | * {@inheritdoc} |
|
| 109 | 3 | */ |
|
| 110 | public function banPath($path, $contentType = null, $hosts = null) |
||
| 111 | 3 | { |
|
| 112 | 2 | if (is_array($hosts)) { |
|
| 113 | 2 | if (!count($hosts)) { |
|
| 114 | 3 | throw new InvalidArgumentException('Either supply a list of hosts or null, but not an empty array.'); |
|
| 115 | 1 | } |
|
| 116 | 1 | $hosts = '^('.implode('|', $hosts).')$'; |
|
| 117 | } |
||
| 118 | 3 | ||
| 119 | $headers = [ |
||
| 120 | self::HTTP_HEADER_URL => $path, |
||
| 121 | ]; |
||
| 122 | |||
| 123 | if ($contentType) { |
||
|
|
|||
| 124 | 4 | $headers[self::HTTP_HEADER_CONTENT_TYPE] = $contentType; |
|
| 125 | } |
||
| 126 | 4 | if ($hosts) { |
|
| 127 | $headers[self::HTTP_HEADER_HOST] = $hosts; |
||
| 128 | 4 | } |
|
| 129 | |||
| 130 | return $this->ban($headers); |
||
| 131 | } |
||
| 132 | |||
| 133 | /** |
||
| 134 | 3 | * {@inheritdoc} |
|
| 135 | */ |
||
| 136 | 3 | public function purge($url, array $headers = []) |
|
| 142 | |||
| 143 | /** |
||
| 144 | * {@inheritdoc} |
||
| 145 | 19 | */ |
|
| 146 | View Code Duplication | public function refresh($url, array $headers = []) |
|
| 153 | 19 | ||
| 154 | 19 | /** |
|
| 155 | * {@inheritdoc} |
||
| 156 | 19 | */ |
|
| 157 | 19 | protected function configureOptions() |
|
| 181 | } |
||
| 182 |
In PHP, under loose comparison (like
==, or!=, orswitchconditions), values of different types might be equal.For
stringvalues, the empty string''is a special case, in particular the following results might be unexpected: