forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPutContainerArchive.php
More file actions
117 lines (103 loc) · 5.17 KB
/
Copy pathPutContainerArchive.php
File metadata and controls
117 lines (103 loc) · 5.17 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
115
116
117
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class PutContainerArchive extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
protected $id;
protected $accept;
/**
* Upload a tar archive to be extracted to a path in the filesystem of container id.
* `path` parameter is asserted to be a directory. If it exists as a file, 400 error
* will be returned with message "not a directory".
*
* @param string $id ID or name of the container
* @param string|resource|\Psr\Http\Message\StreamInterface|null $requestBody
* @param array $queryParameters {
*
* @var string $path path to a directory in the container to extract the archive’s contents into
* @var string $noOverwriteDirNonDir if `1`, `true`, or `True` then it will be an error if unpacking the
* given content would cause an existing directory to be replaced with
* a non-directory and vice versa
* @var string $copyUIDGID If `1`, `true`, then it will copy UID/GID maps to the dest file or
* dir
*
* }
*
* @param array $accept Accept content header application/json|text/plain
*/
public function __construct(string $id, $requestBody = null, array $queryParameters = [], array $accept = [])
{
$this->id = $id;
$this->body = $requestBody;
$this->queryParameters = $queryParameters;
$this->accept = $accept;
}
public function getMethod(): string
{
return 'PUT';
}
public function getUri(): string
{
return str_replace(['{id}'], [$this->id], '/containers/{id}/archive');
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
if (\is_string($this->body) || \is_resource($this->body) || $this->body instanceof \Psr\Http\Message\StreamInterface) {
return [['Content-Type' => ['application/x-tar']], $this->body];
}
if (\is_string($this->body) || \is_resource($this->body) || $this->body instanceof \Psr\Http\Message\StreamInterface) {
return [['Content-Type' => ['application/octet-stream']], $this->body];
}
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(['path', 'noOverwriteDirNonDir', 'copyUIDGID']);
$optionsResolver->setRequired(['path']);
$optionsResolver->setDefaults([]);
$optionsResolver->addAllowedTypes('path', ['string']);
$optionsResolver->addAllowedTypes('noOverwriteDirNonDir', ['string']);
$optionsResolver->addAllowedTypes('copyUIDGID', ['string']);
return $optionsResolver;
}
/**
* @throws \Docker\API\Exception\PutContainerArchiveBadRequestException
* @throws \Docker\API\Exception\PutContainerArchiveForbiddenException
* @throws \Docker\API\Exception\PutContainerArchiveNotFoundException
* @throws \Docker\API\Exception\PutContainerArchiveInternalServerErrorException
*
* @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 && (400 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\PutContainerArchiveBadRequestException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
if ((null === $contentType) === false && (403 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\PutContainerArchiveForbiddenException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
if ((null === $contentType) === false && (404 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\PutContainerArchiveNotFoundException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
if ((null === $contentType) === false && (500 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\PutContainerArchiveInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}