forked from beluga-php/docker-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecStart.php
More file actions
75 lines (63 loc) · 2.19 KB
/
Copy pathExecStart.php
File metadata and controls
75 lines (63 loc) · 2.19 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
<?php
declare(strict_types=1);
namespace Docker\API\Endpoint;
class ExecStart extends \Docker\API\Runtime\Client\BaseEndpoint implements \Docker\API\Runtime\Client\Endpoint
{
use \Docker\API\Runtime\Client\EndpointTrait;
protected $id;
protected $accept;
/**
* Starts a previously set up exec instance. If detach is true, this endpoint
* returns immediately after starting the command. Otherwise, it sets up an
* interactive session with the command.
*
* @param string $id Exec instance ID
* @param array $accept Accept content header application/vnd.docker.raw-stream|application/vnd.docker.multiplexed-stream
*/
public function __construct(string $id, ?\Docker\API\Model\ExecIdStartPostBody $requestBody = null, array $accept = [])
{
$this->id = $id;
$this->body = $requestBody;
$this->accept = $accept;
}
public function getMethod(): string
{
return 'POST';
}
public function getUri(): string
{
return str_replace(['{id}'], [$this->id], '/exec/{id}/start');
}
public function getBody(\Symfony\Component\Serializer\SerializerInterface $serializer, $streamFactory = null): array
{
if ($this->body instanceof \Docker\API\Model\ExecIdStartPostBody) {
return [['Content-Type' => ['application/json']], $serializer->serialize($this->body, 'json')];
}
return [[], null];
}
public function getExtraHeaders(): array
{
if (empty($this->accept)) {
return ['Accept' => ['application/vnd.docker.raw-stream', 'application/vnd.docker.multiplexed-stream']];
}
return $this->accept;
}
/**
* @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 (404 === $status) {
}
if (409 === $status) {
}
}
public function getAuthenticationScopes(): array
{
return [];
}
}