Statistics
| Branch: | Tag: | Revision:

root / docs / pithos-api-guide.rst @ 8f9976c6

History | View | Annotate | Download (58.4 kB)

1
Pithos+ API
2
===========
3

    
4
This is the Pithos+ API guide.
5

    
6

    
7
Overview
8
--------
9

    
10
Pithos+ data is stored as objects, organized in containers, belonging to an
11
account. This hierarchy of storage layers has been inspired by the OpenStack
12
Object Storage (OOS) API and similar CloudFiles API by Rackspace. The Pithos
13
API follows the OOS API as closely as possible. One of the design requirements
14
has been to be able to use Pithos with clients built for the OOS, without
15
changes.
16

    
17
However, to be able to take full advantage of the Pithos infrastructure, client
18
software should be aware of the extensions that differentiate Pithos from OOS.
19

    
20
This document's goals are:
21

    
22
 * Define the Pithos ReST API that allows the storage and retrieval of data and
23
   metadata via HTTP calls
24
 * Specify metadata semantics and user interface guidelines for a common
25
   experience across client software implementations
26

    
27
The present document is meant to be read alongside the OOS API documentation.
28
Thus, it is suggested that the reader is familiar with associated technologies,
29
the OOS API as well as the first version of the Pithos API. This document
30
refers to the version of Pithos+. Information on the first version of the
31
storage API can be found at http://code.google.com/p/gss.
32

    
33
Whatever marked as to be determined (**TBD**), should not be considered by
34
implementors.
35

    
36
Document Revisions
37
^^^^^^^^^^^^^^^^^^
38

    
39
=========================  ================================
40
Revision                   Description
41
=========================  ================================
42
0.9 (Feb 17, 2012)         Change permissions model.
43
\                          Do not include user-defined metadata in account/container/object listings.
44
0.8 (Jan 24, 2012)         Update allowed versioning values.
45
\                          Change policy/meta formatting in JSON/XML replies.
46
\                          Document that all non-ASCII characters in headers should be URL-encoded.
47
\                          Support metadata-based queries when listing objects at the container level.
48
\                          Note Content-Type issue when using the internal django web server.
49
\                          Add object UUID field.
50
\                          Always reply with the MD5 in the ETag.
51
\                          Note that ``/login`` will only work if an external authentication system is defined.
52
\                          Include option to ignore Content-Type on ``COPY``/``MOVE``.
53
\                          Use format parameter for conflict (409) and uploaded hash list (container level) replies.
54
0.7 (Nov 21, 2011)         Suggest upload/download methods using hashmaps.
55
\                          Propose syncing algorithm.
56
\                          Support cross-account object copy and move.
57
\                          Pass token as a request parameter when using ``POST`` via an HTML form.
58
\                          Optionally use source account to update object from another object.
59
\                          Use container ``POST`` to upload missing blocks of data.
60
\                          Report policy in account headers.
61
\                          Add insufficient quota reply.
62
\                          Use special meta to always report Merkle hash.
63
0.6 (Sept 13, 2011)        Reply with Merkle hash as the ETag when updating objects.
64
\                          Include version id in object replace/change replies.
65
\                          Change conflict (409) replies format to text.
66
\                          Tags should be migrated to a meta value.
67
\                          Container ``PUT`` updates metadata/policy.
68
\                          Report allowed actions in shared object replies.
69
\                          Provide ``https://hostname/login`` for Shibboleth authentication.
70
\                          Use ``hashmap`` parameter in object ``GET``/``PUT`` to use hashmaps.
71
0.5 (July 22, 2011)        Object update from another object's data.
72
\                          Support object truncate.
73
\                          Create object using a standard HTML form.
74
\                          Purge container/object history.
75
\                          List other accounts that share objects with a user.
76
\                          List shared containers/objects.
77
\                          Update implementation guidelines.
78
\                          Check preconditions when creating/updating objects.
79
0.4 (July 01, 2011)        Object permissions and account groups.
80
\                          Control versioning behavior and container quotas with container policy directives.
81
\                          Support updating/deleting individual metadata with ``POST``.
82
\                          Create object using hashmap.
83
0.3 (June 14, 2011)        Large object support with ``X-Object-Manifest``.
84
\                          Allow for publicly available objects via ``https://hostname/public``.
85
\                          Support time-variant account/container listings. 
86
\                          Add source version when duplicating with ``PUT``/``COPY``.
87
\                          Request version in object ``HEAD``/``GET`` requests (list versions with ``GET``).
88
0.2 (May 31, 2011)         Add object meta listing and filtering in containers.
89
\                          Include underlying storage characteristics in container meta.
90
\                          Support for partial object updates through ``POST``.
91
\                          Expose object hashmaps through ``GET``.
92
\                          Support for multi-range object ``GET`` requests.
93
0.1 (May 17, 2011)         Initial release. Based on OpenStack Object Storage Developer Guide API v1 (Apr. 15, 2011).
94
=========================  ================================
95

    
96
Users and Authentication
97
------------------------
98

    
99
In Pithos+, each user is uniquely identified by a token. All API requests
100
require a token and each token is internally resolved to an account string. The
101
API uses the account string to identify the user's own files, thus whether a
102
request is local or cross-account.
103

    
104
Pithos+ does not keep a user database. For development and testing purposes,
105
user identifiers and their corresponding tokens can be defined in the settings
106
file. However, Pithos is designed with an external authentication service in
107
mind. This service must handle the details of validating user credentials and
108
communicate with Pithos via a middleware software component that, given a
109
token, fills in the internal request account variable.
110

    
111
Client software using Pithos+, if not already knowing a user's identifier and
112
token, should forward to the ``/login`` URI. The Pithos server, depending on
113
its configuration will redirect to the appropriate login page.
114

    
115
The login URI accepts the following parameters:
116

    
117
======================  =========================
118
Request Parameter Name  Value
119
======================  =========================
120
next                    The URI to redirect to when the process is finished
121
renew                   Force token renewal (no value parameter)
122
force                   Force logout current user (no value parameter)
123
======================  =========================
124

    
125
When done with logging in, the service's login URI should redirect to the URI provided with ``next``, adding ``user`` and ``token`` parameters, which contain the account and token fields respectively.
126

    
127
A user management service that implements a login URI according to these conventions is Astakos (https://code.grnet.gr/projects/astakos), by GRNET.
128

    
129
API Operations
130
--------------
131

    
132
The URI requests supported by the Pithos+ API follow one of the following forms:
133

    
134
* Top level: ``https://hostname/v1/``
135
* Account level: ``https://hostname/v1/<account>``
136
* Container level: ``https://hostname/v1/<account>/<container>``
137
* Object level: ``https://hostname/v1/<account>/<container>/<object>``
138

    
139
All requests must include an ``X-Auth-Token`` - as a header, or a parameter.
140

    
141
The allowable request operations and respective return codes per level are presented in the remainder of this chapter. Common to all requests are the following return codes.
142

    
143
=========================  ================================
144
Return Code                Description
145
=========================  ================================
146
400 (Bad Request)          The request is invalid
147
401 (Unauthorized)         Missing or invalid token
148
403 (Forbidden)            Request not allowed
149
404 (Not Found)            The requested resource was not found
150
503 (Service Unavailable)  The request cannot be completed because of an internal error
151
=========================  ================================
152

    
153
Top Level
154
^^^^^^^^^
155

    
156
List of operations:
157

    
158
=========  ==================
159
Operation  Description
160
=========  ==================
161
GET        Authentication (for compatibility with the OOS API) or list allowed accounts
162
=========  ==================
163

    
164
GET
165
"""
166

    
167
If the ``X-Auth-User`` and ``X-Auth-Key`` headers are given, a dummy ``X-Auth-Token`` and ``X-Storage-Url`` will be replied, which can be used as a guest token/namespace for testing Pithos.
168

    
169
================  =====================
170
Return Code       Description
171
================  =====================
172
204 (No Content)  The request succeeded
173
================  =====================
174

    
175
If an ``X-Auth-Token`` is already present, the operation will be interpreted as a request to list other accounts that share objects to the user.
176

    
177
======================  =========================
178
Request Parameter Name  Value
179
======================  =========================
180
limit                   The amount of results requested (default is 10000)
181
marker                  Return containers with name lexicographically after marker
182
format                  Optional extended reply type (can be ``json`` or ``xml``)
183
======================  =========================
184

    
185
The reply is a list of account names.
186
If a ``format=xml`` or ``format=json`` argument is given, extended information on the accounts will be returned, serialized in the chosen format.
187
For each account, the information will include the following (names will be in lower case and with hyphens replaced with underscores):
188

    
189
===========================  ============================
190
Name                         Description
191
===========================  ============================
192
name                         The name of the account
193
last_modified                The last account modification date (regardless of ``until``)
194
===========================  ============================
195

    
196
Example ``format=json`` reply:
197

    
198
::
199

    
200
  [{"name": "user", "last_modified": "2011-12-02T08:10:41.565891+00:00"}, ...]
201

    
202
Example ``format=xml`` reply:
203

    
204
::
205

    
206
  <?xml version="1.0" encoding="UTF-8"?>
207
  <accounts>
208
    <account>
209
      <name>user</name>
210
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
211
    </account>
212
    <account>...</account>
213
  </accounts>
214

    
215
===========================  =====================
216
Return Code                  Description
217
===========================  =====================
218
200 (OK)                     The request succeeded
219
204 (No Content)             The user has no access to other accounts (only for non-extended replies)
220
===========================  =====================
221

    
222
Will use a ``200`` return code if the reply is of type JSON/XML.
223

    
224
Account Level
225
^^^^^^^^^^^^^
226

    
227
List of operations:
228

    
229
=========  ==================
230
Operation  Description
231
=========  ==================
232
HEAD       Retrieve account metadata
233
GET        List containers
234
POST       Update account metadata
235
=========  ==================
236

    
237
HEAD
238
""""
239

    
240
====================  ===========================
241
Request Header Name   Value
242
====================  ===========================
243
If-Modified-Since     Retrieve if account has changed since provided timestamp
244
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
245
====================  ===========================
246

    
247
|
248

    
249
======================  ===================================
250
Request Parameter Name  Value
251
======================  ===================================
252
until                   Optional timestamp
253
======================  ===================================
254

    
255
Cross-user requests are not allowed to use ``until`` and only include the account modification date in the reply.
256

    
257
==========================  =====================
258
Reply Header Name           Value
259
==========================  =====================
260
X-Account-Container-Count   The total number of containers
261
X-Account-Bytes-Used        The total number of bytes stored
262
X-Account-Until-Timestamp   The last account modification date until the timestamp provided
263
X-Account-Group-*           Optional user defined groups
264
X-Account-Policy-*          Account behavior and limits
265
X-Account-Meta-*            Optional user defined metadata
266
Last-Modified               The last account modification date (regardless of ``until``)
267
==========================  =====================
268

    
269
|
270

    
271
================  =====================
272
Return Code       Description
273
================  =====================
274
204 (No Content)  The request succeeded
275
================  =====================
276

    
277

    
278
GET
279
"""
280

    
281
====================  ===========================
282
Request Header Name   Value
283
====================  ===========================
284
If-Modified-Since     Retrieve if account has changed since provided timestamp
285
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
286
====================  ===========================
287

    
288
|
289

    
290
======================  =========================
291
Request Parameter Name  Value
292
======================  =========================
293
limit                   The amount of results requested (default is 10000)
294
marker                  Return containers with name lexicographically after marker
295
format                  Optional extended reply type (can be ``json`` or ``xml``)
296
shared                  Show only shared containers (no value parameter)
297
until                   Optional timestamp
298
======================  =========================
299

    
300
The reply is a list of container names. Account headers (as in a ``HEAD`` request) will also be included.
301
Cross-user requests are not allowed to use ``until`` and only include the account/container modification dates in the reply.
302

    
303
If a ``format=xml`` or ``format=json`` argument is given, extended information on the containers will be returned, serialized in the chosen format.
304
For each container, the information will include all container metadata, except user-defined (names will be in lower case and with hyphens replaced with underscores):
305

    
306
===========================  ============================
307
Name                         Description
308
===========================  ============================
309
name                         The name of the container
310
count                        The number of objects inside the container
311
bytes                        The total size of the objects inside the container
312
last_modified                The last container modification date (regardless of ``until``)
313
x_container_until_timestamp  The last container modification date until the timestamp provided
314
x_container_policy           Container behavior and limits
315
===========================  ============================
316

    
317
Example ``format=json`` reply:
318

    
319
::
320

    
321
  [{"name": "pithos",
322
    "bytes": 62452,
323
    "count": 8374,
324
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
325
    "x_container_policy": {"quota": "53687091200", "versioning": "auto"}}, ...]
326

    
327
Example ``format=xml`` reply:
328

    
329
::
330

    
331
  <?xml version="1.0" encoding="UTF-8"?>
332
  <account name="user">
333
    <container>
334
      <name>pithos</name>
335
      <bytes>62452</bytes>
336
      <count>8374</count>
337
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
338
      <x_container_policy>
339
        <key>quota</key><value>53687091200</value>
340
        <key>versioning</key><value>auto</value>
341
      </x_container_policy>
342
    </container>
343
    <container>...</container>
344
  </account>
345

    
346
For more examples of container details returned in JSON/XML formats refer to the OOS API documentation. In addition to the OOS API, Pithos returns policy fields, grouped as key-value pairs.
347

    
348
===========================  =====================
349
Return Code                  Description
350
===========================  =====================
351
200 (OK)                     The request succeeded
352
204 (No Content)             The account has no containers (only for non-extended replies)
353
304 (Not Modified)           The account has not been modified
354
412 (Precondition Failed)    The condition set can not be satisfied
355
===========================  =====================
356

    
357
Will use a ``200`` return code if the reply is of type JSON/XML.
358

    
359

    
360
POST
361
""""
362

    
363
====================  ===========================
364
Request Header Name   Value
365
====================  ===========================
366
X-Account-Group-*     Optional user defined groups
367
X-Account-Meta-*      Optional user defined metadata
368
====================  ===========================
369

    
370
|
371

    
372
======================  ============================================
373
Request Parameter Name  Value
374
======================  ============================================
375
update                  Do not replace metadata/groups (no value parameter)
376
======================  ============================================
377

    
378
No reply content/headers.
379

    
380
The operation will overwrite all user defined metadata, except if ``update`` is defined.
381
To create a group, include an ``X-Account-Group-*`` header with the name in the key and a comma separated list of user names in the value. If no ``X-Account-Group-*`` header is present, no changes will be applied to groups. The ``update`` parameter also applies to groups. To delete a specific group, use ``update`` and an empty header value.
382

    
383
================  ===============================
384
Return Code       Description
385
================  ===============================
386
202 (Accepted)    The request has been accepted
387
================  ===============================
388

    
389

    
390
Container Level
391
^^^^^^^^^^^^^^^
392

    
393
List of operations:
394

    
395
=========  ============================
396
Operation  Description
397
=========  ============================
398
HEAD       Retrieve container metadata
399
GET        List objects
400
PUT        Create/update container
401
POST       Update container metadata
402
DELETE     Delete container
403
=========  ============================
404

    
405

    
406
HEAD
407
""""
408

    
409
====================  ===========================
410
Request Header Name   Value
411
====================  ===========================
412
If-Modified-Since     Retrieve if container has changed since provided timestamp
413
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
414
====================  ===========================
415

    
416
|
417

    
418
======================  ===================================
419
Request Parameter Name  Value
420
======================  ===================================
421
until                   Optional timestamp
422
======================  ===================================
423

    
424
Cross-user requests are not allowed to use ``until`` and only include the container modification date in the reply.
425

    
426
===========================  ===============================
427
Reply Header Name            Value
428
===========================  ===============================
429
X-Container-Object-Count     The total number of objects in the container
430
X-Container-Bytes-Used       The total number of bytes of all objects stored
431
X-Container-Block-Size       The block size used by the storage backend
432
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
433
X-Container-Until-Timestamp  The last container modification date until the timestamp provided
434
X-Container-Object-Meta      A list with all meta keys used by objects (**TBD**)
435
X-Container-Policy-*         Container behavior and limits
436
X-Container-Meta-*           Optional user defined metadata
437
Last-Modified                The last container modification date (regardless of ``until``)
438
===========================  ===============================
439

    
440
The keys returned in ``X-Container-Object-Meta`` are all the unique strings after the ``X-Object-Meta-`` prefix, formatted as a comma-separated list. See container ``PUT`` for a reference of policy directives. (**TBD**)
441

    
442
================  ===============================
443
Return Code       Description
444
================  ===============================
445
204 (No Content)  The request succeeded
446
================  ===============================
447

    
448

    
449
GET
450
"""
451

    
452
====================  ===========================
453
Request Header Name   Value
454
====================  ===========================
455
If-Modified-Since     Retrieve if container has changed since provided timestamp
456
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
457
====================  ===========================
458

    
459
|
460

    
461
======================  ===================================
462
Request Parameter Name  Value
463
======================  ===================================
464
limit                   The amount of results requested (default is 10000)
465
marker                  Return containers with name lexicographically after marker
466
prefix                  Return objects starting with prefix
467
delimiter               Return objects up to the delimiter (discussion follows)
468
path                    Assume ``prefix=path`` and ``delimiter=/``
469
format                  Optional extended reply type (can be ``json`` or ``xml``)
470
meta                    Return objects that satisfy the key queries in the specified comma separated list (use ``<key>``, ``!<key>`` for existence queries, ``<key><op><value>`` for value queries, where ``<op>`` can be one of ``=``, ``!=``, ``<=``, ``>=``, ``<``, ``>``)
471
shared                  Show only shared objects (no value parameter)
472
until                   Optional timestamp
473
======================  ===================================
474

    
475
The ``path`` parameter overrides ``prefix`` and ``delimiter``. When using ``path``, results will include objects ending in ``delimiter``.
476

    
477
The keys given with ``meta`` will be matched with the strings after the ``X-Object-Meta-`` prefix.
478

    
479
The reply is a list of object names. Container headers (as in a ``HEAD`` request) will also be included.
480
Cross-user requests are not allowed to use ``until`` and include the following limited set of headers in the reply:
481

    
482
===========================  ===============================
483
Reply Header Name            Value
484
===========================  ===============================
485
X-Container-Block-Size       The block size used by the storage backend
486
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
487
X-Container-Object-Meta      A list with all meta keys used by allowed objects (**TBD**)
488
Last-Modified                The last container modification date
489
===========================  ===============================
490

    
491
If a ``format=xml`` or ``format=json`` argument is given, extended information on the objects will be returned, serialized in the chosen format.
492
For each object, the information will include all object metadata, except user-defined (names will be in lower case and with hyphens replaced with underscores). User-defined metadata includes ``X-Object-Meta-*``, ``X-Object-Manifest``, ``Content-Disposition`` and ``Content-Encoding`` keys. Also, sharing directives will only be included with the actual shared objects (inherited permissions are not calculated):
493

    
494
==========================  ======================================
495
Name                        Description
496
==========================  ======================================
497
name                        The name of the object
498
hash                        The ETag of the object
499
bytes                       The size of the object
500
content_type                The MIME content type of the object
501
last_modified               The last object modification date (regardless of version)
502
x_object_hash               The Merkle hash
503
x_object_uuid               The object's UUID
504
x_object_version            The object's version identifier
505
x_object_version_timestamp  The object's version timestamp
506
x_object_modified_by        The user that committed the object's version
507
x_object_sharing            Object permissions (optional)
508
x_object_allowed_to         Allowed actions on object (optional)
509
x_object_public             Object's publicly accessible URI (optional)
510
==========================  ======================================
511

    
512
Sharing metadata and last modification timestamp will only be returned if there is no ``until`` parameter defined.
513

    
514
Extended replies may also include virtual directory markers in separate sections of the ``json`` or ``xml`` results.
515
Virtual directory markers are only included when ``delimiter`` is explicitly set. They correspond to the substrings up to and including the first occurrence of the delimiter.
516
In JSON results they appear as dictionaries with only a ``subdir`` key. In XML results they appear interleaved with ``<object>`` tags as ``<subdir name="..." />``.
517
In case there is an object with the same name as a virtual directory marker, the object will be returned.
518

    
519
Example ``format=json`` reply:
520

    
521
::
522

    
523
  [{"name": "object",
524
    "bytes": 0,
525
    "hash": "d41d8cd98f00b204e9800998ecf8427e",
526
    "content_type": "application/octet-stream",
527
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
528
    "x_object_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
529
    "x_object_uuid": "8ed9af1b-c948-4bb6-82b0-48344f5c822c",
530
    "x_object_version": 98,
531
    "x_object_version_timestamp": "1322813441.565891",
532
    "x_object_modified_by": "user"}, ...]
533

    
534
Example ``format=xml`` reply:
535

    
536
::
537

    
538
  <?xml version="1.0" encoding="UTF-8"?>
539
  <container name="pithos">
540
    <object>
541
      <name>object</name>
542
      <bytes>0</bytes>
543
      <hash>d41d8cd98f00b204e9800998ecf8427e</hash>
544
      <content_type>application/octet-stream</content_type>
545
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
546
      <x_object_hash>e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855</x_object_hash>
547
      <x_object_uuid>8ed9af1b-c948-4bb6-82b0-48344f5c822c</x_object_uuid>
548
      <x_object_version>98</x_object_version>
549
      <x_object_version_timestamp>1322813441.565891</x_object_version_timestamp>
550
      <x_object_modified_by>chazapis</x_object_modified_by>
551
    </object>
552
    <object>...</object>
553
  </container>
554

    
555
For more examples of container details returned in JSON/XML formats refer to the OOS API documentation. In addition to the OOS API, Pithos returns more fields that should help with synchronization.
556

    
557
===========================  ===============================
558
Return Code                  Description
559
===========================  ===============================
560
200 (OK)                     The request succeeded
561
204 (No Content)             The account has no containers (only for non-extended replies)
562
304 (Not Modified)           The container has not been modified
563
412 (Precondition Failed)    The condition set can not be satisfied
564
===========================  ===============================
565

    
566
Will use a ``200`` return code if the reply is of type JSON/XML.
567

    
568

    
569
PUT
570
"""
571

    
572
====================  ================================
573
Request Header Name   Value
574
====================  ================================
575
X-Container-Policy-*  Container behavior and limits
576
X-Container-Meta-*    Optional user defined metadata
577
====================  ================================
578
 
579
No reply content/headers.
580

    
581
If no policy is defined, the container will be created with the default values.
582
Available policy directives:
583

    
584
* ``versioning``: Set to ``auto`` or ``none`` (default is ``auto``)
585
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
586

    
587
If the container already exists, the operation is equal to a ``POST`` with ``update`` defined.
588

    
589
================  ===============================
590
Return Code       Description
591
================  ===============================
592
201 (Created)     The container has been created
593
202 (Accepted)    The request has been accepted
594
================  ===============================
595

    
596

    
597
POST
598
""""
599

    
600
====================  ================================
601
Request Header Name   Value
602
====================  ================================
603
Content-Length        The size of the supplied data (optional, to upload)
604
Content-Type          The MIME content type of the supplied data (optional, to upload)
605
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
606
X-Container-Policy-*  Container behavior and limits
607
X-Container-Meta-*    Optional user defined metadata
608
====================  ================================
609

    
610
|
611

    
612
======================  ============================================
613
Request Parameter Name  Value
614
======================  ============================================
615
format                  Optional hash list reply type (can be ``json`` or ``xml``)
616
update                  Do not replace metadata/policy (no value parameter)
617
======================  ============================================
618

    
619
No reply content/headers, except when uploading data, where the reply consists of a list of hashes for the blocks received (in the format specified).
620

    
621
The operation will overwrite all user defined metadata, except if ``update`` is defined.
622
To change policy, include an ``X-Container-Policy-*`` header with the name in the key. If no ``X-Container-Policy-*`` header is present, no changes will be applied to policy. The ``update`` parameter also applies to policy - deleted values will revert to defaults. To delete/revert a specific policy directive, use ``update`` and an empty header value. See container ``PUT`` for a reference of policy directives.
623

    
624
To upload blocks of data to the container, set ``Content-Type`` to ``application/octet-stream`` and ``Content-Length`` to a valid value (except if using ``chunked`` as the ``Transfer-Encoding``).
625

    
626
================  ===============================
627
Return Code       Description
628
================  ===============================
629
202 (Accepted)    The request has been accepted
630
================  ===============================
631

    
632

    
633
DELETE
634
""""""
635

    
636
======================  ===================================
637
Request Parameter Name  Value
638
======================  ===================================
639
until                   Optional timestamp
640
======================  ===================================
641

    
642
If ``until`` is defined, the container is "purged" up to that time (the history of all objects up to then is deleted).
643

    
644
No reply content/headers.
645

    
646
================  ===============================
647
Return Code       Description
648
================  ===============================
649
204 (No Content)  The request succeeded
650
409 (Conflict)    The container is not empty
651
================  ===============================
652

    
653

    
654
Object Level
655
^^^^^^^^^^^^
656

    
657
List of operations:
658

    
659
=========  =================================
660
Operation  Description
661
=========  =================================
662
HEAD       Retrieve object metadata
663
GET        Read object data
664
PUT        Write object data or copy/move object
665
COPY       Copy object
666
MOVE       Move object
667
POST       Update object metadata/data
668
DELETE     Delete object
669
=========  =================================
670

    
671

    
672
HEAD
673
""""
674

    
675
====================  ================================
676
Request Header Name   Value
677
====================  ================================
678
If-Match              Retrieve if ETags match
679
If-None-Match         Retrieve if ETags don't match
680
If-Modified-Since     Retrieve if object has changed since provided timestamp
681
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
682
====================  ================================
683

    
684
|
685

    
686
======================  ===================================
687
Request Parameter Name  Value
688
======================  ===================================
689
version                 Optional version identifier
690
======================  ===================================
691

    
692
|
693

    
694
==========================  ===============================
695
Reply Header Name           Value
696
==========================  ===============================
697
ETag                        The ETag of the object
698
Content-Length              The size of the object
699
Content-Type                The MIME content type of the object
700
Last-Modified               The last object modification date (regardless of version)
701
Content-Encoding            The encoding of the object (optional)
702
Content-Disposition         The presentation style of the object (optional)
703
X-Object-Hash               The Merkle hash
704
X-Object-UUID               The object's UUID
705
X-Object-Version            The object's version identifier
706
X-Object-Version-Timestamp  The object's version timestamp
707
X-Object-Modified-By        The user that comitted the object's version
708
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
709
X-Object-Sharing            Object permissions (optional)
710
X-Object-Shared-By          Object inheriting permissions (optional)
711
X-Object-Allowed-To         Allowed actions on object (optional)
712
X-Object-Public             Object's publicly accessible URI (optional)
713
X-Object-Meta-*             Optional user defined metadata
714
==========================  ===============================
715

    
716
|
717

    
718
================  ===============================
719
Return Code       Description
720
================  ===============================
721
200 (No Content)  The request succeeded
722
================  ===============================
723

    
724

    
725
GET
726
"""
727

    
728
====================  ================================
729
Request Header Name   Value
730
====================  ================================
731
Range                 Optional range of data to retrieve
732
If-Range              Retrieve the missing part if entity is unchanged; otherwise, retrieve the entire new entity (used together with Range header)
733
If-Match              Retrieve if ETags match
734
If-None-Match         Retrieve if ETags don't match
735
If-Modified-Since     Retrieve if object has changed since provided timestamp
736
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
737
====================  ================================
738

    
739
|
740

    
741
======================  ===================================
742
Request Parameter Name  Value
743
======================  ===================================
744
format                  Optional extended reply type (can be ``json`` or ``xml``)
745
hashmap                 Optional request for hashmap (no value parameter)
746
version                 Optional version identifier or ``list`` (specify a format if requesting a list)
747
======================  ===================================
748

    
749
The reply is the object's data (or part of it), except if a hashmap is requested with ``hashmap``, or a version list with ``version=list`` (in both cases an extended reply format must be specified). Object headers (as in a ``HEAD`` request) are always included.
750

    
751
Hashmaps expose the underlying storage format of the object. Note that each hash is computed after trimming trailing null bytes of the corresponding block. The ``X-Object-Hash`` header reports the single Merkle hash of the object's hashmap (refer to http://bittorrent.org/beps/bep_0030.html for more information).
752

    
753
Example ``format=json`` reply:
754

    
755
::
756

    
757
  {"block_hash": "sha1", "hashes": ["7295c41da03d7f916440b98e32c4a2a39351546c", ...], "block_size": 131072, "bytes": 242}
758

    
759
Example ``format=xml`` reply:
760

    
761
::
762

    
763
  <?xml version="1.0" encoding="UTF-8"?>
764
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
765
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
766
    <hash>...</hash>
767
  </object>
768

    
769
Version lists include the version identifier and timestamp for each available object version. Version identifiers can be arbitrary strings, so use the timestamp to find newer versions.
770

    
771
Example ``format=json`` reply:
772

    
773
::
774

    
775
  {"versions": [[85, "1322734861.248469"], [86, "1322734905.009272"], ...]}
776

    
777
Example ``format=xml`` reply:
778

    
779
::
780

    
781
  <?xml version="1.0" encoding="UTF-8"?>
782
  <object name="file">
783
    <version timestamp="1322734861.248469">85</version>
784
    <version timestamp="1322734905.009272">86</version>
785
    <version timestamp="...">...</version>
786
  </object>
787

    
788
The ``Range`` header may include multiple ranges, as outlined in RFC2616. Then the ``Content-Type`` of the reply will be ``multipart/byteranges`` and each part will include a ``Content-Range`` header.
789

    
790
==========================  ===============================
791
Reply Header Name           Value
792
==========================  ===============================
793
ETag                        The ETag of the object
794
Content-Length              The size of the data returned
795
Content-Type                The MIME content type of the object
796
Content-Range               The range of data included (only on a single range request)
797
Last-Modified               The last object modification date (regardless of version)
798
Content-Encoding            The encoding of the object (optional)
799
Content-Disposition         The presentation style of the object (optional)
800
X-Object-Hash               The Merkle hash
801
X-Object-UUID               The object's UUID
802
X-Object-Version            The object's version identifier
803
X-Object-Version-Timestamp  The object's version timestamp
804
X-Object-Modified-By        The user that comitted the object's version
805
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
806
X-Object-Sharing            Object permissions (optional)
807
X-Object-Shared-By          Object inheriting permissions (optional)
808
X-Object-Allowed-To         Allowed actions on object (optional)
809
X-Object-Public             Object's publicly accessible URI (optional)
810
X-Object-Meta-*             Optional user defined metadata
811
==========================  ===============================
812

    
813
Sharing headers (``X-Object-Sharing``, ``X-Object-Shared-By`` and ``X-Object-Allowed-To``) are only included if the request is for the object's latest version (no specific ``version`` parameter is set).
814

    
815
===========================  ==============================
816
Return Code                  Description
817
===========================  ==============================
818
200 (OK)                     The request succeeded
819
206 (Partial Content)        The range request succeeded
820
304 (Not Modified)           The object has not been modified
821
412 (Precondition Failed)    The condition set can not be satisfied
822
416 (Range Not Satisfiable)  The requested range is out of limits
823
===========================  ==============================
824

    
825

    
826
PUT
827
"""
828

    
829
====================  ================================
830
Request Header Name   Value
831
====================  ================================
832
If-Match              Put if ETags match with current object
833
If-None-Match         Put if ETags don't match with current object
834
ETag                  The MD5 hash of the object (optional to check written data)
835
Content-Length        The size of the data written
836
Content-Type          The MIME content type of the object
837
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
838
X-Copy-From           The source path in the form ``/<container>/<object>``
839
X-Move-From           The source path in the form ``/<container>/<object>``
840
X-Source-Account      The source account to copy/move from
841
X-Source-Version      The source version to copy from
842
Content-Encoding      The encoding of the object (optional)
843
Content-Disposition   The presentation style of the object (optional)
844
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
845
X-Object-Sharing      Object permissions (optional)
846
X-Object-Public       Object is publicly accessible (optional)
847
X-Object-Meta-*       Optional user defined metadata
848
====================  ================================
849

    
850
|
851

    
852
======================  ===================================
853
Request Parameter Name  Value
854
======================  ===================================
855
format                  Optional extended request/conflict response type (can be ``json`` or ``xml``)
856
hashmap                 Optional hashmap provided instead of data (no value parameter)
857
======================  ===================================
858

    
859
The request is the object's data (or part of it), except if a hashmap is provided (using ``hashmap`` and ``format`` parameters). If using a hashmap and all different parts are stored in the server, the object is created. Otherwise the server returns Conflict (409) with the list of the missing parts (in simple text format, with one hash per line, or in JSON/XML - depending on the ``format`` parameter).
860

    
861
Hashmaps should be formatted as outlined in ``GET``.
862

    
863
==========================  ===============================
864
Reply Header Name           Value
865
==========================  ===============================
866
ETag                        The MD5 hash of the object
867
X-Object-Version            The object's new version
868
==========================  ===============================
869

    
870
The ``X-Object-Sharing`` header may include either a ``read=...`` comma-separated user/group list, or a ``write=...`` comma-separated user/group list, or both separated by a semicolon (``;``). Groups are specified as ``<account>:<group>``. To publish the object, set ``X-Object-Public`` to ``true``. To unpublish, set to ``false``, or use an empty header value.
871

    
872
==============================  ==============================
873
Return Code                     Description
874
==============================  ==============================
875
201 (Created)                   The object has been created
876
409 (Conflict)                  The object can not be created from the provided hashmap (a list of missing hashes will be included in the reply)
877
411 (Length Required)           Missing ``Content-Length`` or ``Content-Type`` in the request
878
413 (Request Entity Too Large)  Insufficient quota to complete the request
879
422 (Unprocessable Entity)      The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
880
==============================  ==============================
881

    
882

    
883
COPY
884
""""
885

    
886
====================  ================================
887
Request Header Name   Value
888
====================  ================================
889
If-Match              Proceed if ETags match with object
890
If-None-Match         Proceed if ETags don't match with object
891
Destination           The destination path in the form ``/<container>/<object>``
892
Destination-Account   The destination account to copy to
893
Content-Type          The MIME content type of the object (optional :sup:`*`)
894
Content-Encoding      The encoding of the object (optional)
895
Content-Disposition   The presentation style of the object (optional)
896
X-Source-Version      The source version to copy from
897
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
898
X-Object-Sharing      Object permissions (optional)
899
X-Object-Public       Object is publicly accessible (optional)
900
X-Object-Meta-*       Optional user defined metadata
901
====================  ================================
902

    
903
:sup:`*` *When using django locally with the supplied web server, use the ignore_content_type parameter, or do provide a valid Content-Type, as a type of text/plain is applied by default to all requests. Client software should always state ignore_content_type, except when a Content-Type is explicitly defined by the user.*
904

    
905
======================  ===================================
906
Request Parameter Name  Value
907
======================  ===================================
908
format                  Optional conflict response type (can be ``json`` or ``xml``)
909
ignore_content_type     Ignore the supplied Content-Type
910
======================  ===================================
911

    
912
Refer to ``PUT``/``POST`` for a description of request headers. Metadata is also copied, updated with any values defined. Sharing/publishing options are not copied.
913

    
914
==========================  ===============================
915
Reply Header Name           Value
916
==========================  ===============================
917
X-Object-Version            The object's new version
918
==========================  ===============================
919

    
920
|
921

    
922
==============================  ==============================
923
Return Code                     Description
924
==============================  ==============================
925
201 (Created)                   The object has been created
926
413 (Request Entity Too Large)  Insufficient quota to complete the request
927
==============================  ==============================
928

    
929

    
930
MOVE
931
""""
932

    
933
Same as ``COPY``, without the ``X-Source-Version`` request header. The ``MOVE`` operation is always applied on the latest version.
934

    
935

    
936
POST
937
""""
938

    
939
====================  ================================
940
Request Header Name   Value
941
====================  ================================
942
If-Match              Proceed if ETags match with object
943
If-None-Match         Proceed if ETags don't match with object
944
Content-Length        The size of the data written (optional, to update)
945
Content-Type          The MIME content type of the object (optional, to update)
946
Content-Range         The range of data supplied (optional, to update)
947
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
948
Content-Encoding      The encoding of the object (optional)
949
Content-Disposition   The presentation style of the object (optional)
950
X-Source-Object       Update with data from the object at path ``/<container>/<object>`` (optional, to update)
951
X-Source-Account      The source account to update from
952
X-Source-Version      The source version to update from (optional, to update)
953
X-Object-Bytes        The updated object's final size (optional, when updating)
954
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
955
X-Object-Sharing      Object permissions (optional)
956
X-Object-Public       Object is publicly accessible (optional)
957
X-Object-Meta-*       Optional user defined metadata
958
====================  ================================
959

    
960
|
961

    
962
======================  ============================================
963
Request Parameter Name  Value
964
======================  ============================================
965
format                  Optional conflict response type (can be ``json`` or ``xml``)
966
update                  Do not replace metadata (no value parameter)
967
======================  ============================================
968

    
969
The ``Content-Encoding``, ``Content-Disposition``, ``X-Object-Manifest`` and ``X-Object-Meta-*`` headers are considered to be user defined metadata. An operation without the ``update`` parameter will overwrite all previous values and remove any keys not supplied. When using ``update`` any metadata with an empty value will be deleted.
970

    
971
To change permissions, include an ``X-Object-Sharing`` header (as defined in ``PUT``). To publish, include an ``X-Object-Public`` header, with a value of ``true``. If no such headers are defined, no changes will be applied to sharing/public. Use empty values to remove permissions/unpublish (unpublishing also works with ``false`` as a header value). Sharing options are applied to the object - not its versions.
972

    
973
To update an object's data:
974

    
975
* Either set ``Content-Type`` to ``application/octet-stream``, or provide an object with ``X-Source-Object``. If ``Content-Type`` has some other value, it will be ignored and only the metadata will be updated.
976
* If the data is supplied in the request (using ``Content-Type`` instead of ``X-Source-Object``), a valid ``Content-Length`` header is required - except if using chunked transfers (set ``Transfer-Encoding`` to ``chunked``).
977
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
978

    
979
  * Client software MAY omit ``last-byte-pos`` of if the length of the range being transferred is unknown or difficult to determine.
980
  * Client software SHOULD not specify the ``instance-length`` (use a ``*``), unless there is a reason for performing a size check at the server.
981
* If ``Content-Range`` used has a ``byte-range-resp-spec = *``, data will be appended to the object.
982

    
983
Optionally, truncate the updated object to the desired length with the ``X-Object-Bytes`` header.
984

    
985
A data update will trigger an ETag change. Updated ETags may happen asynchronously and appear at the server with a delay.
986

    
987
No reply content. No reply headers if only metadata is updated.
988

    
989
==========================  ===============================
990
Reply Header Name           Value
991
==========================  ===============================
992
ETag                        The new ETag of the object (data updated)
993
X-Object-Version            The object's new version
994
==========================  ===============================
995

    
996
|
997

    
998
==============================  ==============================
999
Return Code                     Description
1000
==============================  ==============================
1001
202 (Accepted)                  The request has been accepted (not a data update)
1002
204 (No Content)                The request succeeded (data updated)
1003
411 (Length Required)           Missing ``Content-Length`` in the request
1004
413 (Request Entity Too Large)  Insufficient quota to complete the request
1005
416 (Range Not Satisfiable)     The supplied range is invalid
1006
==============================  ==============================
1007

    
1008
The ``POST`` method can also be used for creating an object via a standard HTML form. If the request ``Content-Type`` is ``multipart/form-data``, none of the above headers will be processed. The form should have an ``X-Object-Data`` field, as in the following example. The token is passed as a request parameter. ::
1009

    
1010
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt?X-Auth-Token=0000" enctype="multipart/form-data">
1011
    <input type="file" name="X-Object-Data">
1012
    <input type="submit">
1013
  </form>
1014

    
1015
This will create/override the object with the given name, as if using ``PUT``. The ``Content-Type`` of the object will be set to the value of the corresponding header sent in the part of the request containing the data (usually, automatically handled by the browser). Metadata, sharing and other object attributes can not be set this way. The response will contain the object's ETag.
1016

    
1017
==========================  ===============================
1018
Reply Header Name           Value
1019
==========================  ===============================
1020
ETag                        The MD5 hash of the object
1021
X-Object-Version            The object's new version
1022
==========================  ===============================
1023

    
1024
|
1025

    
1026
==============================  ==============================
1027
Return Code                     Description
1028
==============================  ==============================
1029
201 (Created)                   The object has been created
1030
413 (Request Entity Too Large)  Insufficient quota to complete the request
1031
==============================  ==============================
1032

    
1033

    
1034
DELETE
1035
""""""
1036

    
1037
======================  ===================================
1038
Request Parameter Name  Value
1039
======================  ===================================
1040
until                   Optional timestamp
1041
======================  ===================================
1042

    
1043
If ``until`` is defined, the object is "purged" up to that time (the history up to then is deleted).
1044

    
1045
No reply content/headers.
1046

    
1047
===========================  ==============================
1048
Return Code                  Description
1049
===========================  ==============================
1050
204 (No Content)             The request succeeded
1051
===========================  ==============================
1052

    
1053
Sharing and Public Objects
1054
^^^^^^^^^^^^^^^^^^^^^^^^^^
1055

    
1056
Read and write control in Pithos is managed by setting appropriate permissions with the ``X-Object-Sharing`` header. The permissions are applied using directory-based inheritance. A directory is an object with the corresponding content type. The default delimiter is ``/``. Thus, each set of authorization directives is applied to all objects in the directory object where the corresponding ``X-Object-Sharing`` header is defined. If there are nested/overlapping permissions, the closest to the object is applied. When retrieving an object, the ``X-Object-Shared-By`` header reports where it gets its permissions from. If not present, the object is the actual source of authorization directives.
1057

    
1058
A user may ``GET`` another account or container. The result will include a limited reply, containing only the allowed containers or objects respectively. A top-level request with an authentication token, will return a list of allowed accounts, so the user can easily find out which other users share objects. The ``X-Object-Allowed-To`` header lists the actions allowed on an object, if it does not belong to the requesting user.
1059

    
1060
Objects that are marked as public, via the ``X-Object-Public`` meta, are also available at the corresponding URI returned for ``HEAD`` or ``GET``. Requests for public objects do not need to include an ``X-Auth-Token``. Pithos will ignore request parameters and only include the following headers in the reply (all ``X-Object-*`` meta is hidden):
1061

    
1062
==========================  ===============================
1063
Reply Header Name           Value
1064
==========================  ===============================
1065
ETag                        The ETag of the object
1066
Content-Length              The size of the data returned
1067
Content-Type                The MIME content type of the object
1068
Content-Range               The range of data included (only on a single range request)
1069
Last-Modified               The last object modification date (regardless of version)
1070
Content-Encoding            The encoding of the object (optional)
1071
Content-Disposition         The presentation style of the object (optional)
1072
==========================  ===============================
1073

    
1074
Public objects are not included and do not influence cross-user listings. They are, however, readable by all users.
1075

    
1076
Summary
1077
^^^^^^^
1078

    
1079
List of differences from the OOS API:
1080

    
1081
* Support for ``X-Account-Meta-*`` style headers at the account level. Use ``POST`` to update.
1082
* Support for ``X-Container-Meta-*`` style headers at the container level. Can be set when creating via ``PUT``. Use ``POST`` to update.
1083
* Header ``X-Container-Object-Meta`` at the container level and parameter ``meta`` in container listings. (**TBD**)
1084
* Account and container policies to manage behavior and limits. Container behavior overrides account settings. Account quota sets the maximum bytes limit, regardless of container values.
1085
* Headers ``X-Container-Block-*`` at the container level, exposing the underlying storage characteristics.
1086
* All metadata replies, at all levels, include latest modification information.
1087
* At all levels, a ``HEAD`` or ``GET`` request may use ``If-Modified-Since`` and ``If-Unmodified-Since`` headers.
1088
* Container/object lists include more fields if the reply is of type JSON/XML. Some names are kept to their OOS API equivalents for compatibility.
1089
* Option to include only shared containers/objects in listings.
1090
* Object metadata allowed, in addition to ``X-Object-Meta-*``: ``Content-Encoding``, ``Content-Disposition``, ``X-Object-Manifest``. These are all replaced with every update operation, except if using the ``update`` parameter (in which case individual keys can also be deleted). Deleting meta by providing empty values also works when copying/moving an object.
1091
* Multi-range object ``GET`` support as outlined in RFC2616.
1092
* Object hashmap retrieval through ``GET`` and the ``format`` parameter.
1093
* Object create via hashmap through ``PUT`` and the ``format`` parameter.
1094
* The object's Merkle hash is always returned in the ``X-Object-Hash`` header.
1095
* The object's UUID is always returned in the ``X-Object-UUID`` header. The UUID remains unchanged, even when the object's data or metadata changes, or the object is moved to another path (is renamed). A new UUID is assigned when creating or copying an object.
1096
* Object create using ``POST`` to support standard HTML forms.
1097
* Partial object updates through ``POST``, using the ``Content-Length``, ``Content-Type``, ``Content-Range`` and ``Transfer-Encoding`` headers. Use another object's data to update with ``X-Source-Object`` and ``X-Source-Version``. Truncate with ``X-Object-Bytes``.
1098
* Include new version identifier in replies for object replace/change requests.
1099
* Object ``MOVE`` support and ``ignore_content_type`` parameter in both ``COPY`` and ``MOVE``.
1100
* Conditional object create/update operations, using ``If-Match`` and ``If-None-Match`` headers.
1101
* Time-variant account/container listings via the ``until`` parameter.
1102
* Object versions - parameter ``version`` in ``HEAD``/``GET`` (list versions with ``GET``), ``X-Object-Version-*`` meta in replies, ``X-Source-Version`` in ``PUT``/``COPY``.
1103
* Sharing/publishing with ``X-Object-Sharing``, ``X-Object-Public`` at the object level. Cross-user operations are allowed - controlled by sharing directives. Available actions in cross-user requests are reported with ``X-Object-Allowed-To``. Permissions may include groups defined with ``X-Account-Group-*`` at the account level. These apply to the object - not its versions.
1104
* Support for directory-based inheritance when enforcing permissions. Parent object carrying the authorization directives is reported in ``X-Object-Shared-By``.
1105
* Copy and move between accounts with ``X-Source-Account`` and ``Destination-Account`` headers.
1106
* Large object support with ``X-Object-Manifest``.
1107
* Trace the user that created/modified an object with ``X-Object-Modified-By``.
1108
* Purge container/object history with the ``until`` parameter in ``DELETE``.
1109

    
1110
Clarifications/suggestions:
1111

    
1112
* All non-ASCII characters in headers should be URL-encoded.
1113
* Authentication is done by another system. The token is used in the same way, but it is obtained differently. The top level ``GET`` request is kept compatible with the OOS API and allows for guest/testing operations.
1114
* Some processing is done in the variable part of all ``X-*-Meta-*`` headers. If it includes underscores, they will be converted to dashes and the first letter of all intra-dash strings will be capitalized.
1115
* A ``GET`` reply for a level will include all headers of the corresponding ``HEAD`` request.
1116
* To avoid conflicts between objects and virtual directory markers in container listings, it is recommended that object names do not end with the delimiter used.
1117
* The ``Accept`` header may be used in requests instead of the ``format`` parameter to specify the desired request/reply format. The parameter overrides the header.
1118
* Container/object lists use a ``200`` return code if the reply is of type JSON/XML. The reply will include an empty JSON/XML.
1119
* In headers, dates are formatted according to RFC 1123. In extended information listings, the ``last_modified`` field is formatted according to ISO 8601 (for OOS API compatibility). All other fields (Pithos extensions) use integer tiemstamps.
1120
* The ``Last-Modified`` header value always reflects the actual latest change timestamp, regardless of time control parameters and version requests. Time precondition checks with ``If-Modified-Since`` and ``If-Unmodified-Since`` headers are applied to this value.
1121
* A copy/move using ``PUT``/``COPY``/``MOVE`` will always update metadata, keeping all old values except the ones redefined in the request headers.
1122
* A ``HEAD`` or ``GET`` for an ``X-Object-Manifest`` object, will include modified ``Content-Length`` and ``ETag`` headers, according to the characteristics of the objects under the specified prefix. The ``Etag`` will be the MD5 hash of the corresponding ETags concatenated. In extended container listings there is no metadata processing.