forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageCommit.php
More file actions
95 lines (82 loc) · 3.84 KB
/
Copy pathImageCommit.php
File metadata and controls
95 lines (82 loc) · 3.84 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
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class ImageCommit extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
/**
* @param array $queryParameters {
*
* @var string $container The ID or name of the container to commit
* @var string $repo Repository name for the created image
* @var string $tag Tag name for the create image
* @var string $comment Commit message
* @var string $author Author of the image (e.g., `John Hannibal Smith <hannibal@a-team.com>`)
* @var bool $pause Whether to pause the container before committing
* @var string $changes `Dockerfile` instructions to apply while committing
* }
*/
public function __construct(?\Docker\API\Model\ContainerConfig $requestBody = null, array $queryParameters = [])
{
$this->body = $requestBody;
$this->queryParameters = $queryParameters;
}
public function getMethod(): string
{
return 'POST';
}
public function getUri(): string
{
return '/commit';
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
if ($this->body instanceof \Docker\API\Model\ContainerConfig) {
return [['Content-Type' => ['application/json']], $serializer->serialize($this->body, 'json')];
}
return [[], null];
}
public function getExtraHeaders(): array
{
return ['Accept' => ['application/json']];
}
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
{
$optionsResolver = parent::getQueryOptionsResolver();
$optionsResolver->setDefined(['container', 'repo', 'tag', 'comment', 'author', 'pause', 'changes']);
$optionsResolver->setRequired([]);
$optionsResolver->setDefaults(['pause' => true]);
$optionsResolver->addAllowedTypes('container', ['string']);
$optionsResolver->addAllowedTypes('repo', ['string']);
$optionsResolver->addAllowedTypes('tag', ['string']);
$optionsResolver->addAllowedTypes('comment', ['string']);
$optionsResolver->addAllowedTypes('author', ['string']);
$optionsResolver->addAllowedTypes('pause', ['bool']);
$optionsResolver->addAllowedTypes('changes', ['string']);
return $optionsResolver;
}
/**
* @throws \Docker\API\Exception\ImageCommitNotFoundException
* @throws \Docker\API\Exception\ImageCommitInternalServerErrorException
*
* @return \Docker\API\Model\IdResponse|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 ((null === $contentType) === false && (201 === $status && false !== mb_strpos($contentType, 'application/json'))) {
return $serializer->deserialize($body, 'Docker\\API\\Model\\IdResponse', 'json');
}
if ((null === $contentType) === false && (404 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\ImageCommitNotFoundException($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\ImageCommitInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}