Statistics
| Branch: | Tag: | Revision:

root / docs / pithos-api-guide.rst @ 890c2065

History | View | Annotate | Download (66.8 kB)

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

    
4
Introduction
5
------------
6

    
7
Pithos is a storage service implemented by GRNET (http://www.grnet.gr). Data is stored as objects, organized in containers, belonging to an account. This hierarchy of storage layers has been inspired by the OpenStack Object Storage (OOS) API and similar CloudFiles API by Rackspace. The Pithos API follows the OOS API as closely as possible. One of the design requirements has been to be able to use Pithos with clients built for the OOS, without changes.
8

    
9
However, to be able to take full advantage of the Pithos infrastructure, client software should be aware of the extensions that differentiate Pithos from OOS. Pithos objects can be updated, or appended to. Pithos will store sharing permissions per object and enforce corresponding authorization policies. Automatic version management, allows taking account and container listings back in time, as well as reading previous instances of objects.
10

    
11
The storage backend of Pithos is block oriented, permitting efficient, deduplicated data placement. The block structure of objects is exposed at the API layer, in order to encourage external software to implement advanced data management operations.
12

    
13
This document's goals are:
14

    
15
* Define the Pithos ReST API that allows the storage and retrieval of data and metadata via HTTP calls
16
* Specify metadata semantics and user interface guidelines for a common experience across client software implementations
17

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

    
20
Whatever marked as to be determined (**TBD**), should not be considered by implementors.
21

    
22
More info about Pithos can be found here: https://code.grnet.gr/projects/pithos
23

    
24
Document Revisions
25
^^^^^^^^^^^^^^^^^^
26

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

    
89
Pithos Users and Authentication
90
-------------------------------
91

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

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

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

    
98
The login URI accepts the following parameters:
99

    
100
======================  =========================
101
Request Parameter Name  Value
102
======================  =========================
103
next                    The URI to redirect to when the process is finished
104
renew                   Force token renewal (no value parameter)
105
force                   Force logout current user (no value parameter)
106
======================  =========================
107

    
108
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.
109

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

    
112
User feedback
113
-------------
114

    
115
Client software using Pithos, should forward to the ``/feedback`` URI. The Pithos service, depending on its configuration will delegate the request to the appropriate identity management URI.
116

    
117
======================  =========================
118
Request Parameter Name  Value
119
======================  =========================
120
auth_token              User token
121
feedback_msg            Feedback message
122
feedback_data           Additional information about service client status
123
======================  =========================
124

    
125
|
126

    
127
=========================== =====================
128
Return Code                 Description
129
=========================== =====================
130
200 (OK)                    The request succeeded
131
502 (Bad Gateway)           Send feedback failure
132
400 (Bad Request)           Method not allowed or missing or invalid user token parameter or invalid message data
133
401 (Unauthorized)          Missing or expired service token
134
500 (Internal Server Error) The request cannot be completed because of an internal error
135
=========================== =====================
136

    
137
User translation catalogs
138
-------------------------
139

    
140
Client software using Pithos, should forward to the ``/user_catalog`` URI to get uuid to displayname translations and vice versa. The Pithos service, depending on its configuration will delegate the request to the appropriate identity management URI.
141

    
142
The request body is a json formatted dictionary containing a list with uuids and another list of displaynames to translate.
143

    
144
Example request content:
145

    
146
::
147

    
148
  {"displaynames": ["user1@example.com", "user2@example.com"],
149
   "uuids":["ff53baa9-c025-4d56-a6e3-963db0438830", "a9dc21d2-bcb2-4104-9a9e-402b7c70d6d8"]}
150

    
151
Example reply:
152

    
153
::
154

    
155
  {"displayname_catalog": {"user1@example.com": "a9dc21d2-bcb2-4104-9a9e-402b7c70d6d8",
156
                        "user2@example.com": "816351c7-7405-4f26-a968-6380cf47ba1f"},
157
  'uuid_catalog': {"a9dc21d2-bcb2-4104-9a9e-402b7c70d6d8": "user1@example.com",
158
                   "ff53baa9-c025-4d56-a6e3-963db0438830": "user2@example.com"}}
159

    
160

    
161
|
162

    
163
=========================== =====================
164
Return Code                 Description
165
=========================== =====================
166
200 (OK)                    The request succeeded
167
400 (Bad Request)           Method not allowed or request body is not json formatted
168
401 (Unauthorized)          Missing or expired or invalid service token
169
500 (Internal Server Error) The request cannot be completed because of an internal error
170
=========================== =====================
171

    
172
The Pithos API
173
--------------
174

    
175
The URI requests supported by the Pithos API follow one of the following forms:
176

    
177
* Top level: ``https://hostname/v1/``
178
* Account level: ``https://hostname/v1/<account>``
179
* Container level: ``https://hostname/v1/<account>/<container>``
180
* Object level: ``https://hostname/v1/<account>/<container>/<object>``
181

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

    
184
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.
185

    
186
=========================  ================================
187
Return Code                Description
188
=========================  ================================
189
400 (Bad Request)          The request is invalid
190
401 (Unauthorized)         Missing or invalid token
191
403 (Forbidden)            Request not allowed
192
404 (Not Found)            The requested resource was not found
193
503 (Service Unavailable)  The request cannot be completed because of an internal error
194
=========================  ================================
195

    
196
Top Level
197
^^^^^^^^^
198

    
199
List of operations:
200

    
201
=========  ==================
202
Operation  Description
203
=========  ==================
204
GET        Authentication (for compatibility with the OOS API) or list allowed accounts
205
=========  ==================
206

    
207
GET
208
"""
209

    
210
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.
211

    
212
================  =====================
213
Return Code       Description
214
================  =====================
215
204 (No Content)  The request succeeded
216
================  =====================
217

    
218
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.
219

    
220
======================  =========================
221
Request Parameter Name  Value
222
======================  =========================
223
limit                   The amount of results requested (default is 10000)
224
marker                  Return containers with name lexicographically after marker
225
format                  Optional extended reply type (can be ``json`` or ``xml``)
226
======================  =========================
227

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

    
232
===========================  ============================
233
Name                         Description
234
===========================  ============================
235
name                         The name of the account
236
last_modified                The last account modification date (regardless of ``until``)
237
===========================  ============================
238

    
239
Example ``format=json`` reply:
240

    
241
::
242

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

    
245
Example ``format=xml`` reply:
246

    
247
::
248

    
249
  <?xml version="1.0" encoding="UTF-8"?>
250
  <accounts>
251
    <account>
252
      <name>user</name>
253
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
254
    </account>
255
    <account>...</account>
256
  </accounts>
257

    
258
===========================  =====================
259
Return Code                  Description
260
===========================  =====================
261
200 (OK)                     The request succeeded
262
204 (No Content)             The user has no access to other accounts (only for non-extended replies)
263
===========================  =====================
264

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

    
267
Account Level
268
^^^^^^^^^^^^^
269

    
270
List of operations:
271

    
272
=========  ==================
273
Operation  Description
274
=========  ==================
275
HEAD       Retrieve account metadata
276
GET        List containers
277
POST       Update account metadata
278
=========  ==================
279

    
280
HEAD
281
""""
282

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

    
290
|
291

    
292
======================  ===================================
293
Request Parameter Name  Value
294
======================  ===================================
295
until                   Optional timestamp
296
======================  ===================================
297

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

    
300
==========================  =====================
301
Reply Header Name           Value
302
==========================  =====================
303
X-Account-Container-Count   The total number of containers
304
X-Account-Bytes-Used        The total number of bytes stored
305
X-Account-Until-Timestamp   The last account modification date until the timestamp provided
306
X-Account-Group-*           Optional user defined groups
307
X-Account-Policy-*          Account behavior and limits
308
X-Account-Meta-*            Optional user defined metadata
309
Last-Modified               The last account modification date (regardless of ``until``)
310
==========================  =====================
311

    
312
|
313

    
314
================  =====================
315
Return Code       Description
316
================  =====================
317
204 (No Content)  The request succeeded
318
================  =====================
319

    
320

    
321
GET
322
"""
323

    
324
====================  ===========================
325
Request Header Name   Value
326
====================  ===========================
327
If-Modified-Since     Retrieve if account has changed since provided timestamp
328
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
329
====================  ===========================
330

    
331
|
332

    
333
======================  =========================
334
Request Parameter Name  Value
335
======================  =========================
336
limit                   The amount of results requested (default is 10000)
337
marker                  Return containers with name lexicographically after marker
338
format                  Optional extended reply type (can be ``json`` or ``xml``)
339
shared                  Show only shared containers (no value parameter)
340
public                  Show only public containers (no value parameter)
341
until                   Optional timestamp
342
======================  =========================
343

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

    
347
If a ``format=xml`` or ``format=json`` argument is given, extended information on the containers will be returned, serialized in the chosen format.
348
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):
349

    
350
===========================  ============================
351
Name                         Description
352
===========================  ============================
353
name                         The name of the container
354
count                        The number of objects inside the container
355
bytes                        The total size of the objects inside the container
356
last_modified                The last container modification date (regardless of ``until``)
357
x_container_until_timestamp  The last container modification date until the timestamp provided
358
x_container_policy           Container behavior and limits
359
===========================  ============================
360

    
361
Example ``format=json`` reply:
362

    
363
::
364

    
365
  [{"name": "pithos",
366
    "bytes": 62452,
367
    "count": 8374,
368
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
369
    "x_container_policy": {"quota": "53687091200", "versioning": "auto"}}, ...]
370

    
371
Example ``format=xml`` reply:
372

    
373
::
374

    
375
  <?xml version="1.0" encoding="UTF-8"?>
376
  <account name="user">
377
    <container>
378
      <name>pithos</name>
379
      <bytes>62452</bytes>
380
      <count>8374</count>
381
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
382
      <x_container_policy>
383
        <key>quota</key><value>53687091200</value>
384
        <key>versioning</key><value>auto</value>
385
      </x_container_policy>
386
    </container>
387
    <container>...</container>
388
  </account>
389

    
390
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.
391

    
392
===========================  =====================
393
Return Code                  Description
394
===========================  =====================
395
200 (OK)                     The request succeeded
396
204 (No Content)             The account has no containers (only for non-extended replies)
397
304 (Not Modified)           The account has not been modified
398
412 (Precondition Failed)    The condition set can not be satisfied
399
===========================  =====================
400

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

    
403

    
404
POST
405
""""
406

    
407
====================  ===========================
408
Request Header Name   Value
409
====================  ===========================
410
X-Account-Group-*     Optional user defined groups
411
X-Account-Meta-*      Optional user defined metadata
412
====================  ===========================
413

    
414
|
415

    
416
======================  ============================================
417
Request Parameter Name  Value
418
======================  ============================================
419
update                  Do not replace metadata/groups (no value parameter)
420
======================  ============================================
421

    
422
No reply content/headers.
423

    
424
The operation will overwrite all user defined metadata, except if ``update`` is defined.
425
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.
426

    
427
================  ===============================
428
Return Code       Description
429
================  ===============================
430
202 (Accepted)    The request has been accepted
431
================  ===============================
432

    
433

    
434
Container Level
435
^^^^^^^^^^^^^^^
436

    
437
List of operations:
438

    
439
=========  ============================
440
Operation  Description
441
=========  ============================
442
HEAD       Retrieve container metadata
443
GET        List objects
444
PUT        Create/update container
445
POST       Update container metadata
446
DELETE     Delete container
447
=========  ============================
448

    
449

    
450
HEAD
451
""""
452

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

    
460
|
461

    
462
======================  ===================================
463
Request Parameter Name  Value
464
======================  ===================================
465
until                   Optional timestamp
466
======================  ===================================
467

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

    
470
===========================  ===============================
471
Reply Header Name            Value
472
===========================  ===============================
473
X-Container-Object-Count     The total number of objects in the container
474
X-Container-Bytes-Used       The total number of bytes of all objects stored
475
X-Container-Block-Size       The block size used by the storage backend
476
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
477
X-Container-Until-Timestamp  The last container modification date until the timestamp provided
478
X-Container-Object-Meta      A list with all meta keys used by objects (**TBD**)
479
X-Container-Policy-*         Container behavior and limits
480
X-Container-Meta-*           Optional user defined metadata
481
Last-Modified                The last container modification date (regardless of ``until``)
482
===========================  ===============================
483

    
484
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**)
485

    
486
================  ===============================
487
Return Code       Description
488
================  ===============================
489
204 (No Content)  The request succeeded
490
================  ===============================
491

    
492

    
493
GET
494
"""
495

    
496
====================  ===========================
497
Request Header Name   Value
498
====================  ===========================
499
If-Modified-Since     Retrieve if container has changed since provided timestamp
500
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
501
====================  ===========================
502

    
503
|
504

    
505
======================  ===================================
506
Request Parameter Name  Value
507
======================  ===================================
508
limit                   The amount of results requested (default is 10000)
509
marker                  Return containers with name lexicographically after marker
510
prefix                  Return objects starting with prefix
511
delimiter               Return objects up to the delimiter (discussion follows)
512
path                    Assume ``prefix=path`` and ``delimiter=/``
513
format                  Optional extended reply type (can be ``json`` or ``xml``)
514
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 ``=``, ``!=``, ``<=``, ``>=``, ``<``, ``>``)
515
shared                  Show only shared objects (no value parameter)
516
public                  Show only public containers (no value parameter)
517
until                   Optional timestamp
518
======================  ===================================
519

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

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

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

    
527
===========================  ===============================
528
Reply Header Name            Value
529
===========================  ===============================
530
X-Container-Block-Size       The block size used by the storage backend
531
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
532
X-Container-Object-Meta      A list with all meta keys used by allowed objects (**TBD**)
533
Last-Modified                The last container modification date
534
===========================  ===============================
535

    
536
If a ``format=xml`` or ``format=json`` argument is given, extended information on the objects will be returned, serialized in the chosen format.
537
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):
538

    
539
==========================  ======================================
540
Name                        Description
541
==========================  ======================================
542
name                        The name of the object
543
hash                        The ETag of the object
544
bytes                       The size of the object
545
content_type                The MIME content type of the object
546
last_modified               The last object modification date (regardless of version)
547
x_object_hash               The Merkle hash
548
x_object_uuid               The object's UUID
549
x_object_version            The object's version identifier
550
x_object_version_timestamp  The object's version timestamp
551
x_object_modified_by        The user that committed the object's version
552
x_object_sharing            Object permissions (optional)
553
x_object_allowed_to         Allowed actions on object (optional)
554
x_object_public             Object's publicly accessible URI (optional)
555
==========================  ======================================
556

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

    
559
Extended replies may also include virtual directory markers in separate sections of the ``json`` or ``xml`` results.
560
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.
561
In JSON results they appear as dictionaries with only a ``subdir`` key. In XML results they appear interleaved with ``<object>`` tags as ``<subdir name="..." />``.
562
In case there is an object with the same name as a virtual directory marker, the object will be returned.
563

    
564
Example ``format=json`` reply:
565

    
566
::
567

    
568
  [{"name": "object",
569
    "bytes": 0,
570
    "hash": "d41d8cd98f00b204e9800998ecf8427e",
571
    "content_type": "application/octet-stream",
572
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
573
    "x_object_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
574
    "x_object_uuid": "8ed9af1b-c948-4bb6-82b0-48344f5c822c",
575
    "x_object_version": 98,
576
    "x_object_version_timestamp": "1322813441.565891",
577
    "x_object_modified_by": "user"}, ...]
578

    
579
Example ``format=xml`` reply:
580

    
581
::
582

    
583
  <?xml version="1.0" encoding="UTF-8"?>
584
  <container name="pithos">
585
    <object>
586
      <name>object</name>
587
      <bytes>0</bytes>
588
      <hash>d41d8cd98f00b204e9800998ecf8427e</hash>
589
      <content_type>application/octet-stream</content_type>
590
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
591
      <x_object_hash>e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855</x_object_hash>
592
      <x_object_uuid>8ed9af1b-c948-4bb6-82b0-48344f5c822c</x_object_uuid>
593
      <x_object_version>98</x_object_version>
594
      <x_object_version_timestamp>1322813441.565891</x_object_version_timestamp>
595
      <x_object_modified_by>chazapis</x_object_modified_by>
596
    </object>
597
    <object>...</object>
598
  </container>
599

    
600
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.
601

    
602
===========================  ===============================
603
Return Code                  Description
604
===========================  ===============================
605
200 (OK)                     The request succeeded
606
204 (No Content)             The account has no containers (only for non-extended replies)
607
304 (Not Modified)           The container has not been modified
608
412 (Precondition Failed)    The condition set can not be satisfied
609
===========================  ===============================
610

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

    
613

    
614
PUT
615
"""
616

    
617
====================  ================================
618
Request Header Name   Value
619
====================  ================================
620
X-Container-Policy-*  Container behavior and limits
621
X-Container-Meta-*    Optional user defined metadata
622
====================  ================================
623
 
624
No reply content/headers.
625

    
626
If no policy is defined, the container will be created with the default values.
627
Available policy directives:
628

    
629
* ``versioning``: Set to ``auto`` or ``none`` (default is ``auto``)
630
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
631

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

    
634
================  ===============================
635
Return Code       Description
636
================  ===============================
637
201 (Created)     The container has been created
638
202 (Accepted)    The request has been accepted
639
================  ===============================
640

    
641

    
642
POST
643
""""
644

    
645
====================  ================================
646
Request Header Name   Value
647
====================  ================================
648
Content-Length        The size of the supplied data (optional, to upload)
649
Content-Type          The MIME content type of the supplied data (optional, to upload)
650
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
651
X-Container-Policy-*  Container behavior and limits
652
X-Container-Meta-*    Optional user defined metadata
653
====================  ================================
654

    
655
|
656

    
657
======================  ============================================
658
Request Parameter Name  Value
659
======================  ============================================
660
format                  Optional hash list reply type (can be ``json`` or ``xml``)
661
update                  Do not replace metadata/policy (no value parameter)
662
======================  ============================================
663

    
664
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).
665

    
666
The operation will overwrite all user defined metadata, except if ``update`` is defined.
667
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.
668

    
669
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``).
670

    
671
================  ===============================
672
Return Code       Description
673
================  ===============================
674
202 (Accepted)    The request has been accepted
675
================  ===============================
676

    
677

    
678
DELETE
679
""""""
680

    
681
======================  ===================================
682
Request Parameter Name  Value
683
======================  ===================================
684
until                   Optional timestamp
685
delimiter               Optional delete objects starting with container name and delimiter
686
======================  ===================================
687

    
688
If ``until`` is defined, the container is "purged" up to that time (the history of all objects up to then is deleted). If also ``delimiter`` is defined, purge is applied only on the container.
689

    
690
No reply content/headers.
691

    
692
================  ===============================
693
Return Code       Description
694
================  ===============================
695
204 (No Content)  The request succeeded
696
409 (Conflict)    The container is not empty
697
================  ===============================
698

    
699

    
700
Object Level
701
^^^^^^^^^^^^
702

    
703
List of operations:
704

    
705
=========  =================================
706
Operation  Description
707
=========  =================================
708
HEAD       Retrieve object metadata
709
GET        Read object data
710
PUT        Write object data or copy/move object
711
COPY       Copy object
712
MOVE       Move object
713
POST       Update object metadata/data
714
DELETE     Delete object
715
=========  =================================
716

    
717

    
718
HEAD
719
""""
720

    
721
====================  ================================
722
Request Header Name   Value
723
====================  ================================
724
If-Match              Retrieve if ETags match
725
If-None-Match         Retrieve if ETags don't match
726
If-Modified-Since     Retrieve if object has changed since provided timestamp
727
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
728
====================  ================================
729

    
730
|
731

    
732
======================  ===================================
733
Request Parameter Name  Value
734
======================  ===================================
735
version                 Optional version identifier
736
======================  ===================================
737

    
738
|
739

    
740
==========================  ===============================
741
Reply Header Name           Value
742
==========================  ===============================
743
ETag                        The ETag of the object
744
Content-Length              The size of the object
745
Content-Type                The MIME content type of the object
746
Last-Modified               The last object modification date (regardless of version)
747
Content-Encoding            The encoding of the object (optional)
748
Content-Disposition         The presentation style of the object (optional)
749
X-Object-Hash               The Merkle hash
750
X-Object-UUID               The object's UUID
751
X-Object-Version            The object's version identifier
752
X-Object-Version-Timestamp  The object's version timestamp
753
X-Object-Modified-By        The user that comitted the object's version
754
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
755
X-Object-Sharing            Object permissions (optional)
756
X-Object-Shared-By          Object inheriting permissions (optional)
757
X-Object-Allowed-To         Allowed actions on object (optional)
758
X-Object-Public             Object's publicly accessible URI (optional)
759
X-Object-Meta-*             Optional user defined metadata
760
==========================  ===============================
761

    
762
|
763

    
764
================  ===============================
765
Return Code       Description
766
================  ===============================
767
200 (No Content)  The request succeeded
768
================  ===============================
769

    
770

    
771
GET
772
"""
773

    
774
====================  ================================
775
Request Header Name   Value
776
====================  ================================
777
Range                 Optional range of data to retrieve
778
If-Range              Retrieve the missing part if entity is unchanged; otherwise, retrieve the entire new entity (used together with Range header)
779
If-Match              Retrieve if ETags match
780
If-None-Match         Retrieve if ETags don't match
781
If-Modified-Since     Retrieve if object has changed since provided timestamp
782
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
783
====================  ================================
784

    
785
|
786

    
787
======================  ===================================
788
Request Parameter Name  Value
789
======================  ===================================
790
format                  Optional extended reply type (can be ``json`` or ``xml``)
791
hashmap                 Optional request for hashmap (no value parameter)
792
version                 Optional version identifier or ``list`` (specify a format if requesting a list)
793
======================  ===================================
794

    
795
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.
796

    
797
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).
798

    
799
Example ``format=json`` reply:
800

    
801
::
802

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

    
805
Example ``format=xml`` reply:
806

    
807
::
808

    
809
  <?xml version="1.0" encoding="UTF-8"?>
810
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
811
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
812
    <hash>...</hash>
813
  </object>
814

    
815
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.
816

    
817
Example ``format=json`` reply:
818

    
819
::
820

    
821
  {"versions": [[85, "1322734861.248469"], [86, "1322734905.009272"], ...]}
822

    
823
Example ``format=xml`` reply:
824

    
825
::
826

    
827
  <?xml version="1.0" encoding="UTF-8"?>
828
  <object name="file">
829
    <version timestamp="1322734861.248469">85</version>
830
    <version timestamp="1322734905.009272">86</version>
831
    <version timestamp="...">...</version>
832
  </object>
833

    
834
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.
835

    
836
==========================  ===============================
837
Reply Header Name           Value
838
==========================  ===============================
839
ETag                        The ETag of the object
840
Content-Length              The size of the data returned
841
Content-Type                The MIME content type of the object
842
Content-Range               The range of data included (only on a single range request)
843
Last-Modified               The last object modification date (regardless of version)
844
Content-Encoding            The encoding of the object (optional)
845
Content-Disposition         The presentation style of the object (optional)
846
X-Object-Hash               The Merkle hash
847
X-Object-UUID               The object's UUID
848
X-Object-Version            The object's version identifier
849
X-Object-Version-Timestamp  The object's version timestamp
850
X-Object-Modified-By        The user that comitted the object's version
851
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
852
X-Object-Sharing            Object permissions (optional)
853
X-Object-Shared-By          Object inheriting permissions (optional)
854
X-Object-Allowed-To         Allowed actions on object (optional)
855
X-Object-Public             Object's publicly accessible URI (optional)
856
X-Object-Meta-*             Optional user defined metadata
857
==========================  ===============================
858

    
859
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).
860

    
861
===========================  ==============================
862
Return Code                  Description
863
===========================  ==============================
864
200 (OK)                     The request succeeded
865
206 (Partial Content)        The range request succeeded
866
304 (Not Modified)           The object has not been modified
867
412 (Precondition Failed)    The condition set can not be satisfied
868
416 (Range Not Satisfiable)  The requested range is out of limits
869
===========================  ==============================
870

    
871

    
872
PUT
873
"""
874

    
875
====================  ================================
876
Request Header Name   Value
877
====================  ================================
878
If-Match              Put if ETags match with current object
879
If-None-Match         Put if ETags don't match with current object
880
ETag                  The MD5 hash of the object (optional to check written data)
881
Content-Length        The size of the data written
882
Content-Type          The MIME content type of the object
883
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
884
X-Copy-From           The source path in the form ``/<container>/<object>``
885
X-Move-From           The source path in the form ``/<container>/<object>``
886
X-Source-Account      The source account to copy/move from
887
X-Source-Version      The source version to copy from
888
Content-Encoding      The encoding of the object (optional)
889
Content-Disposition   The presentation style of the object (optional)
890
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
891
X-Object-Sharing      Object permissions (optional)
892
X-Object-Public       Object is publicly accessible (optional)
893
X-Object-Meta-*       Optional user defined metadata
894
====================  ================================
895

    
896
|
897

    
898
======================  ===================================
899
Request Parameter Name  Value
900
======================  ===================================
901
format                  Optional extended request/conflict response type (can be ``json`` or ``xml``)
902
hashmap                 Optional hashmap provided instead of data (no value parameter)
903
delimiter               Optional copy/move objects starting with object's path and delimiter (to be used with X-Copy-From/X-Move-From)
904
======================  ===================================
905

    
906
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).
907

    
908
Hashmaps should be formatted as outlined in ``GET``.
909

    
910
==========================  ===============================
911
Reply Header Name           Value
912
==========================  ===============================
913
ETag                        The MD5 hash of the object
914
X-Object-Version            The object's new version
915
==========================  ===============================
916

    
917
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.
918

    
919
==============================  ==============================
920
Return Code                     Description
921
==============================  ==============================
922
201 (Created)                   The object has been created
923
409 (Conflict)                  The object can not be created from the provided hashmap (a list of missing hashes will be included in the reply)
924
411 (Length Required)           Missing ``Content-Length`` or ``Content-Type`` in the request
925
413 (Request Entity Too Large)  Insufficient quota to complete the request
926
422 (Unprocessable Entity)      The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
927
==============================  ==============================
928

    
929

    
930
COPY
931
""""
932

    
933
====================  ================================
934
Request Header Name   Value
935
====================  ================================
936
If-Match              Proceed if ETags match with object
937
If-None-Match         Proceed if ETags don't match with object
938
Destination           The destination path in the form ``/<container>/<object>``
939
Destination-Account   The destination account to copy to
940
Content-Type          The MIME content type of the object (optional :sup:`*`)
941
Content-Encoding      The encoding of the object (optional)
942
Content-Disposition   The presentation style of the object (optional)
943
X-Source-Version      The source version to copy from
944
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
945
X-Object-Sharing      Object permissions (optional)
946
X-Object-Public       Object is publicly accessible (optional)
947
X-Object-Meta-*       Optional user defined metadata
948
====================  ================================
949

    
950
: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.*
951

    
952
======================  ===================================
953
Request Parameter Name  Value
954
======================  ===================================
955
format                  Optional conflict response type (can be ``json`` or ``xml``)
956
ignore_content_type     Ignore the supplied Content-Type
957
delimiter               Optional copy objects starting with object's path and delimiter
958
======================  ===================================
959

    
960
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.
961

    
962
==========================  ===============================
963
Reply Header Name           Value
964
==========================  ===============================
965
X-Object-Version            The object's new version
966
==========================  ===============================
967

    
968
|
969

    
970
==============================  ==============================
971
Return Code                     Description
972
==============================  ==============================
973
201 (Created)                   The object has been created
974
413 (Request Entity Too Large)  Insufficient quota to complete the request
975
==============================  ==============================
976

    
977

    
978
MOVE
979
""""
980

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

    
983

    
984
POST
985
""""
986

    
987
====================  ================================
988
Request Header Name   Value
989
====================  ================================
990
If-Match              Proceed if ETags match with object
991
If-None-Match         Proceed if ETags don't match with object
992
Content-Length        The size of the data written (optional, to update)
993
Content-Type          The MIME content type of the object (optional, to update)
994
Content-Range         The range of data supplied (optional, to update)
995
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
996
Content-Encoding      The encoding of the object (optional)
997
Content-Disposition   The presentation style of the object (optional)
998
X-Source-Object       Update with data from the object at path ``/<container>/<object>`` (optional, to update)
999
X-Source-Account      The source account to update from
1000
X-Source-Version      The source version to update from (optional, to update)
1001
X-Object-Bytes        The updated object's final size (optional, when updating)
1002
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
1003
X-Object-Sharing      Object permissions (optional)
1004
X-Object-Public       Object is publicly accessible (optional)
1005
X-Object-Meta-*       Optional user defined metadata
1006
====================  ================================
1007

    
1008
|
1009

    
1010
======================  ============================================
1011
Request Parameter Name  Value
1012
======================  ============================================
1013
format                  Optional conflict response type (can be ``json`` or ``xml``)
1014
update                  Do not replace metadata (no value parameter)
1015
======================  ============================================
1016

    
1017
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.
1018

    
1019
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.
1020

    
1021
To update an object's data:
1022

    
1023
* 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.
1024
* 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``).
1025
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
1026

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

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

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

    
1035
No reply content. No reply headers if only metadata is updated.
1036

    
1037
==========================  ===============================
1038
Reply Header Name           Value
1039
==========================  ===============================
1040
ETag                        The new ETag of the object (data updated)
1041
X-Object-Version            The object's new version
1042
==========================  ===============================
1043

    
1044
|
1045

    
1046
==============================  ==============================
1047
Return Code                     Description
1048
==============================  ==============================
1049
202 (Accepted)                  The request has been accepted (not a data update)
1050
204 (No Content)                The request succeeded (data updated)
1051
411 (Length Required)           Missing ``Content-Length`` in the request
1052
413 (Request Entity Too Large)  Insufficient quota to complete the request
1053
416 (Range Not Satisfiable)     The supplied range is invalid
1054
==============================  ==============================
1055

    
1056
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. ::
1057

    
1058
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt?X-Auth-Token=0000" enctype="multipart/form-data">
1059
    <input type="file" name="X-Object-Data">
1060
    <input type="submit">
1061
  </form>
1062

    
1063
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.
1064

    
1065
==========================  ===============================
1066
Reply Header Name           Value
1067
==========================  ===============================
1068
ETag                        The MD5 hash of the object
1069
X-Object-Version            The object's new version
1070
==========================  ===============================
1071

    
1072
|
1073

    
1074
==============================  ==============================
1075
Return Code                     Description
1076
==============================  ==============================
1077
201 (Created)                   The object has been created
1078
413 (Request Entity Too Large)  Insufficient quota to complete the request
1079
==============================  ==============================
1080

    
1081

    
1082
DELETE
1083
""""""
1084

    
1085
======================  ===================================
1086
Request Parameter Name  Value
1087
======================  ===================================
1088
until                   Optional timestamp
1089
delimiter               Optional delete also objects starting with object's path and delimiter
1090
======================  ===================================
1091

    
1092
If ``until`` is defined, the object is "purged" up to that time (the history up to then is deleted). If also ``delimiter`` is defined, purge is applied only on the object.
1093

    
1094
No reply content/headers.
1095

    
1096
===========================  ==============================
1097
Return Code                  Description
1098
===========================  ==============================
1099
204 (No Content)             The request succeeded
1100
===========================  ==============================
1101

    
1102
Sharing and Public Objects
1103
^^^^^^^^^^^^^^^^^^^^^^^^^^
1104

    
1105
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.
1106

    
1107
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.
1108

    
1109
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):
1110

    
1111
==========================  ===============================
1112
Reply Header Name           Value
1113
==========================  ===============================
1114
ETag                        The ETag of the object
1115
Content-Length              The size of the data returned
1116
Content-Type                The MIME content type of the object
1117
Content-Range               The range of data included (only on a single range request)
1118
Last-Modified               The last object modification date (regardless of version)
1119
Content-Encoding            The encoding of the object (optional)
1120
Content-Disposition         The presentation style of the object (optional)
1121
==========================  ===============================
1122

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

    
1125
Summary
1126
^^^^^^^
1127

    
1128
List of differences from the OOS API:
1129

    
1130
* Support for ``X-Account-Meta-*`` style headers at the account level. Use ``POST`` to update.
1131
* Support for ``X-Container-Meta-*`` style headers at the container level. Can be set when creating via ``PUT``. Use ``POST`` to update.
1132
* Header ``X-Container-Object-Meta`` at the container level and parameter ``meta`` in container listings. (**TBD**)
1133
* 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.
1134
* Headers ``X-Container-Block-*`` at the container level, exposing the underlying storage characteristics.
1135
* All metadata replies, at all levels, include latest modification information.
1136
* At all levels, a ``HEAD`` or ``GET`` request may use ``If-Modified-Since`` and ``If-Unmodified-Since`` headers.
1137
* 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.
1138
* Option to include only shared containers/objects in listings.
1139
* 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.
1140
* Multi-range object ``GET`` support as outlined in RFC2616.
1141
* Object hashmap retrieval through ``GET`` and the ``format`` parameter.
1142
* Object create via hashmap through ``PUT`` and the ``format`` parameter.
1143
* The object's Merkle hash is always returned in the ``X-Object-Hash`` header.
1144
* 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.
1145
* Object create using ``POST`` to support standard HTML forms.
1146
* 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``.
1147
* Include new version identifier in replies for object replace/change requests.
1148
* Object ``MOVE`` support and ``ignore_content_type`` parameter in both ``COPY`` and ``MOVE``.
1149
* Conditional object create/update operations, using ``If-Match`` and ``If-None-Match`` headers.
1150
* Time-variant account/container listings via the ``until`` parameter.
1151
* Object versions - parameter ``version`` in ``HEAD``/``GET`` (list versions with ``GET``), ``X-Object-Version-*`` meta in replies, ``X-Source-Version`` in ``PUT``/``COPY``.
1152
* 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.
1153
* Support for directory-based inheritance when enforcing permissions. Parent object carrying the authorization directives is reported in ``X-Object-Shared-By``.
1154
* Copy and move between accounts with ``X-Source-Account`` and ``Destination-Account`` headers.
1155
* Large object support with ``X-Object-Manifest``.
1156
* Trace the user that created/modified an object with ``X-Object-Modified-By``.
1157
* Purge container/object history with the ``until`` parameter in ``DELETE``.
1158

    
1159
Clarifications/suggestions:
1160

    
1161
* All non-ASCII characters in headers should be URL-encoded.
1162
* 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.
1163
* 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.
1164
* A ``GET`` reply for a level will include all headers of the corresponding ``HEAD`` request.
1165
* 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.
1166
* 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.
1167
* Container/object lists use a ``200`` return code if the reply is of type JSON/XML. The reply will include an empty JSON/XML.
1168
* 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.
1169
* 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.
1170
* A copy/move using ``PUT``/``COPY``/``MOVE`` will always update metadata, keeping all old values except the ones redefined in the request headers.
1171
* 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.
1172

    
1173
Recommended Practices and Examples
1174
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1175

    
1176
Assuming an authentication token is obtained, the following high-level operations are available - shown with ``curl``:
1177

    
1178
* Get account information ::
1179

    
1180
    curl -X HEAD -D - \
1181
         -H "X-Auth-Token: 0000" \
1182
         https://pithos.dev.grnet.gr/v1/user
1183

    
1184
* List available containers ::
1185

    
1186
    curl -X GET -D - \
1187
         -H "X-Auth-Token: 0000" \
1188
         https://pithos.dev.grnet.gr/v1/user
1189

    
1190
* Get container information ::
1191

    
1192
    curl -X HEAD -D - \
1193
         -H "X-Auth-Token: 0000" \
1194
         https://pithos.dev.grnet.gr/v1/user/pithos
1195

    
1196
* Add a new container ::
1197

    
1198
    curl -X PUT -D - \
1199
         -H "X-Auth-Token: 0000" \
1200
         https://pithos.dev.grnet.gr/v1/user/test
1201

    
1202
* Delete a container ::
1203

    
1204
    curl -X DELETE -D - \
1205
         -H "X-Auth-Token: 0000" \
1206
         https://pithos.dev.grnet.gr/v1/user/test
1207

    
1208
* List objects in a container ::
1209

    
1210
    curl -X GET -D - \
1211
         -H "X-Auth-Token: 0000" \
1212
         https://pithos.dev.grnet.gr/v1/user/pithos
1213

    
1214
* List objects in a container (extended reply) ::
1215

    
1216
    curl -X GET -D - \
1217
         -H "X-Auth-Token: 0000" \
1218
         https://pithos.dev.grnet.gr/v1/user/pithos?format=json
1219

    
1220
  It is recommended that extended replies are cached and subsequent requests utilize the ``If-Modified-Since`` header.
1221

    
1222
* List metadata keys used by objects in a container
1223

    
1224
  Will be in the ``X-Container-Object-Meta`` reply header, included in container information or object list (``HEAD`` or ``GET``). (**TBD**)
1225

    
1226
* List objects in a container having a specific meta defined ::
1227

    
1228
    curl -X GET -D - \
1229
         -H "X-Auth-Token: 0000" \
1230
         https://pithos.dev.grnet.gr/v1/user/pithos?meta=favorites
1231

    
1232
* Retrieve an object ::
1233

    
1234
    curl -X GET -D - \
1235
         -H "X-Auth-Token: 0000" \
1236
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1237

    
1238
* Retrieve an object (specific ranges of data) ::
1239

    
1240
    curl -X GET -D - \
1241
         -H "X-Auth-Token: 0000" \
1242
         -H "Range: bytes=0-9" \
1243
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1244

    
1245
  This will return the first 10 bytes. To get the first 10, bytes 30-39 and the last 100 use ``Range: bytes=0-9,30-39,-100``.
1246

    
1247
* Add a new object (folder type) (**TBD**) ::
1248

    
1249
    curl -X PUT -D - \
1250
         -H "X-Auth-Token: 0000" \
1251
         -H "Content-Type: application/directory" \
1252
         https://pithos.dev.grnet.gr/v1/user/pithos/folder
1253

    
1254
* Add a new object ::
1255

    
1256
    curl -X PUT -D - \
1257
         -H "X-Auth-Token: 0000" \
1258
         -H "Content-Type: text/plain" \
1259
         -T EXAMPLE.txt
1260
         https://pithos.dev.grnet.gr/v1/user/pithos/folder/EXAMPLE.txt
1261

    
1262
* Update an object ::
1263

    
1264
    curl -X POST -D - \
1265
         -H "X-Auth-Token: 0000" \
1266
         -H "Content-Length: 10" \
1267
         -H "Content-Type: application/octet-stream" \
1268
         -H "Content-Range: bytes 10-19/*" \
1269
         -d "0123456789" \
1270
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1271

    
1272
  This will update bytes 10-19 with the data specified.
1273

    
1274
* Update an object (append) ::
1275

    
1276
    curl -X POST -D - \
1277
         -H "X-Auth-Token: 0000" \
1278
         -H "Content-Length: 10" \
1279
         -H "Content-Type: application/octet-stream" \
1280
         -H "Content-Range: bytes */*" \
1281
         -d "0123456789" \
1282
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1283

    
1284
* Update an object (truncate) ::
1285

    
1286
    curl -X POST -D - \
1287
         -H "X-Auth-Token: 0000" \
1288
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1289
         -H "Content-Range: bytes 0-0/*" \
1290
         -H "X-Object-Bytes: 0" \
1291
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1292

    
1293
  This will truncate the object to 0 bytes.
1294

    
1295
* Add object metadata ::
1296

    
1297
    curl -X POST -D - \
1298
         -H "X-Auth-Token: 0000" \
1299
         -H "X-Object-Meta-First: first_meta_value" \
1300
         -H "X-Object-Meta-Second: second_meta_value" \
1301
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1302

    
1303
* Delete object metadata ::
1304

    
1305
    curl -X POST -D - \
1306
         -H "X-Auth-Token: 0000" \
1307
         -H "X-Object-Meta-First: first_meta_value" \
1308
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1309

    
1310
  Metadata can only be "set". To delete ``X-Object-Meta-Second``, reset all metadata.
1311

    
1312
* Delete an object ::
1313

    
1314
    curl -X DELETE -D - \
1315
         -H "X-Auth-Token: 0000" \
1316
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt