forked from dcarbone/php-consul-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKVClient.php
408 lines (342 loc) · 14.2 KB
/
KVClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php namespace DCarbone\PHPConsulAPI\KV;
/*
Copyright 2016-2018 Daniel Carbone ([email protected])
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
use DCarbone\PHPConsulAPI\AbstractClient;
use DCarbone\PHPConsulAPI\Error;
use DCarbone\PHPConsulAPI\QueryOptions;
use DCarbone\PHPConsulAPI\Request;
use DCarbone\PHPConsulAPI\WriteOptions;
/**
* Class KVClient
* @package DCarbone\PHPConsulAPI\KV
*/
class KVClient extends AbstractClient {
/**
* @param string $key Name of key to retrieve value for
* @param \DCarbone\PHPConsulAPI\QueryOptions $options
* @return array(
* @type KVPair|null kv object or null on error
* @type \DCarbone\PHPConsulAPI\QueryMeta|null query metadata object or null on error
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Get(string $key, QueryOptions $options = null): array {
$r = new Request('GET', sprintf('v1/kv/%s', $key), $this->config);
$r->setQueryOptions($options);
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->doRequest($r);
if (null !== $err) {
return [null, null, $err];
}
$code = $response->getStatusCode();
if (200 === $code) {
list($data, $err) = $this->decodeBody($response->getBody());
if (null !== $err) {
return [null, null, $err];
}
$qm = $this->buildQueryMeta($duration, $response, $r->getUri());
return [new KVPair($data[0], true), $qm, null];
}
$qm = $this->buildQueryMeta($duration, $response, $r->getUri());
if (404 === $code) {
return [null, $qm, null];
}
return [null, $qm, new Error(sprintf('%s: %s', $response->getStatusCode(), $response->getReasonPhrase()))];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVPair $p
* @param \DCarbone\PHPConsulAPI\WriteOptions $options
* @return array(
* @type \DCarbone\PHPConsulAPI\WriteMeta write metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Put(KVPair $p, WriteOptions $options = null): array {
$r = new Request('PUT', sprintf('v1/kv/%s', $p->Key), $this->config, $p->Value);
$r->setWriteOptions($options);
if (0 !== $p->Flags) {
$r->Params->set('flags', (string)$p->Flags);
}
list($duration, $_, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [$this->buildWriteMeta($duration), null];
}
/**
* @param string $key
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $options
* @return array(
* @type \DCarbone\PHPConsulAPI\WriteMeta metadata about write
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Delete(string $key, WriteOptions $options = null): array {
$r = new Request('DELETE', sprintf('v1/kv/%s', $key), $this->config);
$r->setWriteOptions($options);
list ($duration, $_, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [$this->buildWriteMeta($duration), null];
}
/**
* @param string $prefix
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $options
* @return array(
* @type \DCarbone\PHPConsulAPI\KV\KVPairs|null array of KVPair objects under specified prefix
* @type \DCarbone\PHPConsulAPI\QueryMeta|null query metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function List(string $prefix = '', QueryOptions $options = null): array {
$r = new Request('GET', sprintf('v1/kv/%s', $prefix), $this->config);
$r->setQueryOptions($options);
$r->Params->set('recurse', '');
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, null, $err];
}
list($data, $err) = $this->decodeBody($response->getBody());
if (null !== $err) {
return [null, null, $err];
}
$qm = $this->buildQueryMeta($duration, $response, $r->getUri());
return [new KVPairs($data), $qm, null];
}
/**
* @param string $prefix Prefix to search for. Null returns all keys.
* @param \DCarbone\PHPConsulAPI\QueryOptions $options
* @return array(
* @type string[]|null list of keys
* @type \DCarbone\PHPConsulAPI\QueryMeta|null query metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Keys(string $prefix = '', QueryOptions $options = null): array {
$r = new Request('GET', sprintf('v1/kv/%s', $prefix), $this->config);
$r->setQueryOptions($options);
$r->Params->set('keys', '');
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, null, $err];
}
list($data, $err) = $this->decodeBody($response->getBody());
if (null !== $err) {
return [null, null, $err];
}
return [$data, $this->buildQueryMeta($duration, $response, $r->getUri()), $err];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVPair $p
* @param \DCarbone\PHPConsulAPI\WriteOptions $options
* @return array(
* @type bool whether the operation succeeded or not
* @type \DCarbone\PHPConsulAPI\WriteMeta write metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function CAS(KVPair $p, WriteOptions $options = null): array {
$r = new Request('PUT', sprintf('v1/kv/%s', $p->Key), $this->config, $p->Value);
$r->setWriteOptions($options);
$r->Params->set('cas', (string)$p->ModifyIndex);
if (0 !== $p->Flags) {
$r->Params->set('flags', (string)$p->Flags);
}
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [0 === strpos($response->getBody()->getContents(), 'true'), $this->buildWriteMeta($duration), null];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVPair $p
* @param \DCarbone\PHPConsulAPI\WriteOptions $options
* @return array(
* @type \DCarbone\PHPConsulAPI\WriteMeta write metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Acquire(KVPair $p, WriteOptions $options = null): array {
$r = new Request('PUT', sprintf('v1/kv/%s', $p->Key), $this->config, $p->Value);
$r->setWriteOptions($options);
$r->Params->set('acquire', $p->Session);
if (0 !== $p->Flags) {
$r->Params->set('flags', (string)$p->Flags);
}
list($duration, $_, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [$this->buildWriteMeta($duration), null];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVPair $p
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $options
* @return array(
* @type bool
* @type \DCarbone\PHPConsulAPI\WriteMeta
* @type \DCarbone\PHPConsulAPI\Error|null
* )
*/
public function DeleteCAS(KVPair $p, WriteOptions $options = null): array {
$r = new Request('DELETE', sprintf('v1/kv/%s', ltrim($p->Key, "/")), $this->config);
$r->setWriteOptions($options);
$r->Params['cas'] = (string)$p->ModifyIndex;
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, null, $err];
}
return [0 === strpos($response->getBody()->getContents(), 'true'), $this->buildWriteMeta($duration), null];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVPair $p
* @param \DCarbone\PHPConsulAPI\WriteOptions $options
* @return array(
* @type \DCarbone\PHPConsulAPI\WriteMeta write metadata
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Release(KVPair $p, WriteOptions $options = null): array {
$r = new Request('PUT', sprintf('v1/kv/%s', $p->Key), $this->config, $p->Value);
$r->setWriteOptions($options);
$r->Params->set('release', $p->Session);
if (0 !== $p->Flags) {
$r->Params->set('flags', (string)$p->Flags);
}
list($duration, $_, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [$this->buildWriteMeta($duration), null];
}
/**
* @param string $prefix
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $options
* @return array(
* @type \DCarbone\PHPConsulAPI\WriteMeta|null
* @type \DCarbone\PHPConsulAPI\Error|null
* )
*/
public function DeleteTree(string $prefix, QueryOptions $options = null): array {
$r = new Request('DELETE', sprintf('v1/kv/%s', $prefix), $this->config);
$r->Params['recurse'] = '';
$r->setWriteOptions($options);
list($duration, $_, $err) = $this->requireOK($this->doRequest($r));
if (null !== $err) {
return [null, $err];
}
return [$this->buildWriteMeta($duration), null];
}
/**
* @param \DCarbone\PHPConsulAPI\KV\KVTxnOps $txn
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $options
* @return array(
* @type bool
* @type \DCarbone\PHPConsulAPI\KV\KVTxnResponse|null
* @type \DCarbone\PHPConsulAPI\QueryOptions|null
* @type \DCarbone\PHPConsulAPI\Error|null
* )
*/
public function Txn(KVTxnOps $txn, QueryOptions $options = null): array {
$ops = new KVTxnOps();
foreach ($txn as $op) {
$ops->append(clone $op);
}
$r = new Request('PUT', 'v1/txn', $this->config, $ops);
$r->setQueryOptions($options);
/** @var \Psr\Http\Message\ResponseInterface $response */
list($duration, $response, $err) = $this->doRequest($r);
if (null !== $err) {
return [false, null, null, $err];
}
$qm = $this->buildQueryMeta($duration, $response, $r->getUri());
$code = $response->getStatusCode();
if (200 === $code || 409 === $code) {
list($data, $err) = $this->decodeBody($response->getBody());
if (null !== $err) {
return [false, null, null, $err];
}
// TODO: Maybe go straight to actual response? What is the benefit of this...
$internal = new TxnResponse($data);
$resp = new KVTxnResponse(['Errors' => $internal->Errors, 'Results' => $internal->Results]);
return [200 === $code, $resp, $qm, null];
}
if ('' === ($body = $response->getBody()->getContents())) {
return [false, null, null, new Error('Unable to read response')];
}
return [false, null, null, new Error('Failed request: '.$body)];
}
/**
* @param null|string $prefix
* @param \DCarbone\PHPConsulAPI\QueryOptions $options
* @return array(
* @type KVPair[]|KVTree[]|null array of trees, values, or null on error
* @type \DCarbone\PHPConsulAPI\Error|null error, if any
* )
*/
public function Tree(string $prefix = '', QueryOptions $options = null): array {
list($valueList, $_, $err) = $this->List($prefix, $options);
if (null !== $err) {
return [null, $err];
}
$treeHierarchy = [];
foreach ($valueList as $path => $kvp) {
$slashPos = strpos($path, '/');
if (false === $slashPos) {
$treeHierarchy[$path] = $kvp;
continue;
}
$root = substr($path, 0, $slashPos + 1);
if (!isset($treeHierarchy[$root])) {
$treeHierarchy[$root] = new KVTree($root);
}
if ('/' === substr($path, -1)) {
$_path = '';
foreach (explode('/', $prefix) as $part) {
if ('' === $part) {
continue;
}
$_path .= "{$part}/";
if ($root === $_path) {
continue;
}
if (!isset($treeHierarchy[$root][$_path])) {
$treeHierarchy[$root][$_path] = new KVTree($_path);
}
}
} else {
$kvPrefix = substr($path, 0, strrpos($path, '/') + 1);
$_path = '';
foreach (explode('/', $kvPrefix) as $part) {
if ('' === $part) {
continue;
}
$_path .= "{$part}/";
if ($root === $_path) {
continue;
}
if (!isset($treeHierarchy[$root][$_path])) {
$treeHierarchy[$root][$_path] = new KVTree($_path);
}
}
$treeHierarchy[$root][$path] = $kvp;
}
}
return [$treeHierarchy, null];
}
}