Completed
Pull Request — master (#332)
by André
02:44
created

Varnish::banTagChunk()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 1
cts 1
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
crap 1
1
<?php
2
3
/*
4
 * This file is part of the FOSHttpCache package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\HttpCache\ProxyClient;
13
14
use FOS\HttpCache\Exception\InvalidArgumentException;
15
use FOS\HttpCache\ProxyClient\Invalidation\BanCapable;
16
use FOS\HttpCache\ProxyClient\Invalidation\PurgeCapable;
17
use FOS\HttpCache\ProxyClient\Invalidation\RefreshCapable;
18
use FOS\HttpCache\ProxyClient\Invalidation\TagCapable;
19
20
/**
21
 * Varnish HTTP cache invalidator.
22
 *
23
 * Additional constructor options:
24
 * - tags_header         Header for sending tag invalidation requests to
25
 *                       Varnish, defaults to X-Cache-Tags
26
 * - header_length       Maximum header length when invalidating tags. If there
27
 *                       are more tags to invalidate than fit into the header,
28
 *                       the invalidation request is split into several requests.
29
 *                       Defaults to 7500
30
 * - default_ban_headers Map of header name => header value that have to be set
31
 *                       on each ban request, merged with the built-in headers
32
 *
33
 * @author David de Boer <[email protected]>
34
 */
35
class Varnish extends HttpProxyClient implements BanCapable, PurgeCapable, RefreshCapable, TagCapable
36
{
37
    const HTTP_METHOD_BAN = 'BAN';
38
39
    const HTTP_METHOD_PURGE = 'PURGE';
40
41
    const HTTP_METHOD_PURGEKEYS = 'PURGEKEYS';
42
43
    const HTTP_METHOD_REFRESH = 'GET';
44
45
    const HTTP_HEADER_HOST = 'X-Host';
46
47
    const HTTP_HEADER_URL = 'X-Url';
48
49
    const HTTP_HEADER_CONTENT_TYPE = 'X-Content-Type';
50
51
    /**
52
     * Default name of the header used to invalidate content with specific tags.
53
     *
54
     * This happens to be the same as TagHeaderFormatter::DEFAULT_HEADER_NAME
55
     * but does not technically need to be the same.
56
     *
57 4
     * @var string
58
     */
59 4
    const DEFAULT_HTTP_HEADER_CACHE_TAGS = 'X-Cache-Tags';
60
61 4
    /**
62
     * {@inheritdoc}
63
     */
64
    public function invalidateTags(array $tags)
65
    {
66 1
        $tagMode = $this->options['tag_mode'];
67 1
        $invalidationMethod = "{$tagMode}TagChunk";
68
        $escapedTags = array_map('preg_quote', $this->escapeTags($tags));
69 3
70
        $chunkSize = $this->determineTagsPerHeader($escapedTags, 'ban' === $tagMode ? '|' : ' ');
71
72 4
        foreach (array_chunk($escapedTags, $chunkSize) as $tagchunk) {
73 4
            $this->$invalidationMethod($tagchunk);
74 4
        }
75
76
        return $this;
77 4
    }
78
79
    private function banTagChunk(array $tagchunk)
80
    {
81
        $tagExpression = sprintf('(^|,)(%s)(,|$)', implode('|', $tagchunk));
82
        $this->ban([$this->options['tags_header'] => $tagExpression]);
83 10
    }
84
85 10
    private function purgekeysTagChunk(array $tagchunk)
86 10
    {
87 10
        $this->queueRequest(
88
            self::HTTP_METHOD_PURGEKEYS,
89
            '/',
90 10
            [$this->options['tags_header'] => implode(' ', $tagchunk)],
91
            false
92 10
        );
93
    }
94
95
    /**
96
     * {@inheritdoc}
97
     */
98 4
    public function ban(array $headers)
99
    {
100 4
        $headers = array_merge(
101 2
            $this->options['default_ban_headers'],
102 1
            $headers
103
        );
104 1
105
        $this->queueRequest(self::HTTP_METHOD_BAN, '/', $headers, false);
106
107
        return $this;
108 3
    }
109
110
    /**
111 3
     * {@inheritdoc}
112 2
     */
113
    public function banPath($path, $contentType = null, $hosts = null)
114 3
    {
115 1
        if (is_array($hosts)) {
116
            if (!count($hosts)) {
117
                throw new InvalidArgumentException('Either supply a list of hosts or null, but not an empty array.');
118 3
            }
119
            $hosts = '^('.implode('|', $hosts).')$';
120
        }
121
122
        $headers = [
123
            self::HTTP_HEADER_URL => $path,
124 4
        ];
125
126 4
        if ($contentType) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $contentType of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
127
            $headers[self::HTTP_HEADER_CONTENT_TYPE] = $contentType;
128 4
        }
129
        if ($hosts) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $hosts of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
130
            $headers[self::HTTP_HEADER_HOST] = $hosts;
131
        }
132
133
        return $this->ban($headers);
134 3
    }
135
136 3
    /**
137 3
     * {@inheritdoc}
138
     */
139 3
    public function purge($url, array $headers = [])
140
    {
141
        $this->queueRequest(self::HTTP_METHOD_PURGE, $url, $headers);
142
143
        return $this;
144
    }
145 19
146
    /**
147 19
     * {@inheritdoc}
148 19
     */
149 19 View Code Duplication
    public function refresh($url, array $headers = [])
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
150 19
    {
151
        $headers = array_merge($headers, ['Cache-Control' => 'no-cache']);
152
        $this->queueRequest(self::HTTP_METHOD_REFRESH, $url, $headers);
153 19
154 19
        return $this;
155
    }
156 19
157 19
    /**
158 19
     * {@inheritdoc}
159
     */
160 19
    protected function configureOptions()
161
    {
162 19
        $resolver = parent::configureOptions();
163
        $resolver->setDefaults([
164 19
            'tags_header' => self::DEFAULT_HTTP_HEADER_CACHE_TAGS,
165
            'tag_mode' => 'ban',
166
            'header_length' => 7500,
167
            'default_ban_headers' => [],
168
        ]);
169
        // tag_mode options: 'ban' or 'purgekeys'
170
        $resolver->setAllowedValues('tag_mode', ['ban', 'purgekeys']);
171
        $resolver->setNormalizer('default_ban_headers', function ($resolver, $specified) {
172
            return array_merge(
173
                [
174
                    self::HTTP_HEADER_HOST => self::REGEX_MATCH_ALL,
175
                    self::HTTP_HEADER_URL => self::REGEX_MATCH_ALL,
176
                    self::HTTP_HEADER_CONTENT_TYPE => self::REGEX_MATCH_ALL,
177
                ],
178
                $specified
179
            );
180
        });
181
182
        return $resolver;
183
    }
184
}
185