Statistics
| Branch: | Tag: | Revision:

root / docs / pithos-api-guide.rst @ 6fe32fb6

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

    
91
Pithos Users and Authentication
92
-------------------------------
93

    
94
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.
95

    
96
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.
97

    
98
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.
99

    
100
The login URI accepts the following parameters:
101

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

    
110
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.
111

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

    
114
User feedback
115
-------------
116

    
117
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.
118

    
119
========================= =========  ==================
120
Uri                       Method     Description
121
========================= =========  ==================
122
``/feedback``             POST       Send feedback
123
========================= =========  ==================
124

    
125
|
126

    
127
======================  =========================
128
Request Parameter Name  Value
129
======================  =========================
130
feedback_msg            Feedback message
131
feedback_data           Additional information about service client status
132
======================  =========================
133

    
134
|
135

    
136
====================  ===========================
137
Request Header Name   Value
138
====================  ===========================
139
X-Auth-Token          User authentication token
140
====================  ===========================
141

    
142
|
143

    
144
=========================== =====================
145
Return Code                 Description
146
=========================== =====================
147
200 (OK)                    The request succeeded
148
502 (Bad Gateway)           Send feedback failure
149
400 (Bad Request)           Method not allowed or invalid message data
150
401 (Unauthorized)          Missing or expired user token
151
500 (Internal Server Error) The request cannot be completed because of an internal error
152
=========================== =====================
153

    
154
User translation catalogs
155
-------------------------
156

    
157
Client software using Pithos, should forward to the ``/user_catalogs`` 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.
158

    
159
================================ =========  ==================
160
Uri                              Method     Description
161
================================ =========  ==================
162
``/user_catalogs``               POST       Get 2 catalogs containing uuid to displayname mapping and the opposite
163
================================ =========  ==================
164

    
165
|
166

    
167
====================  ===========================
168
Request Header Name   Value
169
====================  ===========================
170
X-Auth-Token          User authentication token
171
====================  ===========================
172

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

    
175
Example request content:
176

    
177
::
178

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

    
182
Example reply:
183

    
184
::
185

    
186
  {"displayname_catalog": {"user1@example.com": "a9dc21d2-bcb2-4104-9a9e-402b7c70d6d8",
187
                        "user2@example.com": "816351c7-7405-4f26-a968-6380cf47ba1f"},
188
  'uuid_catalog': {"a9dc21d2-bcb2-4104-9a9e-402b7c70d6d8": "user1@example.com",
189
                   "ff53baa9-c025-4d56-a6e3-963db0438830": "user2@example.com"}}
190

    
191

    
192
|
193

    
194
=========================== =====================
195
Return Code                 Description
196
=========================== =====================
197
200 (OK)                    The request succeeded
198
400 (Bad Request)           Method not allowed or request body is not json formatted
199
401 (Unauthorized)          Missing or expired or invalid user token
200
500 (Internal Server Error) The request cannot be completed because of an internal error
201
=========================== =====================
202

    
203
The Pithos API
204
--------------
205

    
206
The URI requests supported by the Pithos API follow one of the following forms:
207

    
208
* Top level: ``https://hostname/v1/``
209
* Account level: ``https://hostname/v1/<account>``
210
* Container level: ``https://hostname/v1/<account>/<container>``
211
* Object level: ``https://hostname/v1/<account>/<container>/<object>``
212

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

    
215
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.
216

    
217
==============================  ================================
218
Return Code                     Description
219
==============================  ================================
220
400 (Bad Request)               The request is invalid
221
401 (Unauthorized)              Missing or invalid token
222
403 (Forbidden)                 Request not allowed
223
404 (Not Found)                 The requested resource was not found
224
413 (Request Entity Too Large)  Insufficient quota to complete the request
225
503 (Service Unavailable)       The request cannot be completed because of an internal error
226
==============================  ================================
227

    
228
Top Level
229
^^^^^^^^^
230

    
231
List of operations:
232

    
233
=========  ==================
234
Operation  Description
235
=========  ==================
236
GET        Authentication (for compatibility with the OOS API) or list allowed accounts
237
=========  ==================
238

    
239
GET
240
"""
241

    
242
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.
243

    
244
================  =====================
245
Return Code       Description
246
================  =====================
247
204 (No Content)  The request succeeded
248
================  =====================
249

    
250
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.
251

    
252
======================  =========================
253
Request Parameter Name  Value
254
======================  =========================
255
limit                   The amount of results requested (default is 10000)
256
marker                  Return containers with name lexicographically after marker
257
format                  Optional extended reply type (can be ``json`` or ``xml``)
258
======================  =========================
259

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

    
264
===========================  ============================
265
Name                         Description
266
===========================  ============================
267
name                         The name of the account
268
last_modified                The last account modification date (regardless of ``until``)
269
===========================  ============================
270

    
271
Example ``format=json`` reply:
272

    
273
::
274

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

    
277
Example ``format=xml`` reply:
278

    
279
::
280

    
281
  <?xml version="1.0" encoding="UTF-8"?>
282
  <accounts>
283
    <account>
284
      <name>user</name>
285
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
286
    </account>
287
    <account>...</account>
288
  </accounts>
289

    
290
===========================  =====================
291
Return Code                  Description
292
===========================  =====================
293
200 (OK)                     The request succeeded
294
204 (No Content)             The user has no access to other accounts (only for non-extended replies)
295
===========================  =====================
296

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

    
299
Account Level
300
^^^^^^^^^^^^^
301

    
302
List of operations:
303

    
304
=========  ==================
305
Operation  Description
306
=========  ==================
307
HEAD       Retrieve account metadata
308
GET        List containers
309
POST       Update account metadata
310
=========  ==================
311

    
312
HEAD
313
""""
314

    
315
====================  ===========================
316
Request Header Name   Value
317
====================  ===========================
318
If-Modified-Since     Retrieve if account has changed since provided timestamp
319
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
320
====================  ===========================
321

    
322
|
323

    
324
======================  ===================================
325
Request Parameter Name  Value
326
======================  ===================================
327
until                   Optional timestamp
328
======================  ===================================
329

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

    
332
==========================  =====================
333
Reply Header Name           Value
334
==========================  =====================
335
X-Account-Container-Count   The total number of containers
336
X-Account-Bytes-Used        The total number of bytes stored
337
X-Account-Until-Timestamp   The last account modification date until the timestamp provided
338
X-Account-Group-*           Optional user defined groups
339
X-Account-Policy-*          Account behavior and limits
340
X-Account-Meta-*            Optional user defined metadata
341
Last-Modified               The last account modification date (regardless of ``until``)
342
==========================  =====================
343

    
344
|
345

    
346
================  =====================
347
Return Code       Description
348
================  =====================
349
204 (No Content)  The request succeeded
350
================  =====================
351

    
352

    
353
GET
354
"""
355

    
356
====================  ===========================
357
Request Header Name   Value
358
====================  ===========================
359
If-Modified-Since     Retrieve if account has changed since provided timestamp
360
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
361
====================  ===========================
362

    
363
|
364

    
365
======================  =========================
366
Request Parameter Name  Value
367
======================  =========================
368
limit                   The amount of results requested (default is 10000)
369
marker                  Return containers with name lexicographically after marker
370
format                  Optional extended reply type (can be ``json`` or ``xml``)
371
shared                  Show only shared containers (no value parameter)
372
public                  Show only public containers (no value parameter / avalaible only for owner requests)
373
until                   Optional timestamp
374
======================  =========================
375

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

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

    
382
===========================  ============================
383
Name                         Description
384
===========================  ============================
385
name                         The name of the container
386
count                        The number of objects inside the container
387
bytes                        The total size of the objects inside the container
388
last_modified                The last container modification date (regardless of ``until``)
389
x_container_until_timestamp  The last container modification date until the timestamp provided
390
x_container_policy           Container behavior and limits
391
===========================  ============================
392

    
393
Example ``format=json`` reply:
394

    
395
::
396

    
397
  [{"name": "pithos",
398
    "bytes": 62452,
399
    "count": 8374,
400
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
401
    "x_container_policy": {"quota": "53687091200", "versioning": "auto"}}, ...]
402

    
403
Example ``format=xml`` reply:
404

    
405
::
406

    
407
  <?xml version="1.0" encoding="UTF-8"?>
408
  <account name="user">
409
    <container>
410
      <name>pithos</name>
411
      <bytes>62452</bytes>
412
      <count>8374</count>
413
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
414
      <x_container_policy>
415
        <key>quota</key><value>53687091200</value>
416
        <key>versioning</key><value>auto</value>
417
      </x_container_policy>
418
    </container>
419
    <container>...</container>
420
  </account>
421

    
422
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.
423

    
424
===========================  =====================
425
Return Code                  Description
426
===========================  =====================
427
200 (OK)                     The request succeeded
428
204 (No Content)             The account has no containers (only for non-extended replies)
429
304 (Not Modified)           The account has not been modified
430
412 (Precondition Failed)    The condition set can not be satisfied
431
===========================  =====================
432

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

    
435

    
436
POST
437
""""
438

    
439
====================  ===========================
440
Request Header Name   Value
441
====================  ===========================
442
X-Account-Group-*     Optional user defined groups
443
X-Account-Meta-*      Optional user defined metadata
444
====================  ===========================
445

    
446
|
447

    
448
======================  ============================================
449
Request Parameter Name  Value
450
======================  ============================================
451
update                  Do not replace metadata/groups (no value parameter)
452
======================  ============================================
453

    
454
No reply content/headers.
455

    
456
The operation will overwrite all user defined metadata, except if ``update`` is defined.
457
To create a group, include an ``X-Account-Group-*`` header with the name in the key and a comma separated list of user identifiers 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.
458

    
459
================  ===============================
460
Return Code       Description
461
================  ===============================
462
202 (Accepted)    The request has been accepted
463
================  ===============================
464

    
465

    
466
Container Level
467
^^^^^^^^^^^^^^^
468

    
469
List of operations:
470

    
471
=========  ============================
472
Operation  Description
473
=========  ============================
474
HEAD       Retrieve container metadata
475
GET        List objects
476
PUT        Create/update container
477
POST       Update container metadata
478
DELETE     Delete container
479
=========  ============================
480

    
481

    
482
HEAD
483
""""
484

    
485
====================  ===========================
486
Request Header Name   Value
487
====================  ===========================
488
If-Modified-Since     Retrieve if container has changed since provided timestamp
489
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
490
====================  ===========================
491

    
492
|
493

    
494
======================  ===================================
495
Request Parameter Name  Value
496
======================  ===================================
497
until                   Optional timestamp
498
======================  ===================================
499

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

    
502
===========================  ===============================
503
Reply Header Name            Value
504
===========================  ===============================
505
X-Container-Object-Count     The total number of objects in the container
506
X-Container-Bytes-Used       The total number of bytes of all objects stored
507
X-Container-Block-Size       The block size used by the storage backend
508
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
509
X-Container-Until-Timestamp  The last container modification date until the timestamp provided
510
X-Container-Object-Meta      A list with all meta keys used by objects (**TBD**)
511
X-Container-Policy-*         Container behavior and limits
512
X-Container-Meta-*           Optional user defined metadata
513
Last-Modified                The last container modification date (regardless of ``until``)
514
===========================  ===============================
515

    
516
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**)
517

    
518
================  ===============================
519
Return Code       Description
520
================  ===============================
521
204 (No Content)  The request succeeded
522
================  ===============================
523

    
524

    
525
GET
526
"""
527

    
528
====================  ===========================
529
Request Header Name   Value
530
====================  ===========================
531
If-Modified-Since     Retrieve if container has changed since provided timestamp
532
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
533
====================  ===========================
534

    
535
|
536

    
537
======================  ===================================
538
Request Parameter Name  Value
539
======================  ===================================
540
limit                   The amount of results requested (default is 10000)
541
marker                  Return containers with name lexicographically after marker
542
prefix                  Return objects starting with prefix
543
delimiter               Return objects up to the delimiter (discussion follows)
544
path                    Assume ``prefix=path`` and ``delimiter=/``
545
format                  Optional extended reply type (can be ``json`` or ``xml``)
546
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 ``=``, ``!=``, ``<=``, ``>=``, ``<``, ``>``)
547
shared                  Show only objects (no value parameter)
548
public                  Show only public objects (no value parameter / avalaible only for owner reqeusts)
549
until                   Optional timestamp
550
======================  ===================================
551

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

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

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

    
559
===========================  ===============================
560
Reply Header Name            Value
561
===========================  ===============================
562
X-Container-Block-Size       The block size used by the storage backend
563
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
564
X-Container-Object-Meta      A list with all meta keys used by allowed objects (**TBD**)
565
Last-Modified                The last container modification date
566
===========================  ===============================
567

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

    
571
==========================  ======================================
572
Name                        Description
573
==========================  ======================================
574
name                        The name of the object
575
hash                        The ETag of the object
576
bytes                       The size of the object
577
content_type                The MIME content type of the object
578
last_modified               The last object modification date (regardless of version)
579
x_object_hash               The Merkle hash
580
x_object_uuid               The object's UUID
581
x_object_version            The object's version identifier
582
x_object_version_timestamp  The object's version timestamp
583
x_object_modified_by        The user that committed the object's version
584
x_object_sharing            Object permissions (optional)
585
x_object_allowed_to         Allowed actions on object (optional)
586
x_object_public             Object's publicly accessible URI (optional)
587
==========================  ======================================
588

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

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

    
596
Example ``format=json`` reply:
597

    
598
::
599

    
600
  [{"name": "object",
601
    "bytes": 0,
602
    "hash": "d41d8cd98f00b204e9800998ecf8427e",
603
    "content_type": "application/octet-stream",
604
    "last_modified": "2011-12-02T08:10:41.565891+00:00",
605
    "x_object_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
606
    "x_object_uuid": "8ed9af1b-c948-4bb6-82b0-48344f5c822c",
607
    "x_object_version": 98,
608
    "x_object_version_timestamp": "1322813441.565891",
609
    "x_object_modified_by": "user"}, ...]
610

    
611
Example ``format=xml`` reply:
612

    
613
::
614

    
615
  <?xml version="1.0" encoding="UTF-8"?>
616
  <container name="pithos">
617
    <object>
618
      <name>object</name>
619
      <bytes>0</bytes>
620
      <hash>d41d8cd98f00b204e9800998ecf8427e</hash>
621
      <content_type>application/octet-stream</content_type>
622
      <last_modified>2011-12-02T08:10:41.565891+00:00</last_modified>
623
      <x_object_hash>e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855</x_object_hash>
624
      <x_object_uuid>8ed9af1b-c948-4bb6-82b0-48344f5c822c</x_object_uuid>
625
      <x_object_version>98</x_object_version>
626
      <x_object_version_timestamp>1322813441.565891</x_object_version_timestamp>
627
      <x_object_modified_by>chazapis</x_object_modified_by>
628
    </object>
629
    <object>...</object>
630
  </container>
631

    
632
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.
633

    
634
===========================  ===============================
635
Return Code                  Description
636
===========================  ===============================
637
200 (OK)                     The request succeeded
638
204 (No Content)             The account has no containers (only for non-extended replies)
639
304 (Not Modified)           The container has not been modified
640
412 (Precondition Failed)    The condition set can not be satisfied
641
===========================  ===============================
642

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

    
645

    
646
PUT
647
"""
648

    
649
====================  ================================
650
Request Header Name   Value
651
====================  ================================
652
X-Container-Policy-*  Container behavior and limits
653
X-Container-Meta-*    Optional user defined metadata
654
====================  ================================
655
 
656
No reply content/headers.
657

    
658
If no policy is defined, the container will be created with the default values.
659
Available policy directives:
660

    
661
* ``versioning``: Set to ``auto`` or ``none`` (default is ``auto``)
662
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
663

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

    
666
================  ===============================
667
Return Code       Description
668
================  ===============================
669
201 (Created)     The container has been created
670
202 (Accepted)    The request has been accepted
671
================  ===============================
672

    
673

    
674
POST
675
""""
676

    
677
====================  ================================
678
Request Header Name   Value
679
====================  ================================
680
Content-Length        The size of the supplied data (optional, to upload)
681
Content-Type          The MIME content type of the supplied data (optional, to upload)
682
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
683
X-Container-Policy-*  Container behavior and limits
684
X-Container-Meta-*    Optional user defined metadata
685
====================  ================================
686

    
687
|
688

    
689
======================  ============================================
690
Request Parameter Name  Value
691
======================  ============================================
692
format                  Optional hash list reply type (can be ``json`` or ``xml``)
693
update                  Do not replace metadata/policy (no value parameter)
694
======================  ============================================
695

    
696
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).
697

    
698
The operation will overwrite all user defined metadata, except if ``update`` is defined.
699
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.
700

    
701
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``).
702

    
703
================  ===============================
704
Return Code       Description
705
================  ===============================
706
202 (Accepted)    The request has been accepted
707
================  ===============================
708

    
709

    
710
DELETE
711
""""""
712

    
713
======================  ===================================
714
Request Parameter Name  Value
715
======================  ===================================
716
until                   Optional timestamp
717
delimiter               Optional delete objects starting with container name and delimiter
718
======================  ===================================
719

    
720
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.
721

    
722
No reply content/headers.
723

    
724
================  ===============================
725
Return Code       Description
726
================  ===============================
727
204 (No Content)  The request succeeded
728
409 (Conflict)    The container is not empty
729
================  ===============================
730

    
731

    
732
Object Level
733
^^^^^^^^^^^^
734

    
735
List of operations:
736

    
737
=========  =================================
738
Operation  Description
739
=========  =================================
740
HEAD       Retrieve object metadata
741
GET        Read object data
742
PUT        Write object data or copy/move object
743
COPY       Copy object
744
MOVE       Move object
745
POST       Update object metadata/data
746
DELETE     Delete object
747
=========  =================================
748

    
749

    
750
HEAD
751
""""
752

    
753
====================  ================================
754
Request Header Name   Value
755
====================  ================================
756
If-Match              Retrieve if ETags match
757
If-None-Match         Retrieve if ETags don't match
758
If-Modified-Since     Retrieve if object has changed since provided timestamp
759
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
760
====================  ================================
761

    
762
|
763

    
764
======================  ===================================
765
Request Parameter Name  Value
766
======================  ===================================
767
version                 Optional version identifier
768
======================  ===================================
769

    
770
|
771

    
772
==========================  ===============================
773
Reply Header Name           Value
774
==========================  ===============================
775
ETag                        The ETag of the object
776
Content-Length              The size of the object
777
Content-Type                The MIME content type of the object
778
Last-Modified               The last object modification date (regardless of version)
779
Content-Encoding            The encoding of the object (optional)
780
Content-Disposition         The presentation style of the object (optional)
781
X-Object-Hash               The Merkle hash
782
X-Object-UUID               The object's UUID
783
X-Object-Version            The object's version identifier
784
X-Object-Version-Timestamp  The object's version timestamp
785
X-Object-Modified-By        The user that comitted the object's version
786
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
787
X-Object-Sharing            Object permissions (optional)
788
X-Object-Shared-By          Object inheriting permissions (optional)
789
X-Object-Allowed-To         Allowed actions on object (optional)
790
X-Object-Public             Object's publicly accessible URI (optional)
791
X-Object-Meta-*             Optional user defined metadata
792
==========================  ===============================
793

    
794
|
795

    
796
================  ===============================
797
Return Code       Description
798
================  ===============================
799
200 (No Content)  The request succeeded
800
================  ===============================
801

    
802

    
803
GET
804
"""
805

    
806
====================  ================================
807
Request Header Name   Value
808
====================  ================================
809
Range                 Optional range of data to retrieve
810
If-Range              Retrieve the missing part if entity is unchanged; otherwise, retrieve the entire new entity (used together with Range header)
811
If-Match              Retrieve if ETags match
812
If-None-Match         Retrieve if ETags don't match
813
If-Modified-Since     Retrieve if object has changed since provided timestamp
814
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
815
====================  ================================
816

    
817
|
818

    
819
======================  ===================================
820
Request Parameter Name  Value
821
======================  ===================================
822
format                  Optional extended reply type (can be ``json`` or ``xml``)
823
hashmap                 Optional request for hashmap (no value parameter)
824
version                 Optional version identifier or ``list`` (specify a format if requesting a list)
825
======================  ===================================
826

    
827
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.
828

    
829
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).
830

    
831
Example ``format=json`` reply:
832

    
833
::
834

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

    
837
Example ``format=xml`` reply:
838

    
839
::
840

    
841
  <?xml version="1.0" encoding="UTF-8"?>
842
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
843
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
844
    <hash>...</hash>
845
  </object>
846

    
847
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.
848

    
849
Example ``format=json`` reply:
850

    
851
::
852

    
853
  {"versions": [[85, "1322734861.248469"], [86, "1322734905.009272"], ...]}
854

    
855
Example ``format=xml`` reply:
856

    
857
::
858

    
859
  <?xml version="1.0" encoding="UTF-8"?>
860
  <object name="file">
861
    <version timestamp="1322734861.248469">85</version>
862
    <version timestamp="1322734905.009272">86</version>
863
    <version timestamp="...">...</version>
864
  </object>
865

    
866
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.
867

    
868
==========================  ===============================
869
Reply Header Name           Value
870
==========================  ===============================
871
ETag                        The ETag of the object
872
Content-Length              The size of the data returned
873
Content-Type                The MIME content type of the object
874
Content-Range               The range of data included (only on a single range request)
875
Last-Modified               The last object modification date (regardless of version)
876
Content-Encoding            The encoding of the object (optional)
877
Content-Disposition         The presentation style of the object (optional)
878
X-Object-Hash               The Merkle hash
879
X-Object-UUID               The object's UUID
880
X-Object-Version            The object's version identifier
881
X-Object-Version-Timestamp  The object's version timestamp
882
X-Object-Modified-By        The user that comitted the object's version
883
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
884
X-Object-Sharing            Object permissions (optional)
885
X-Object-Shared-By          Object inheriting permissions (optional)
886
X-Object-Allowed-To         Allowed actions on object (optional)
887
X-Object-Public             Object's publicly accessible URI (optional)
888
X-Object-Meta-*             Optional user defined metadata
889
==========================  ===============================
890

    
891
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).
892

    
893
===========================  ==============================
894
Return Code                  Description
895
===========================  ==============================
896
200 (OK)                     The request succeeded
897
206 (Partial Content)        The range request succeeded
898
304 (Not Modified)           The object has not been modified
899
412 (Precondition Failed)    The condition set can not be satisfied
900
416 (Range Not Satisfiable)  The requested range is out of limits
901
===========================  ==============================
902

    
903

    
904
PUT
905
"""
906

    
907
====================  ================================
908
Request Header Name   Value
909
====================  ================================
910
If-Match              Put if ETags match with current object
911
If-None-Match         Put if ETags don't match with current object
912
ETag                  The MD5 hash of the object (optional to check written data)
913
Content-Length        The size of the data written
914
Content-Type          The MIME content type of the object
915
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
916
X-Copy-From           The source path in the form ``/<container>/<object>``
917
X-Move-From           The source path in the form ``/<container>/<object>``
918
X-Source-Account      The source account to copy/move from
919
X-Source-Version      The source version to copy from
920
Content-Encoding      The encoding of the object (optional)
921
Content-Disposition   The presentation style of the object (optional)
922
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
923
X-Object-Sharing      Object permissions (optional)
924
X-Object-Public       Object is publicly accessible (optional)
925
X-Object-Meta-*       Optional user defined metadata
926
====================  ================================
927

    
928
|
929

    
930
======================  ===================================
931
Request Parameter Name  Value
932
======================  ===================================
933
format                  Optional extended request/conflict response type (can be ``json`` or ``xml``)
934
hashmap                 Optional hashmap provided instead of data (no value parameter)
935
delimiter               Optional copy/move objects starting with object's path and delimiter (to be used with X-Copy-From/X-Move-From)
936
======================  ===================================
937

    
938
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).
939

    
940
Hashmaps should be formatted as outlined in ``GET``.
941

    
942
==========================  ===============================
943
Reply Header Name           Value
944
==========================  ===============================
945
ETag                        The MD5 hash of the object
946
X-Object-Version            The object's new version
947
==========================  ===============================
948

    
949
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.
950

    
951
==============================  ==============================
952
Return Code                     Description
953
==============================  ==============================
954
201 (Created)                   The object has been created
955
409 (Conflict)                  The object can not be created from the provided hashmap (a list of missing hashes will be included in the reply)
956
411 (Length Required)           Missing ``Content-Length`` or ``Content-Type`` in the request
957
413 (Request Entity Too Large)  Insufficient quota to complete the request
958
422 (Unprocessable Entity)      The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
959
==============================  ==============================
960

    
961

    
962
COPY
963
""""
964

    
965
====================  ================================
966
Request Header Name   Value
967
====================  ================================
968
If-Match              Proceed if ETags match with object
969
If-None-Match         Proceed if ETags don't match with object
970
Destination           The destination path in the form ``/<container>/<object>``
971
Destination-Account   The destination account to copy to
972
Content-Type          The MIME content type of the object (optional :sup:`*`)
973
Content-Encoding      The encoding of the object (optional)
974
Content-Disposition   The presentation style of the object (optional)
975
X-Source-Version      The source version to copy from
976
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
977
X-Object-Sharing      Object permissions (optional)
978
X-Object-Public       Object is publicly accessible (optional)
979
X-Object-Meta-*       Optional user defined metadata
980
====================  ================================
981

    
982
: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.*
983

    
984
======================  ===================================
985
Request Parameter Name  Value
986
======================  ===================================
987
format                  Optional conflict response type (can be ``json`` or ``xml``)
988
ignore_content_type     Ignore the supplied Content-Type
989
delimiter               Optional copy objects starting with object's path and delimiter
990
======================  ===================================
991

    
992
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.
993

    
994
==========================  ===============================
995
Reply Header Name           Value
996
==========================  ===============================
997
X-Object-Version            The object's new version
998
==========================  ===============================
999

    
1000
|
1001

    
1002
==============================  ==============================
1003
Return Code                     Description
1004
==============================  ==============================
1005
201 (Created)                   The object has been created
1006
413 (Request Entity Too Large)  Insufficient quota to complete the request
1007
==============================  ==============================
1008

    
1009

    
1010
MOVE
1011
""""
1012

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

    
1015

    
1016
POST
1017
""""
1018

    
1019
====================  ================================
1020
Request Header Name   Value
1021
====================  ================================
1022
If-Match              Proceed if ETags match with object
1023
If-None-Match         Proceed if ETags don't match with object
1024
Content-Length        The size of the data written (optional, to update)
1025
Content-Type          The MIME content type of the object (optional, to update)
1026
Content-Range         The range of data supplied (optional, to update)
1027
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
1028
Content-Encoding      The encoding of the object (optional)
1029
Content-Disposition   The presentation style of the object (optional)
1030
X-Source-Object       Update with data from the object at path ``/<container>/<object>`` (optional, to update)
1031
X-Source-Account      The source account to update from
1032
X-Source-Version      The source version to update from (optional, to update)
1033
X-Object-Bytes        The updated object's final size (optional, when updating)
1034
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
1035
X-Object-Sharing      Object permissions (optional)
1036
X-Object-Public       Object is publicly accessible (optional)
1037
X-Object-Meta-*       Optional user defined metadata
1038
====================  ================================
1039

    
1040
|
1041

    
1042
======================  ============================================
1043
Request Parameter Name  Value
1044
======================  ============================================
1045
format                  Optional conflict response type (can be ``json`` or ``xml``)
1046
update                  Do not replace metadata (no value parameter)
1047
======================  ============================================
1048

    
1049
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.
1050

    
1051
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.
1052

    
1053
To update an object's data:
1054

    
1055
* 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.
1056
* 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``).
1057
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
1058

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

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

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

    
1067
No reply content. No reply headers if only metadata is updated.
1068

    
1069
==========================  ===============================
1070
Reply Header Name           Value
1071
==========================  ===============================
1072
ETag                        The new ETag of the object (data updated)
1073
X-Object-Version            The object's new version
1074
==========================  ===============================
1075

    
1076
|
1077

    
1078
==============================  ==============================
1079
Return Code                     Description
1080
==============================  ==============================
1081
202 (Accepted)                  The request has been accepted (not a data update)
1082
204 (No Content)                The request succeeded (data updated)
1083
411 (Length Required)           Missing ``Content-Length`` in the request
1084
413 (Request Entity Too Large)  Insufficient quota to complete the request
1085
416 (Range Not Satisfiable)     The supplied range is invalid
1086
==============================  ==============================
1087

    
1088
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. ::
1089

    
1090
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt?X-Auth-Token=0000" enctype="multipart/form-data">
1091
    <input type="file" name="X-Object-Data">
1092
    <input type="submit">
1093
  </form>
1094

    
1095
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.
1096

    
1097
==========================  ===============================
1098
Reply Header Name           Value
1099
==========================  ===============================
1100
ETag                        The MD5 hash of the object
1101
X-Object-Version            The object's new version
1102
==========================  ===============================
1103

    
1104
|
1105

    
1106
==============================  ==============================
1107
Return Code                     Description
1108
==============================  ==============================
1109
201 (Created)                   The object has been created
1110
413 (Request Entity Too Large)  Insufficient quota to complete the request
1111
==============================  ==============================
1112

    
1113

    
1114
DELETE
1115
""""""
1116

    
1117
======================  ===================================
1118
Request Parameter Name  Value
1119
======================  ===================================
1120
until                   Optional timestamp
1121
delimiter               Optional delete also objects starting with object's path and delimiter
1122
======================  ===================================
1123

    
1124
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.
1125

    
1126
No reply content/headers.
1127

    
1128
===========================  ==============================
1129
Return Code                  Description
1130
===========================  ==============================
1131
204 (No Content)             The request succeeded
1132
===========================  ==============================
1133

    
1134
Sharing and Public Objects
1135
^^^^^^^^^^^^^^^^^^^^^^^^^^
1136

    
1137
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.
1138

    
1139
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.
1140

    
1141
Shared objects that are also public do not expose the ``X-Object-Public`` meta information.
1142

    
1143
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):
1144

    
1145
==========================  ===============================
1146
Reply Header Name           Value
1147
==========================  ===============================
1148
ETag                        The ETag of the object
1149
Content-Length              The size of the data returned
1150
Content-Type                The MIME content type of the object
1151
Content-Range               The range of data included (only on a single range request)
1152
Last-Modified               The last object modification date (regardless of version)
1153
Content-Encoding            The encoding of the object (optional)
1154
Content-Disposition         The presentation style of the object (optional)
1155
==========================  ===============================
1156

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

    
1159
Summary
1160
^^^^^^^
1161

    
1162
List of differences from the OOS API:
1163

    
1164
* Support for ``X-Account-Meta-*`` style headers at the account level. Use ``POST`` to update.
1165
* Support for ``X-Container-Meta-*`` style headers at the container level. Can be set when creating via ``PUT``. Use ``POST`` to update.
1166
* Header ``X-Container-Object-Meta`` at the container level and parameter ``meta`` in container listings. (**TBD**)
1167
* 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.
1168
* Headers ``X-Container-Block-*`` at the container level, exposing the underlying storage characteristics.
1169
* All metadata replies, at all levels, include latest modification information.
1170
* At all levels, a ``HEAD`` or ``GET`` request may use ``If-Modified-Since`` and ``If-Unmodified-Since`` headers.
1171
* 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.
1172
* Option to include only shared containers/objects in listings.
1173
* 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.
1174
* Multi-range object ``GET`` support as outlined in RFC2616.
1175
* Object hashmap retrieval through ``GET`` and the ``format`` parameter.
1176
* Object create via hashmap through ``PUT`` and the ``format`` parameter.
1177
* The object's Merkle hash is always returned in the ``X-Object-Hash`` header.
1178
* 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.
1179
* Object create using ``POST`` to support standard HTML forms.
1180
* 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``.
1181
* Include new version identifier in replies for object replace/change requests.
1182
* Object ``MOVE`` support and ``ignore_content_type`` parameter in both ``COPY`` and ``MOVE``.
1183
* Conditional object create/update operations, using ``If-Match`` and ``If-None-Match`` headers.
1184
* Time-variant account/container listings via the ``until`` parameter.
1185
* Object versions - parameter ``version`` in ``HEAD``/``GET`` (list versions with ``GET``), ``X-Object-Version-*`` meta in replies, ``X-Source-Version`` in ``PUT``/``COPY``.
1186
* 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.
1187
* Support for directory-based inheritance when enforcing permissions. Parent object carrying the authorization directives is reported in ``X-Object-Shared-By``.
1188
* Copy and move between accounts with ``X-Source-Account`` and ``Destination-Account`` headers.
1189
* Large object support with ``X-Object-Manifest``.
1190
* Trace the user that created/modified an object with ``X-Object-Modified-By``.
1191
* Purge container/object history with the ``until`` parameter in ``DELETE``.
1192
* Bulk COPY/MOVE/DELETE objects starting with prefix
1193

    
1194
Clarifications/suggestions:
1195

    
1196
* All non-ASCII characters in headers should be URL-encoded.
1197
* 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.
1198
* 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.
1199
* A ``GET`` reply for a level will include all headers of the corresponding ``HEAD`` request.
1200
* 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.
1201
* 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.
1202
* Container/object lists use a ``200`` return code if the reply is of type JSON/XML. The reply will include an empty JSON/XML.
1203
* 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.
1204
* 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.
1205
* A copy/move using ``PUT``/``COPY``/``MOVE`` will always update metadata, keeping all old values except the ones redefined in the request headers.
1206
* 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.
1207

    
1208
Recommended Practices and Examples
1209
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1210

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

    
1213
* Get account information ::
1214

    
1215
    curl -X HEAD -D - \
1216
         -H "X-Auth-Token: 0000" \
1217
         https://pithos.dev.grnet.gr/v1/user
1218

    
1219
* List available containers ::
1220

    
1221
    curl -X GET -D - \
1222
         -H "X-Auth-Token: 0000" \
1223
         https://pithos.dev.grnet.gr/v1/user
1224

    
1225
* Get container information ::
1226

    
1227
    curl -X HEAD -D - \
1228
         -H "X-Auth-Token: 0000" \
1229
         https://pithos.dev.grnet.gr/v1/user/pithos
1230

    
1231
* Add a new container ::
1232

    
1233
    curl -X PUT -D - \
1234
         -H "X-Auth-Token: 0000" \
1235
         https://pithos.dev.grnet.gr/v1/user/test
1236

    
1237
* Delete a container ::
1238

    
1239
    curl -X DELETE -D - \
1240
         -H "X-Auth-Token: 0000" \
1241
         https://pithos.dev.grnet.gr/v1/user/test
1242

    
1243
* List objects in a container ::
1244

    
1245
    curl -X GET -D - \
1246
         -H "X-Auth-Token: 0000" \
1247
         https://pithos.dev.grnet.gr/v1/user/pithos
1248

    
1249
* List objects in a container (extended reply) ::
1250

    
1251
    curl -X GET -D - \
1252
         -H "X-Auth-Token: 0000" \
1253
         https://pithos.dev.grnet.gr/v1/user/pithos?format=json
1254

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

    
1257
* List metadata keys used by objects in a container
1258

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

    
1261
* List objects in a container having a specific meta defined ::
1262

    
1263
    curl -X GET -D - \
1264
         -H "X-Auth-Token: 0000" \
1265
         https://pithos.dev.grnet.gr/v1/user/pithos?meta=favorites
1266

    
1267
* Retrieve an object ::
1268

    
1269
    curl -X GET -D - \
1270
         -H "X-Auth-Token: 0000" \
1271
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1272

    
1273
* Retrieve an object (specific ranges of data) ::
1274

    
1275
    curl -X GET -D - \
1276
         -H "X-Auth-Token: 0000" \
1277
         -H "Range: bytes=0-9" \
1278
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1279

    
1280
  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``.
1281

    
1282
* Add a new object (folder type) (**TBD**) ::
1283

    
1284
    curl -X PUT -D - \
1285
         -H "X-Auth-Token: 0000" \
1286
         -H "Content-Type: application/directory" \
1287
         https://pithos.dev.grnet.gr/v1/user/pithos/folder
1288

    
1289
* Add a new object ::
1290

    
1291
    curl -X PUT -D - \
1292
         -H "X-Auth-Token: 0000" \
1293
         -H "Content-Type: text/plain" \
1294
         -T EXAMPLE.txt
1295
         https://pithos.dev.grnet.gr/v1/user/pithos/folder/EXAMPLE.txt
1296

    
1297
* Update an object ::
1298

    
1299
    curl -X POST -D - \
1300
         -H "X-Auth-Token: 0000" \
1301
         -H "Content-Length: 10" \
1302
         -H "Content-Type: application/octet-stream" \
1303
         -H "Content-Range: bytes 10-19/*" \
1304
         -d "0123456789" \
1305
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1306

    
1307
  This will update bytes 10-19 with the data specified.
1308

    
1309
* Update an object (append) ::
1310

    
1311
    curl -X POST -D - \
1312
         -H "X-Auth-Token: 0000" \
1313
         -H "Content-Length: 10" \
1314
         -H "Content-Type: application/octet-stream" \
1315
         -H "Content-Range: bytes */*" \
1316
         -d "0123456789" \
1317
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1318

    
1319
* Update an object (truncate) ::
1320

    
1321
    curl -X POST -D - \
1322
         -H "X-Auth-Token: 0000" \
1323
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1324
         -H "Content-Range: bytes 0-0/*" \
1325
         -H "X-Object-Bytes: 0" \
1326
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1327

    
1328
  This will truncate the object to 0 bytes.
1329

    
1330
* Add object metadata ::
1331

    
1332
    curl -X POST -D - \
1333
         -H "X-Auth-Token: 0000" \
1334
         -H "X-Object-Meta-First: first_meta_value" \
1335
         -H "X-Object-Meta-Second: second_meta_value" \
1336
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1337

    
1338
* Delete object metadata ::
1339

    
1340
    curl -X POST -D - \
1341
         -H "X-Auth-Token: 0000" \
1342
         -H "X-Object-Meta-First: first_meta_value" \
1343
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1344

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

    
1347
* Delete an object ::
1348

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