forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPluginPull.php
More file actions
114 lines (99 loc) · 4.02 KB
/
Copy pathPluginPull.php
File metadata and controls
114 lines (99 loc) · 4.02 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
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
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class PluginPull extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
/**
* Pulls and installs a plugin. After the plugin is installed, it can be
* enabled using the [`POST /plugins/{name}/enable` endpoint](#operation/PostPluginsEnable).
*
* @param \Docker\API\Model\PluginPrivilege[]|null $requestBody
* @param array $queryParameters {
*
* @var string $remote Remote reference for plugin to install.
*
* The `:latest` tag is optional, and is used as the default if omitted.
* @var string $name Local name for the pulled plugin.
*
* The `:latest` tag is optional, and is used as the default if omitted.
*
* }
*
* @param array $headerParameters {
*
* @var string $X-Registry-Auth A base64url-encoded auth configuration to use when pulling a plugin
* from a registry.
*
* Refer to the [authentication section](#section/Authentication) for
* details.
*
* }
*/
public function __construct(?array $requestBody = null, array $queryParameters = [], array $headerParameters = [])
{
$this->body = $requestBody;
$this->queryParameters = $queryParameters;
$this->headerParameters = $headerParameters;
}
public function getMethod(): string
{
return 'POST';
}
public function getUri(): string
{
return '/plugins/pull';
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
if (\is_array($this->body) && isset($this->body[0]) && $this->body[0] instanceof \Docker\API\Model\PluginPrivilege) {
return [['Content-Type' => ['application/json']], $serializer->serialize($this->body, 'json')];
}
if (\is_array($this->body) && isset($this->body[0]) && $this->body[0] instanceof \Docker\API\Model\PluginPrivilege) {
return [['Content-Type' => ['text/plain']], $this->body];
}
return [[], null];
}
public function getExtraHeaders(): array
{
return ['Accept' => ['application/json']];
}
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
{
$optionsResolver = parent::getQueryOptionsResolver();
$optionsResolver->setDefined(['remote', 'name']);
$optionsResolver->setRequired(['remote']);
$optionsResolver->setDefaults([]);
$optionsResolver->addAllowedTypes('remote', ['string']);
$optionsResolver->addAllowedTypes('name', ['string']);
return $optionsResolver;
}
protected function getHeadersOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
{
$optionsResolver = parent::getHeadersOptionsResolver();
$optionsResolver->setDefined(['X-Registry-Auth']);
$optionsResolver->setRequired([]);
$optionsResolver->setDefaults([]);
$optionsResolver->addAllowedTypes('X-Registry-Auth', ['string']);
return $optionsResolver;
}
/**
* @throws \Docker\API\Exception\PluginPullInternalServerErrorException
*
* @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 (204 === $status) {
}
if ((null === $contentType) === false && (500 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\PluginPullInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}