Passed
Pull Request — master (#514)
by Fabien
10:39
created

MultiplexerClient   A

Complexity

Total Complexity 15

Size/Duplication

Total Lines 158
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 30
c 1
b 0
f 0
dl 0
loc 158
ccs 38
cts 38
cp 1
rs 10
wmc 15

10 Methods

Rating   Name   Duplication   Size   Complexity  
A flush() 0 8 2
A banPath() 0 5 1
A getProxyClients() 0 6 1
A __construct() 0 12 4
A purge() 0 5 1
A ban() 0 5 1
A invoke() 0 4 2
A refresh() 0 5 1
A clear() 0 5 1
A invalidateTags() 0 5 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\ExceptionCollection;
15
use FOS\HttpCache\Exception\InvalidArgumentException;
16
use FOS\HttpCache\ProxyClient\Invalidation\BanCapable;
17
use FOS\HttpCache\ProxyClient\Invalidation\ClearCapable;
18
use FOS\HttpCache\ProxyClient\Invalidation\PurgeCapable;
19
use FOS\HttpCache\ProxyClient\Invalidation\RefreshCapable;
20
use FOS\HttpCache\ProxyClient\Invalidation\TagCapable;
21
22
/**
23
 * This class forwards invalidation to all attached clients.
24
 *
25
 * @author Emanuele Panzeri <[email protected]>
26
 */
27
class MultiplexerClient implements BanCapable, PurgeCapable, RefreshCapable, TagCapable, ClearCapable
28
{
29
    /**
30
     * @var ProxyClient[]
31
     */
32
    private $proxyClients;
33
34
    /**
35
     * MultiplexerClient constructor.
36
     *
37
     * @param ProxyClient[] $proxyClients The list of Proxy clients
38
     */
39 9
    public function __construct(array $proxyClients)
40
    {
41 9
        foreach ($proxyClients as $proxyClient) {
42 9
            if (!$proxyClient instanceof ProxyClient) {
43 2
                throw new InvalidArgumentException(
44
                    'Expected ProxyClientInterface, got: '.
45 2
                    (is_object($proxyClient) ? get_class($proxyClient) : gettype($proxyClient))
46
                );
47
            }
48
        }
49
50 7
        $this->proxyClients = $proxyClients;
51 7
    }
52
53
    /**
54
     * Forwards to all clients.
55
     *
56
     * @param array $headers HTTP headers that path must match to be banned
57
     *
58
     * @return $this
59
     */
60 1
    public function ban(array $headers)
61
    {
62 1
        $this->invoke(BanCapable::class, 'ban', [$headers]);
63
64 1
        return $this;
65
    }
66
67
    /**
68
     * Forwards to all clients.
69
     *
70
     * @param string       $path        Regular expression pattern for URI to invalidate
71
     * @param string       $contentType Regular expression pattern for the content type to limit banning, for instance
72
     *                                  'text'
73
     * @param array|string $hosts       Regular expression of a host name or list of exact host names to limit banning
74
     *
75
     * @return $this
76
     */
77 1
    public function banPath($path, $contentType = null, $hosts = null)
78
    {
79 1
        $this->invoke(BanCapable::class, 'banPath', [$path, $contentType, $hosts]);
80
81 1
        return $this;
82
    }
83
84
    /**
85
     * Forwards to all clients.
86
     *
87
     * @throws ExceptionCollection If any errors occurred during flush
88
     *
89
     * @return int The number of cache invalidations performed per caching server
90
     */
91 1
    public function flush()
92
    {
93 1
        $count = 0;
94 1
        foreach ($this->proxyClients as $proxyClient) {
95 1
            $count += $proxyClient->flush();
96
        }
97
98 1
        return $count;
99
    }
100
101
    /**
102
     * Forwards tag invalidation request to all clients.
103
     *
104
     * {@inheritdoc}
105
     *
106
     * @return $this
107
     */
108 1
    public function invalidateTags(array $tags)
109
    {
110 1
        $this->invoke(TagCapable::class, 'invalidateTags', [$tags]);
111
112 1
        return $this;
113
    }
114
115
    /**
116
     * Forwards to all clients.
117
     *
118
     * @param string $url     Path or URL to purge
119
     * @param array  $headers Extra HTTP headers to send to the caching proxy (optional)
120
     *
121
     * @return $this
122
     */
123 1
    public function purge($url, array $headers = [])
124
    {
125 1
        $this->invoke(PurgeCapable::class, 'purge', [$url, $headers]);
126
127 1
        return $this;
128
    }
129
130
    /**
131
     * Forwards to all clients.
132
     *
133
     * @param string $url     Path or URL to refresh
134
     * @param array  $headers Extra HTTP headers to send to the caching proxy (optional)
135
     *
136
     * @return $this
137
     */
138 1
    public function refresh($url, array $headers = [])
139
    {
140 1
        $this->invoke(RefreshCapable::class, 'refresh', [$url, $headers]);
141
142 1
        return $this;
143
    }
144
145
    /**
146
     * Forwards to all clients.
147
     *
148
     * @return $this
149
     */
150 1
    public function clear()
151
    {
152 1
        $this->invoke(ClearCapable::class, 'clear', []);
153
154 1
        return $this;
155
    }
156
157
    /**
158
     * Invoke the given $method on all available ProxyClients implementing the
159
     * given $interface.
160
     *
161
     * @param string $interface The FQN of the interface
162
     * @param string $method    The method to invoke
163
     * @param array  $arguments The arguments to be passed to the method
164
     */
165 6
    private function invoke($interface, $method, array $arguments)
166
    {
167 6
        foreach ($this->getProxyClients($interface) as $proxyClient) {
168 6
            call_user_func_array([$proxyClient, $method], $arguments);
169
        }
170 6
    }
171
172
    /**
173
     * Get proxy clients that implement a feature interface.
174
     *
175
     * @param string $interface
176
     *
177
     * @return ProxyClient[]
178
     */
179 6
    private function getProxyClients($interface)
180
    {
181 6
        return array_filter(
182 6
            $this->proxyClients,
183
            function ($proxyClient) use ($interface) {
184 6
                return is_subclass_of($proxyClient, $interface);
185 6
            }
186
        );
187
    }
188
}
189