1 | <?php |
||
29 | abstract class AbstractProxyClient implements ProxyClientInterface |
||
30 | { |
||
31 | /** |
||
32 | * HTTP client adapter. |
||
33 | * |
||
34 | * @var HttpAdapter |
||
35 | */ |
||
36 | protected $httpAdapter; |
||
37 | |||
38 | /** |
||
39 | * @var MessageFactory |
||
40 | */ |
||
41 | protected $messageFactory; |
||
42 | |||
43 | /** |
||
44 | * The options configured in the constructor argument or default values. |
||
45 | * |
||
46 | * @var array The resolved options. |
||
47 | */ |
||
48 | protected $options; |
||
49 | |||
50 | /** |
||
51 | * Constructor. |
||
52 | * |
||
53 | * Supported options: |
||
54 | * |
||
55 | * - base_uri Default application hostname, optionally including base URL, |
||
56 | * for purge and refresh requests (optional). This is required if you |
||
57 | * purge and refresh paths instead of absolute URLs. |
||
58 | * |
||
59 | * @param array $servers Caching proxy server hostnames or IP |
||
60 | * addresses, including port if not port 80. |
||
61 | * E.g. ['127.0.0.1:6081'] |
||
62 | * @param array $options List of options for the client. |
||
63 | * @param HttpAsyncClient|null $httpClient Client capable of sending HTTP requests. If no |
||
64 | * client is supplied, a default one is created. |
||
65 | * @param MessageFactory|null $messageFactory Factory for PSR-7 messages. If none supplied, |
||
66 | * a default one is created. |
||
67 | * @param UriFactory|null $uriFactory Factory for PSR-7 URIs. If not specified, a |
||
68 | * default one is created. |
||
69 | */ |
||
70 | 48 | public function __construct( |
|
88 | |||
89 | /** |
||
90 | * {@inheritdoc} |
||
91 | */ |
||
92 | 39 | public function flush() |
|
96 | |||
97 | /** |
||
98 | * Get options resolver with default settings. |
||
99 | * |
||
100 | * @return OptionsResolver |
||
101 | */ |
||
102 | 48 | protected function getDefaultOptions() |
|
109 | |||
110 | /** |
||
111 | * Create a request and queue it with the HttpAdapter. |
||
112 | * |
||
113 | * @param string $method |
||
114 | * @param string|UriInterface $url |
||
115 | * @param array $headers |
||
116 | */ |
||
117 | 13 | protected function queueRequest($method, $url, array $headers) |
|
123 | |||
124 | /** |
||
125 | * Make sure that the tags are valid. |
||
126 | * |
||
127 | * Reusable function for proxy clients. |
||
128 | * Escapes `,` and `\n` (newline) characters. |
||
129 | * |
||
130 | * @param array $tags The tags to escape. |
||
131 | * |
||
132 | * @return array Sane tags. |
||
133 | */ |
||
134 | protected function escapeTags(array $tags) |
||
142 | } |
||
143 |