forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwarmLeave.php
More file actions
87 lines (74 loc) · 2.83 KB
/
Copy pathSwarmLeave.php
File metadata and controls
87 lines (74 loc) · 2.83 KB
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
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class SwarmLeave extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
protected $accept;
/**
* @param array $queryParameters {
*
* @var bool $force Force leave swarm, even if this is the last manager or that it will
* break the cluster.
*
* }
*
* @param array $accept Accept content header application/json|text/plain
*/
public function __construct(array $queryParameters = [], array $accept = [])
{
$this->queryParameters = $queryParameters;
$this->accept = $accept;
}
public function getMethod(): string
{
return 'POST';
}
public function getUri(): string
{
return '/swarm/leave';
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
return [[], null];
}
public function getExtraHeaders(): array
{
if (empty($this->accept)) {
return ['Accept' => ['application/json', 'text/plain']];
}
return $this->accept;
}
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
{
$optionsResolver = parent::getQueryOptionsResolver();
$optionsResolver->setDefined(['force']);
$optionsResolver->setRequired([]);
$optionsResolver->setDefaults(['force' => false]);
$optionsResolver->addAllowedTypes('force', ['bool']);
return $optionsResolver;
}
/**
* @throws \Docker\API\Exception\SwarmLeaveInternalServerErrorException
* @throws \Docker\API\Exception\SwarmLeaveServiceUnavailableException
*
* @return null
*/
protected function transformResponseBody(\Psr\Http\Message\ResponseInterface $response, \Symfony\Component\Serializer\SerializerInterface $serializer, ?string $contentType = null)
{
$status = $response->getStatusCode();
$body = (string) $response->getBody();
if (200 === $status) {
}
if ((null === $contentType) === false && (500 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\SwarmLeaveInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
if ((null === $contentType) === false && (503 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\SwarmLeaveServiceUnavailableException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}