forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageList.php
More file actions
91 lines (79 loc) · 3.46 KB
/
Copy pathImageList.php
File metadata and controls
91 lines (79 loc) · 3.46 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
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class ImageList extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
/**
* Returns a list of images on the server. Note that it uses a different, smaller representation of an image than inspecting a single image.
*
* @param array $queryParameters {
*
* @var bool $all Show all images. Only images from a final layer (no children) are shown by default.
* @var string $filters A JSON encoded value of the filters (a `map[string][]string`) to
* process on the images list.
*
* Available filters:
*
* - `before`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
* - `dangling=true`
* - `label=key` or `label="key=value"` of an image label
* - `reference`=(`<image-name>[:<tag>]`)
* - `since`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
* @var bool $shared-size Compute and show shared size as a `SharedSize` field on each image
* @var bool $digests Show digest information as a `RepoDigests` field on each image.
* }
*/
public function __construct(array $queryParameters = [])
{
$this->queryParameters = $queryParameters;
}
public function getMethod(): string
{
return 'GET';
}
public function getUri(): string
{
return '/images/json';
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
return [[], null];
}
public function getExtraHeaders(): array
{
return ['Accept' => ['application/json']];
}
protected function getQueryOptionsResolver(): \Symfony\Component\OptionsResolver\OptionsResolver
{
$optionsResolver = parent::getQueryOptionsResolver();
$optionsResolver->setDefined(['all', 'filters', 'shared-size', 'digests']);
$optionsResolver->setRequired([]);
$optionsResolver->setDefaults(['all' => false, 'shared-size' => false, 'digests' => false]);
$optionsResolver->addAllowedTypes('all', ['bool']);
$optionsResolver->addAllowedTypes('filters', ['string']);
$optionsResolver->addAllowedTypes('shared-size', ['bool']);
$optionsResolver->addAllowedTypes('digests', ['bool']);
return $optionsResolver;
}
/**
* @throws \Docker\API\Exception\ImageListInternalServerErrorException
*
* @return \Docker\API\Model\ImageSummary[]|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 && (200 === $status && false !== mb_strpos($contentType, 'application/json'))) {
return $serializer->deserialize($body, 'Docker\\API\\Model\\ImageSummary[]', 'json');
}
if ((null === $contentType) === false && (500 === $status && false !== mb_strpos($contentType, 'application/json'))) {
throw new \Docker\API\Exception\ImageListInternalServerErrorException($serializer->deserialize($body, 'Docker\\API\\Model\\ErrorResponse', 'json'), $response);
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}