-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathStorageObject.php
More file actions
231 lines (192 loc) · 6.39 KB
/
StorageObject.php
File metadata and controls
231 lines (192 loc) · 6.39 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
declare(strict_types=1);
namespace OpenStack\ObjectStore\v1\Models;
use GuzzleHttp\Psr7\Uri;
use OpenStack\Common\Resource\Alias;
use OpenStack\Common\Transport\Utils;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\StreamInterface;
use OpenStack\Common\Resource\OperatorResource;
use OpenStack\Common\Resource\Creatable;
use OpenStack\Common\Resource\Deletable;
use OpenStack\Common\Resource\HasMetadata;
/**
* @property \OpenStack\ObjectStore\v1\Api $api
*/
class StorageObject extends OperatorResource implements Creatable, Deletable, HasMetadata
{
use MetadataTrait;
const METADATA_PREFIX = 'X-Object-Meta-';
/** @var string */
public $containerName;
/** @var string */
public $name;
/** @var string */
public $hash;
/** @var string */
public $contentType;
/** @var int */
public $contentLength;
/** @var \DateTimeImmutable */
public $lastModified;
/** @var array */
public $metadata;
protected $markerKey = 'name';
protected $aliases = [
'bytes' => 'contentLength',
'content_type' => 'contentType',
'subdir' => 'name',
];
/**
* {@inheritdoc}
*/
protected function getAliases(): array
{
return parent::getAliases() + [
'last_modified' => new Alias('lastModified', \DateTimeImmutable::class),
];
}
/**
* {@inheritdoc}
*/
public function populateFromResponse(ResponseInterface $response): self
{
parent::populateFromResponse($response);
$this->populateHeaders($response);
return $this;
}
/**
* @param ResponseInterface $response
*
* @return $this
*/
private function populateHeaders(ResponseInterface $response): self
{
$this->hash = $response->getHeaderLine('ETag');
$this->contentLength = $response->getHeaderLine('Content-Length');
$this->lastModified = $response->getHeaderLine('Last-Modified');
$this->contentType = $response->getHeaderLine('Content-Type');
$this->metadata = $this->parseMetadata($response);
return $this;
}
/**
* Retrieves the public URI for this resource.
*
* @return \GuzzleHttp\Psr7\Uri
*/
public function getPublicUri(): Uri
{
return Utils::addPaths($this->getHttpBaseUrl(), $this->containerName, $this->name);
}
/**
* @param array $data {@see \OpenStack\ObjectStore\v1\Api::putObject}
*
* @return $this
*/
public function create(array $data): Creatable
{
// Override containerName from input params only if local instance contains containerName attr
if ($this->containerName) {
$data['containerName'] = $this->containerName;
}
$response = $this->execute($this->api->putObject(), $data);
$storageObject = $this->populateFromResponse($response);
// Repopulate data for this newly created object instance
// due to the response from API does not contain object name and containerName
$storageObject = $storageObject->populateFromArray([
'name' => $data['name'],
'containerName' => $data['containerName'],
]);
return $storageObject;
}
/**
* {@inheritdoc}
*/
public function retrieve()
{
$response = $this->executeWithState($this->api->headObject());
$this->populateFromResponse($response);
}
/**
* This call will perform a `GET` HTTP request for the given object and return back its content in the form of a
* Guzzle Stream object. Downloading an object will transfer all of the content for an object, and is therefore
* distinct from fetching its metadata (a `HEAD` request). The body of an object is not fetched by default to
* improve performance when handling large objects.
*
* @param array $data {@see \OpenStack\ObjectStore\v1\Api::getObject}
*
* @return StreamInterface
*/
public function download(array $data = []): StreamInterface
{
$data += ['name' => $this->name, 'containerName' => $this->containerName];
/** @var ResponseInterface $response */
$response = $this->execute($this->api->getObject(), $data);
$this->populateHeaders($response);
return $response->getBody();
}
/**
* {@inheritdoc}
*/
public function delete()
{
$this->executeWithState($this->api->deleteObject());
}
/**
* @param array $options {@see \OpenStack\ObjectStore\v1\Api::copyObject}
*/
public function copy(array $options)
{
$options += ['name' => $this->name, 'containerName' => $this->containerName];
$this->execute($this->api->copyObject(), $options);
}
/**
* Update object system metadata and custom metadata.
*
* @param array $options {@see \OpenStack\ObjectStore\v1\Api::postObject}
*
*/
public function update(array $options)
{
$options += ['name' => $this->name, 'containerName' => $this->containerName];
$options['metadata'] = array_merge($options['metadata'] ?? [] , $this->getMetadata());
$response = $this->execute($this->api->postObject(), $options);
$this->metadata = $this->parseMetadata($response);
}
/**
* Update object only custom metadata.
*
* @param array $metadata
*/
public function mergeMetadata(array $metadata)
{
$options = [
'containerName' => $this->containerName,
'name' => $this->name,
'metadata' => array_merge($metadata, $this->getMetadata()),
];
$response = $this->execute($this->api->postObject(), $options);
$this->metadata = $this->parseMetadata($response);
}
/**
* {@inheritdoc}
*/
public function resetMetadata(array $metadata)
{
$options = [
'containerName' => $this->containerName,
'name' => $this->name,
'metadata' => $metadata,
];
$response = $this->execute($this->api->postObject(), $options);
$this->metadata = $this->parseMetadata($response);
}
/**
* {@inheritdoc}
*/
public function getMetadata(): array
{
$response = $this->executeWithState($this->api->headObject());
return $this->parseMetadata($response);
}
}