|
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 |
|
$escapedTags = array_map('preg_quote', $this->escapeTags($tags)); |
|
68
|
|
|
|
|
69
|
3 |
|
$chunkSize = $this->determineTagsPerHeader($escapedTags, 'ban' === $tagMode ? '|' : ' '); |
|
70
|
|
|
|
|
71
|
|
|
foreach (array_chunk($escapedTags, $chunkSize) as $tagchunk) { |
|
72
|
4 |
|
if ('ban' === $tagMode) { |
|
73
|
4 |
|
$this->invalidateByBan($tagchunk); |
|
74
|
4 |
|
} else { |
|
75
|
|
|
$this->invalidateByPurgekeys($tagchunk); |
|
76
|
|
|
} |
|
77
|
4 |
|
} |
|
78
|
|
|
|
|
79
|
|
|
return $this; |
|
80
|
|
|
} |
|
81
|
|
|
|
|
82
|
|
|
private function invalidateByBan(array $tagchunk) |
|
83
|
10 |
|
{ |
|
84
|
|
|
$tagExpression = sprintf('(^|,)(%s)(,|$)', implode('|', $tagchunk)); |
|
85
|
10 |
|
$this->ban([$this->options['tags_header'] => $tagExpression]); |
|
86
|
10 |
|
} |
|
87
|
10 |
|
|
|
88
|
|
|
private function invalidateByPurgekeys(array $tagchunk) |
|
89
|
|
|
{ |
|
90
|
10 |
|
$this->queueRequest( |
|
91
|
|
|
self::HTTP_METHOD_PURGEKEYS, |
|
92
|
10 |
|
'/', |
|
93
|
|
|
[$this->options['tags_header'] => implode(' ', $tagchunk)], |
|
94
|
|
|
false |
|
95
|
|
|
); |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
4 |
|
/** |
|
99
|
|
|
* {@inheritdoc} |
|
100
|
4 |
|
*/ |
|
101
|
2 |
|
public function ban(array $headers) |
|
102
|
1 |
|
{ |
|
103
|
|
|
$headers = array_merge( |
|
104
|
1 |
|
$this->options['default_ban_headers'], |
|
105
|
|
|
$headers |
|
106
|
|
|
); |
|
107
|
|
|
|
|
108
|
3 |
|
$this->queueRequest(self::HTTP_METHOD_BAN, '/', $headers, false); |
|
109
|
|
|
|
|
110
|
|
|
return $this; |
|
111
|
3 |
|
} |
|
112
|
2 |
|
|
|
113
|
|
|
/** |
|
114
|
3 |
|
* {@inheritdoc} |
|
115
|
1 |
|
*/ |
|
116
|
|
|
public function banPath($path, $contentType = null, $hosts = null) |
|
117
|
|
|
{ |
|
118
|
3 |
|
if (is_array($hosts)) { |
|
119
|
|
|
if (!count($hosts)) { |
|
120
|
|
|
throw new InvalidArgumentException('Either supply a list of hosts or null, but not an empty array.'); |
|
121
|
|
|
} |
|
122
|
|
|
$hosts = '^('.implode('|', $hosts).')$'; |
|
123
|
|
|
} |
|
124
|
4 |
|
|
|
125
|
|
|
$headers = [ |
|
126
|
4 |
|
self::HTTP_HEADER_URL => $path, |
|
127
|
|
|
]; |
|
128
|
4 |
|
|
|
129
|
|
|
if ($contentType) { |
|
|
|
|
|
|
130
|
|
|
$headers[self::HTTP_HEADER_CONTENT_TYPE] = $contentType; |
|
131
|
|
|
} |
|
132
|
|
|
if ($hosts) { |
|
|
|
|
|
|
133
|
|
|
$headers[self::HTTP_HEADER_HOST] = $hosts; |
|
134
|
3 |
|
} |
|
135
|
|
|
|
|
136
|
3 |
|
return $this->ban($headers); |
|
137
|
3 |
|
} |
|
138
|
|
|
|
|
139
|
3 |
|
/** |
|
140
|
|
|
* {@inheritdoc} |
|
141
|
|
|
*/ |
|
142
|
|
|
public function purge($url, array $headers = []) |
|
143
|
|
|
{ |
|
144
|
|
|
$this->queueRequest(self::HTTP_METHOD_PURGE, $url, $headers); |
|
145
|
19 |
|
|
|
146
|
|
|
return $this; |
|
147
|
19 |
|
} |
|
148
|
19 |
|
|
|
149
|
19 |
|
/** |
|
150
|
19 |
|
* {@inheritdoc} |
|
151
|
|
|
*/ |
|
152
|
|
View Code Duplication |
public function refresh($url, array $headers = []) |
|
|
|
|
|
|
153
|
19 |
|
{ |
|
154
|
19 |
|
$headers = array_merge($headers, ['Cache-Control' => 'no-cache']); |
|
155
|
|
|
$this->queueRequest(self::HTTP_METHOD_REFRESH, $url, $headers); |
|
156
|
19 |
|
|
|
157
|
19 |
|
return $this; |
|
158
|
19 |
|
} |
|
159
|
|
|
|
|
160
|
19 |
|
/** |
|
161
|
|
|
* {@inheritdoc} |
|
162
|
19 |
|
*/ |
|
163
|
|
|
protected function configureOptions() |
|
164
|
19 |
|
{ |
|
165
|
|
|
$resolver = parent::configureOptions(); |
|
166
|
|
|
$resolver->setDefaults([ |
|
167
|
|
|
'tags_header' => self::DEFAULT_HTTP_HEADER_CACHE_TAGS, |
|
168
|
|
|
'tag_mode' => 'ban', |
|
169
|
|
|
'header_length' => 7500, |
|
170
|
|
|
'default_ban_headers' => [], |
|
171
|
|
|
]); |
|
172
|
|
|
// tag_mode options: 'ban' or 'purgekeys' |
|
173
|
|
|
$resolver->setAllowedValues('tag_mode', ['ban', 'purgekeys']); |
|
174
|
|
|
$resolver->setNormalizer('default_ban_headers', function ($resolver, $specified) { |
|
175
|
|
|
return array_merge( |
|
176
|
|
|
[ |
|
177
|
|
|
self::HTTP_HEADER_HOST => self::REGEX_MATCH_ALL, |
|
178
|
|
|
self::HTTP_HEADER_URL => self::REGEX_MATCH_ALL, |
|
179
|
|
|
self::HTTP_HEADER_CONTENT_TYPE => self::REGEX_MATCH_ALL, |
|
180
|
|
|
], |
|
181
|
|
|
$specified |
|
182
|
|
|
); |
|
183
|
|
|
}); |
|
184
|
|
|
|
|
185
|
|
|
return $resolver; |
|
186
|
|
|
} |
|
187
|
|
|
} |
|
188
|
|
|
|
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: