-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathACLClient.php
380 lines (332 loc) · 14.3 KB
/
ACLClient.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
<?php
declare(strict_types=1);
namespace DCarbone\PHPConsulAPI\ACL;
/*
Copyright 2016-2025 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\ValuedWriteStringResponse;
use DCarbone\PHPConsulAPI\WriteOptions;
use DCarbone\PHPConsulAPI\WriteResponse;
class ACLClient extends AbstractClient
{
public function Bootstrap(): ValuedWriteStringResponse
{
return $this->_executePutValuedStr('v1/acl/bootstrap', null, null);
}
public function Create(ACLEntry $acl, ?WriteOptions $opts = null): ValuedWriteStringResponse
{
return $this->_executePutValuedStr('v1/acl/create', $acl, $opts);
}
public function Update(ACLEntry $acl, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executePut('v1/acl/update', $acl, $opts);
}
public function Destroy(string $id, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executePut(sprintf('v1/acl/destroy/%s', $id), null, $opts);
}
public function Clone(string $id, ?WriteOptions $opts = null): ValuedWriteStringResponse
{
return $this->_executePutValuedStr(sprintf('v1/acl/clone/%s', $id), null, $opts);
}
public function Info(string $id, ?QueryOptions $opts = null): ACLEntriesResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('v1/acl/info/%s', $id), $opts));
$ret = new ACLEntriesResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function List(?QueryOptions $opts = null): ACLEntriesResponse
{
$resp = $this->_requireOK($this->_doGet('v1/acl/list', $opts));
$ret = new ACLEntriesResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function Replication(?QueryOptions $opts = null): ACLReplicationStatusResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/replication', $opts));
$ret = new ACLReplicationStatusResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenCreate(ACLToken $token, ?WriteOptions $opts = null): ACLTokenWriteResponse
{
$resp = $this->_requireOK($this->_doPut('/v1/acl/token', $token, $opts));
$ret = new ACLTokenWriteResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenUpdate(ACLToken $token, ?WriteOptions $opts = null): ACLTokenWriteResponse
{
$ret = new ACLTokenWriteResponse();
if ('' === $token->AccessorID) {
$ret->Err = new Error('must specify AccessorID for Token Updating');
return $ret;
}
$resp = $this->_requireOK($this->_doPut(sprintf('/v1/acl/token/%s', $token->AccessorID), $token, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenClone(string $tokenID, string $description, ?WriteOptions $opts = null): ACLTokenWriteResponse
{
$ret = new ACLTokenWriteResponse();
if ('' === $tokenID) {
$ret->Err = new Error('must specify tokenID for Token Cloning');
return $ret;
}
$resp = $this->_requireOK(
$this->_doPut(sprintf('/v1/acl/token/%s/clone', $tokenID), ['description' => $description], $opts)
);
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenDelete(string $tokenID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('/v1/acl/token/%s', $tokenID), $opts);
}
public function TokenRead(string $tokenID, ?QueryOptions $opts = null): ACLTokenQueryResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('/v1/acl/token/%s', $tokenID), $opts));
$ret = new ACLTokenQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenReadSelf(?QueryOptions $opts = null): ACLTokenQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/token/self', $opts));
$ret = new ACLTokenQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function TokenList(?QueryOptions $opts = null): ACLTokenListEntryQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/tokens', $opts));
$ret = new ACLTokenListEntryQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function PolicyCreate(ACLPolicy $policy, ?WriteOptions $opts = null): ACLPolicyWriteResponse
{
$ret = new ACLPolicyWriteResponse();
if ('' !== $policy->ID) {
$ret->Err = new Error('cannot specify an id in Policy Create');
return $ret;
}
$resp = $this->_requireOK($this->_doPut('/v1/acl/policy', $policy, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function PolicyUpdate(ACLPolicy $policy, ?WriteOptions $opts = null): ACLPolicyWriteResponse
{
$ret = new ACLPolicyWriteResponse();
if ('' === $policy->ID) {
$ret->Err = new Error('must specify an ID in Policy Update');
return $ret;
}
$resp = $this->_requireOK($this->_doPut(sprintf('/v1/acl/policy/%s', $policy->ID), $policy, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function PolicyDelete(string $policyID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('/v1/acl/policy/%s', $policyID), $opts);
}
public function PolicyRead(string $policyID, ?QueryOptions $opts = null): ACLPolicyQueryResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('/v1/acl/policy/%s', $policyID), $opts));
$ret = new ACLPolicyQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function PolicyReadByName(string $policyName, ?QueryOptions $opts = null): ACLPolicyQueryResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('/v1/acl/policy/name/%s', $policyName), $opts));
$ret = new ACLPolicyQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function PolicyList(?QueryOptions $opts = null): ACLPolicyListEntryQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/policies', $opts));
$ret = new ACLPolicyListEntryQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function RoleCreate(ACLRole $role, ?WriteOptions $opts = null): ACLRoleWriteResponse
{
$ret = new ACLRoleWriteResponse();
if ('' !== $role->ID) {
$ret->Err = new Error('cannot specify an id in Role Create');
return $ret;
}
$resp = $this->_requireOK($this->_doPut('/v1/acl/role', $role, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function RoleUpdate(ACLRole $role, ?WriteOptions $opts = null): ACLRoleWriteResponse
{
$ret = new ACLRoleWriteResponse();
if ('' === $role->ID) {
$ret->Err = new Error('must specify an ID in Role Update');
return $ret;
}
$resp = $this->_requireOK($this->_doPut(sprintf('/v1/acl/role/%s', $role->ID), $role, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function RoleDelete(string $roleID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('/v1/acl/role/%s', $roleID), $opts);
}
public function RoleRead(string $roleID, ?QueryOptions $opts = null): ACLRoleQueryResponse
{
$resp = $this->_requireNotFoundOrOK($this->_doGet(sprintf('/v1/acl/role/%s', $roleID), $opts));
$ret = new ACLRoleQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function RoleReadByName(string $roleName, ?QueryOptions $opts = null): ACLRoleQueryResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('/v1/acl/role/name/%s', $roleName), $opts));
$ret = new ACLRoleQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function RoleList(?QueryOptions $opts = null): ACLRolesQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/roles', $opts));
$ret = new ACLRolesQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function AuthMethodCreate(ACLAuthMethod $authMethod, ?WriteOptions $opts = null): ACLAuthMethodWriteResponse
{
$ret = new ACLAuthMethodWriteResponse();
if ('' !== $authMethod->Name) {
$ret->Err = new Error('cannot specify an Name in AuthMethod Create');
return $ret;
}
$resp = $this->_requireOK($this->_doPut('/v1/acl/auth-method', $authMethod, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function AuthMethodUpdate(ACLAuthMethod $authMethod, ?WriteOptions $opts = null): ACLAuthMethodWriteResponse
{
$ret = new ACLAuthMethodWriteResponse();
if ('' === $authMethod->ID) {
$ret->Err = new Error('must specify an ID in AuthMethod Update');
return $ret;
}
$resp = $this->_requireOK($this->_doPut(sprintf('/v1/acl/auth-method/%s', $authMethod->ID), $authMethod, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function AuthMethodDelete(string $authMethodID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('/v1/acl/authMethod/%s', $authMethodID), $opts);
}
public function AuthMethodRead(string $authMethodID, ?QueryOptions $opts = null): ACLAuthMethodQueryResponse
{
$resp = $this->_requireNotFoundOrOK($this->_doGet(sprintf('/v1/acl/authMethod/%s', $authMethodID), $opts));
$ret = new ACLAuthMethodQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function AuthMethodList(?QueryOptions $opts = null): ACLAuthMethodListEntryQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/auth-methods', $opts));
$ret = new ACLAuthMethodListEntryQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function BindingRuleCreate(
ACLBindingRule $bindingRule,
?WriteOptions $opts = null
): ACLBindingRuleWriteResponse {
$ret = new ACLBindingRuleWriteResponse();
if ('' !== $bindingRule->ID) {
$ret->Err = new Error('cannot specify an id in BindingRule Create');
return $ret;
}
$resp = $this->_requireOK($this->_doPut('/v1/acl/binding-rule', $bindingRule, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function BindingRuleUpdate(
ACLBindingRule $bindingRule,
?WriteOptions $opts = null
): ACLBindingRuleWriteResponse {
$ret = new ACLBindingRuleWriteResponse();
if ('' === $bindingRule->ID) {
$ret->Err = new Error('must specify an ID in BindingRule Update');
return $ret;
}
$resp = $this->_requireOK($this->_doPut(sprintf('/v1/acl/binding-rule/%s', $bindingRule->ID), $bindingRule, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function BindingRuleDelete(string $bindingRuleID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('/v1/acl/binding-rule/%s', $bindingRuleID), $opts);
}
public function BindingRuleRead(string $bindingRuleID, ?QueryOptions $opts = null): ACLBindingRuleQueryResponse
{
$resp = $this->_requireNotFoundOrOK($this->_doGet(sprintf('/v1/acl/binding-rule/%s', $bindingRuleID), $opts));
$ret = new ACLBindingRuleQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function BindingRuleList(?QueryOptions $opts = null): ACLBindingRulesQueryResponse
{
$resp = $this->_requireOK($this->_doGet('/v1/acl/binding-rules', $opts));
$ret = new ACLBindingRulesQueryResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function Login(ACLLoginParams $login, ?WriteOptions $opts = null): ACLTokenWriteResponse
{
$resp = $this->_requireOK($this->_doPost('/v1/acl/login', $login, $opts));
$ret = new ACLTokenWriteResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function Logout(?WriteOptions $opts = null): WriteResponse
{
return $this->_executePost('/v1/acl/logout', null, $opts);
}
public function OIDCAuthURL(ACLOIDCAuthURLParams $auth, ?WriteOptions $opts = null): ValuedWriteStringResponse
{
$ret = new ValuedWriteStringResponse();
if ('' === $auth->AuthMethod) {
$ret->Err = new Error('must specify an auth method name');
return $ret;
}
$resp = $this->_requireOK($this->_doPost('/v1/acl/oidc/auth-url', $auth, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
public function OIDCCallback(ACLOIDCCallbackParams $auth, ?WriteOptions $opts = null): ACLTokenWriteResponse
{
$ret = new ACLTokenWriteResponse();
if ('' === $auth->AuthMethod) {
$ret->Err = new Error('must specify an auth method name');
return $ret;
}
$resp = $this->_requireOK($this->_doPost('/v1/acl/oidc/callback', $auth, $opts));
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
}