-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
OperatorClient.php
260 lines (234 loc) · 9.41 KB
/
OperatorClient.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
<?php
declare(strict_types=1);
namespace DCarbone\PHPConsulAPI\Operator;
/*
Copyright 2016-2021 Daniel Carbone (daniel.p.carbone@gmail.com)
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\RequestResponse;
use DCarbone\PHPConsulAPI\ValuedBoolResponse;
use DCarbone\PHPConsulAPI\ValuedWriteStringResponse;
use DCarbone\PHPConsulAPI\WriteOptions;
use DCarbone\PHPConsulAPI\WriteResponse;
/**
* Class OperatorClient
*/
class OperatorClient extends AbstractClient
{
/**
* @param \DCarbone\PHPConsulAPI\Operator\Area $area
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\ValuedWriteStringResponse
*/
public function AreaCreate(Area $area, ?WriteOptions $opts = null): ValuedWriteStringResponse
{
return $this->_writeIDResponse($this->_requireOK($this->_doPost('v1/operator/area', $area, $opts)));
}
/**
* @param string $areaID
* @param \DCarbone\PHPConsulAPI\Operator\Area $area
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\ValuedWriteStringResponse
*/
public function AreaUpdate(string $areaID, Area $area, ?WriteOptions $opts = null): ValuedWriteStringResponse
{
return $this->_writeIDResponse(
$this->_requireOK($this->_doPut(sprintf('v1/operator/area/%s', $areaID), $area, $opts))
);
}
/**
* @param string $areaID
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorAreasResponse
*/
public function AreaGet(string $areaID, ?QueryOptions $opts = null): OperatorAreasResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('v1/operator/area/%s', urlencode($areaID)), $opts));
$ret = new OperatorAreasResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorAreasResponse
*/
public function AreaList(?QueryOptions $opts = null): OperatorAreasResponse
{
$resp = $this->_requireOK($this->_doGet('v1/operator/area', $opts));
$ret = new OperatorAreasResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param string $areaID
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @return \DCarbone\PHPConsulAPI\WriteResponse
*/
public function AreaDelete(string $areaID, ?WriteOptions $opts = null): WriteResponse
{
return $this->_executeDelete(sprintf('v1/operator/area/%s', $areaID), $opts);
}
/**
* @param string $areaID
* @param array $addresses
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorAreaJoinResponse
*/
public function AreaJoin(string $areaID, array $addresses, ?WriteOptions $opts = null): OperatorAreaJoinResponse
{
$resp = $this->_requireOK($this->_doPut(sprintf('v1/operator/area/%s/join', $areaID), $addresses, $opts));
$ret = new OperatorAreaJoinResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param string $areaID
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorSerfMembersResponse
*/
public function AreaMembers(string $areaID, ?QueryOptions $opts = null): OperatorSerfMembersResponse
{
$resp = $this->_requireOK($this->_doGet(sprintf('v1/operator/area/%s/members', $areaID), $opts));
$ret = new OperatorSerfMembersResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorAutopilotConfigurationResponse
*/
public function AutopilotGetConfiguration(?QueryOptions $opts = null): OperatorAutopilotConfigurationResponse
{
$resp = $this->_requireOK($this->_doGet('v1/operator/autopilot/configuration', $opts));
$ret = new OperatorAutopilotConfigurationResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\Operator\AutopilotConfiguration $conf
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @return \DCarbone\PHPConsulAPI\Error|null
* @throws \Exception
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function AutopilotSetConfiguration(AutopilotConfiguration $conf, ?WriteOptions $opts = null): ?Error
{
return $this->_requireOK($this->_doPut('v1/operator/autopilot/configuration', $conf, $opts))->Err;
}
/**
* @param \DCarbone\PHPConsulAPI\Operator\AutopilotConfiguration $conf
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\ValuedBoolResponse
*/
public function AutopilotCASConfiguration(
AutopilotConfiguration $conf,
?WriteOptions $opts = null
): ValuedBoolResponse {
$resp = $this->_requireOK($this->_doPut('v1/operator/autopilot/configuration', $conf, $opts));
$ret = new ValuedBoolResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorHealthReplyResponse
*/
public function AutopilotServerHealth(?QueryOptions $opts = null): OperatorHealthReplyResponse
{
$resp = $this->_requireOK($this->_doGet('v1/operator/autopilot/health', $opts));
$ret = new OperatorHealthReplyResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\AutopilotStateResponse
*/
public function AutopilotState(?QueryOptions $opts = null): AutopilotStateResponse
{
$resp = $this->_requireOK($this->_doGet('v1/operator/autopilot/state', $opts));
$ret = new AutopilotStateResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param \DCarbone\PHPConsulAPI\QueryOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Operator\OperatorRaftConfigurationResponse
*/
public function RaftGetConfiguration(?QueryOptions $opts = null): OperatorRaftConfigurationResponse
{
$resp = $this->_requireOK($this->_doGet('v1/operator/raft/configuration', $opts));
$ret = new OperatorRaftConfigurationResponse();
$this->_unmarshalResponse($resp, $ret);
return $ret;
}
/**
* @param string $address
* @param \DCarbone\PHPConsulAPI\WriteOptions|null $opts
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\Error|null
*/
public function RaftRemovePeerByAddress(string $address, ?WriteOptions $opts = null): ?Error
{
$r = $this->_newDeleteRequest('v1/operator/raft/peer', $opts);
$r->applyOptions($opts);
$r->params->set('address', $address);
return $this->_requireOK($this->_do($r))->Err;
}
/**
* @param \DCarbone\PHPConsulAPI\RequestResponse $resp
* @throws \Exception
* @return \DCarbone\PHPConsulAPI\ValuedWriteStringResponse
*/
protected function _writeIDResponse(RequestResponse $resp): ValuedWriteStringResponse
{
$ret = new ValuedWriteStringResponse();
if (null !== $resp->Err) {
$ret->Err = $resp->Err;
return $ret;
}
$ret->WriteMeta = $resp->buildWriteMeta();
$dec = $this->_decodeBody($resp->Response->getBody());
if (null !== $dec->Err) {
$ret->Err = $dec->Err;
return $ret;
}
$ret->Value = $dec->Decoded['ID'] ?? '';
return $ret;
}
}