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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
## Setup
Conceptually, a container contains objects (also known as files). In order to work with
objects, you will need to instantiate a container object first as [documented here](https://github.com/rackspace/php-opencloud/blob/master/docs/userguide/ObjectStore/Storage/Container.md).
## Note on object properties
Please be aware that you cannot directly access the properties of DataObject anymore, you __must__ use appropriate getter/
setter methods:
|Property|Method|
|--------|------|
|Parent container|`getContainer`|
|Name|`getName`|
|Body of file|`getContent`|
|Size of file|`getContentLength`|
|Type of file|`getContentType`|
|ETag checksum|`getEtag`|
|Last modified date|`getLastModified`|
## Create an object
There are three ways to upload a new file, each of which has different business needs.
__N.B__: Unlike previous versions, you do not need to manually specify your object's content type. The API will do this
for you.
### To upload a single/basic file:
```php
use OpenCloud\ObjectStore\Resource\DataObject;
$data = fopen('/path/to/sample.mp3', 'r+');
// alternatively, you can pass in a string as the file contents `$data` argument (instead of a resource)
$meta = array(
'Author' => 'Camera Obscura',
'Origin' => 'Glasgow'
);
$metaHeaders = DataObject::stockHeaders($meta);
$customHeaders = array();
$allHeaders = $metaHeaders + $customHeaders;
$container->uploadObject('sample.mp3', $data, $allHeaders);
```
### To upload multiple small-to-mid sized files:
```php
$files = array(
array(
'name' => 'apache.log',
'path' => '/etc/httpd/logs/error_log'
),
array(
'name' => 'mysql.log',
'body' => fopen('/tmp/mysql.log', 'r+')
),
array(
'name' => 'to_do_list.txt',
'body' => 'PHONE HOME'
)
);
$container->uploadObjects($files);
```
As you can see, the `name` key is required for every file. You must also specify _either_ a path key (to an existing
file), or a `body`. The `body` can either be a PHP resource or a string representation of the content you want to upload.
### To upload large files
For files over 5GB, you will need to use the `OpenCloud\ObjectStore\Upload\TransferBuilder` factory to build your transfer,
upon which you can execute your upload functionality. For your convenience, the Container resource object contains a
simple method to do this heavy lifting for you:
```php
$transfer = $container->setupObjectTransfer(array(
'name' => 'video.mov',
'path' => '/home/jamie/video.mov',
'metadata' => array(
'Author' => 'Jamie'
),
'concurrency' => 4,
'partSize' => 1.5 * Size::GB
));
$transfer->upload();
```
You can specify how many concurrent cURL connections are used to upload parts of your file. The file is fragmented into
chunks, each of which is uploaded individually as a separate file (the filename of each part will indicate that it's a
segment rather than the full file). After all parts are uploaded, a manifest is uploaded. When the end-user accesses
the 5GB by its true filename, it actually references the manifest file which concatenates each segment into a streaming
download.
## List objects in a container
To return a list of objects:
```php
$files = $container->objectList();
while ($file = $files->next()) {
// ... do something
}
```
By default, 10,000 objects are returned as a maximum. To get around this, you can construct a query which refines your
result set. For a full specification of query parameters relating to collection filtering, see the [official docs](http://docs.openstack.org/api/openstack-object-storage/1.0/content/list-objects.html).
```php
$container->objectList(array('prefix' => 'logFile_'));
```
## Get object
To retrieve a specific file from Cloud Files:
```php
$file = $container->getObject('summer_vacation.mp4');
```
### Conditional requests
You can also perform conditional requests according to [RFC 2616 specification](http://www.ietf.org/rfc/rfc2616.txt)
(ยงยง 14.24-26). Supported headers are `If-Match`, `If-None-Match`, `If-Modified-Since` and `If-Unmodified-Since`.
So, to retrieve a file's contents only if it's been recently changed
```php
$file = $container->getObject('error_log.txt', array(
'If-Modified-Since' => 'Tue, 15 Nov 1994 08:12:31 GMT'
));
if ($file->getContentLength()) {
echo 'Has been changed since the above date';
} else {
echo 'Has not been changed';
}
```
Retrieve a file only if it has NOT been modified (and expect a 412 on failure):
```
use Guzzle\Http\Exception\ClientErrorResponseException;
try {
$oldImmutableFile = $container->getObject('payroll_2001.xlsx', array(
'If-Unmodified-Since' => 'Mon, 31 Dec 2001 23:00:00 GMT'
));
} catch (ClientErrorResponseException $e) {
echo 'This file has been modified...';
}
```
Finally, you can specify a range - which will return a subset of bytes from the file specified. To return the last 20B
of a file:
```php
$snippet = $container->getObject('output.log', array('range' => 'bytes=-20'));
```
## Update an existing object
Updating content is easy:
```php
$file->setContent(fopen('/path/to/new/content', 'r+'));
$file->update();
```
Bear in mind that updating a file name will result in a new file being generated (under the new name). You will need to
delete the old file.
## Copy object
To copy a file to another location, you need to specify a string-based destination path:
```php
$object->copy('/container_2/new_object_name');
```
## Delete object
```php
$object->delete();
```
## Get object metadata
Metadata will be automatically populated when the file is retrieved from the API. To access these populated values:
```php
$object->getMetadata();
```
But, if for some reason, you'd like to retrieve the freshest data by executing a HTTP request to the API:
```php
$object->retrieveMetadata();
```
## Update object metadata
Similarly, with setting metadata there are two options: you can update the metadata values of the local object (i.e. no
HTTP request) if you anticipate you'll be executing one soon (an update operation for example):
```php
// There's no need to execute a HTTP request, because we'll soon do one anyway for the update operation
$object->setMetadata(array(
'Author' => 'Hemingway'
));
// ... code here
$object->update();
```
Alternatively, you can update the API straight away - so that everything is retained:
```php
$object->saveMetadata(array(
'Author' => 'Hemingway'
));
```
Please be aware that these methods override and wipe existing values. If you want to append values to your metadata, use
the correct method:
```php
$metadata = $object->appendToMetadata(array(
'Author' => 'Hemingway'
));
$object->saveMetadata($metadata);
```
## Extract archive
CloudFiles provides you the ability to extract uploaded archives to particular destinations. The archive will be extracted
and its contents will populate the particular area specified. To upload file (which might represent a directory structure)
into a particular container:
```php
use OpenCloud\ObjectStore\Constants\UrlType;
$service->bulkExtract('container_1', fopen('/home/jamie/files.tar.gz','r'), UrlType::TAR_GZ);
```
You can also omit the container name (i.e. provide an empty string as the first argument). If you do this, the API will
create the containers necessary to house the extracted files - this is done based on the filenames inside the archive.
## Bulk delete
Bulk delete a set of paths:
```php
$pathsToBeDeleted = array('/container_1/old_file', '/container_2/notes.txt', '/container_1/older_file.log');
$service->bulkDelete($pathsToBeDeleted);
```
|