Statistics
| Branch: | Tag: | Revision:

root / docs / pithos-api-guide.rst @ c8860319

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

    
92
Pithos Users and Authentication
93
-------------------------------
94

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

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

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

    
101
The login URI accepts the following parameters:
102

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

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

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

    
115
User feedback
116
-------------
117

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

    
120
============================ =========  ==================
121
Uri                          Method     Description
122
============================ =========  ==================
123
``/pithos/astakos/feedback`` POST       Send feedback
124
============================ =========  ==================
125

    
126
|
127

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

    
135
|
136

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

    
143
|
144

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

    
155
User translation catalogs
156
-------------------------
157

    
158
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.
159

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

    
166
|
167

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

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

    
176
Example request content:
177

    
178
::
179

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

    
183
Example reply:
184

    
185
::
186

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

    
192

    
193
|
194

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

    
204
The Pithos API
205
--------------
206

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

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

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

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

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

    
229
Top Level
230
^^^^^^^^^
231

    
232
List of operations:
233

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

    
240
GET
241
"""
242

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

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

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

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

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

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

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

    
274
::
275

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

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

    
280
::
281

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

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

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

    
300
Account Level
301
^^^^^^^^^^^^^
302

    
303
List of operations:
304

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

    
313
HEAD
314
""""
315

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

    
323
|
324

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

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

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

    
345
|
346

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

    
353

    
354
GET
355
"""
356

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

    
364
|
365

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

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

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

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

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

    
396
::
397

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

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

    
406
::
407

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

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

    
425
===========================  =====================
426
Return Code                  Description
427
===========================  =====================
428
200 (OK)                     The request succeeded
429
204 (No Content)             The account has no containers (only for non-extended replies)
430
304 (Not Modified)           The account has not been modified
431
403 (Forbidden)              Public is requested but the request user is not the path owner
432
412 (Precondition Failed)    The condition set can not be satisfied
433
===========================  =====================
434

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

    
437

    
438
POST
439
""""
440

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

    
448
|
449

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

    
456
No reply content/headers.
457

    
458
The operation will overwrite all user defined metadata, except if ``update`` is defined.
459
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.
460

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

    
467

    
468
Container Level
469
^^^^^^^^^^^^^^^
470

    
471
List of operations:
472

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

    
483

    
484
HEAD
485
""""
486

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

    
494
|
495

    
496
======================  ===================================
497
Request Parameter Name  Value
498
======================  ===================================
499
until                   Optional timestamp
500
======================  ===================================
501

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

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

    
518
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**)
519

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

    
526

    
527
GET
528
"""
529

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

    
537
|
538

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

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

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

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

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

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

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

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

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

    
598
Example ``format=json`` reply:
599

    
600
::
601

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

    
613
Example ``format=xml`` reply:
614

    
615
::
616

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

    
634
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.
635

    
636
===========================  ===============================
637
Return Code                  Description
638
===========================  ===============================
639
200 (OK)                     The request succeeded
640
204 (No Content)             The account has no containers (only for non-extended replies)
641
304 (Not Modified)           The container has not been modified
642
403 (Forbidden)              Public is requested but the request user is not the path owner
643
412 (Precondition Failed)    The condition set can not be satisfied
644
===========================  ===============================
645

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

    
648

    
649
PUT
650
"""
651

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

    
661
If no policy is defined, the container will be created with the default values.
662
Available policy directives:
663

    
664
* ``versioning``: Set to ``auto`` or ``none`` (default is ``auto``)
665
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
666

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

    
669
================  ===============================
670
Return Code       Description
671
================  ===============================
672
201 (Created)     The container has been created
673
202 (Accepted)    The request has been accepted
674
================  ===============================
675

    
676

    
677
POST
678
""""
679

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

    
690
|
691

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

    
699
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).
700

    
701
The operation will overwrite all user defined metadata, except if ``update`` is defined.
702
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.
703

    
704
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``).
705

    
706
================  ===============================
707
Return Code       Description
708
================  ===============================
709
202 (Accepted)    The request has been accepted
710
================  ===============================
711

    
712

    
713
DELETE
714
""""""
715

    
716
======================  ===================================
717
Request Parameter Name  Value
718
======================  ===================================
719
until                   Optional timestamp
720
delimiter               Optional delete objects starting with container name and delimiter
721
======================  ===================================
722

    
723
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.
724

    
725
No reply content/headers.
726

    
727
================  ===============================
728
Return Code       Description
729
================  ===============================
730
204 (No Content)  The request succeeded
731
409 (Conflict)    The container is not empty
732
================  ===============================
733

    
734

    
735
Object Level
736
^^^^^^^^^^^^
737

    
738
List of operations:
739

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

    
752

    
753
HEAD
754
""""
755

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

    
765
|
766

    
767
======================  ===================================
768
Request Parameter Name  Value
769
======================  ===================================
770
version                 Optional version identifier
771
======================  ===================================
772

    
773
|
774

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

    
797
|
798

    
799
================  ===============================
800
Return Code       Description
801
================  ===============================
802
200 (No Content)  The request succeeded
803
================  ===============================
804

    
805

    
806
GET
807
"""
808

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

    
820
|
821

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

    
830
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.
831

    
832
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).
833

    
834
Example ``format=json`` reply:
835

    
836
::
837

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

    
840
Example ``format=xml`` reply:
841

    
842
::
843

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

    
850
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.
851

    
852
Example ``format=json`` reply:
853

    
854
::
855

    
856
  {"versions": [[85, "1322734861.248469"], [86, "1322734905.009272"], ...]}
857

    
858
Example ``format=xml`` reply:
859

    
860
::
861

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

    
869
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.
870

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

    
894
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).
895

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

    
906

    
907
PUT
908
"""
909

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

    
931
|
932

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

    
941
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).
942

    
943
Hashmaps should be formatted as outlined in ``GET``.
944

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

    
952
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.
953

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

    
964

    
965
COPY
966
""""
967

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

    
985
: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.*
986

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

    
995
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.
996

    
997
==========================  ===============================
998
Reply Header Name           Value
999
==========================  ===============================
1000
X-Object-Version            The object's new version
1001
==========================  ===============================
1002

    
1003
|
1004

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

    
1012

    
1013
MOVE
1014
""""
1015

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

    
1018

    
1019
POST
1020
""""
1021

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

    
1043
|
1044

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

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

    
1054
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.
1055

    
1056
To update an object's data:
1057

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

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

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

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

    
1070
No reply content. No reply headers if only metadata is updated.
1071

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

    
1079
|
1080

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

    
1091
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. ::
1092

    
1093
  <form method="post" action="https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt?X-Auth-Token=0000" enctype="multipart/form-data">
1094
    <input type="file" name="X-Object-Data">
1095
    <input type="submit">
1096
  </form>
1097

    
1098
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.
1099

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

    
1107
|
1108

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

    
1116

    
1117
DELETE
1118
""""""
1119

    
1120
======================  ===================================
1121
Request Parameter Name  Value
1122
======================  ===================================
1123
until                   Optional timestamp
1124
delimiter               Optional delete also objects starting with object's path and delimiter
1125
======================  ===================================
1126

    
1127
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.
1128

    
1129
No reply content/headers.
1130

    
1131
===========================  ==============================
1132
Return Code                  Description
1133
===========================  ==============================
1134
204 (No Content)             The request succeeded
1135
===========================  ==============================
1136

    
1137
Sharing and Public Objects
1138
^^^^^^^^^^^^^^^^^^^^^^^^^^
1139

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

    
1142
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.
1143

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

    
1146
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):
1147

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

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

    
1162
Summary
1163
^^^^^^^
1164

    
1165
List of differences from the OOS API:
1166

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

    
1197
Clarifications/suggestions:
1198

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

    
1211
Recommended Practices and Examples
1212
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1213

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

    
1216
* Get account information ::
1217

    
1218
    curl -X HEAD -D - \
1219
         -H "X-Auth-Token: 0000" \
1220
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid
1221

    
1222
* List available containers ::
1223

    
1224
    curl -X GET -D - \
1225
         -H "X-Auth-Token: 0000" \
1226
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid
1227

    
1228
* Get container information ::
1229

    
1230
    curl -X HEAD -D - \
1231
         -H "X-Auth-Token: 0000" \
1232
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos
1233

    
1234
* Add a new container ::
1235

    
1236
    curl -X PUT -D - \
1237
         -H "X-Auth-Token: 0000" \
1238
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/test
1239

    
1240
* Delete a container ::
1241

    
1242
    curl -X DELETE -D - \
1243
         -H "X-Auth-Token: 0000" \
1244
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/test
1245

    
1246
* List objects in a container ::
1247

    
1248
    curl -X GET -D - \
1249
         -H "X-Auth-Token: 0000" \
1250
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos
1251

    
1252
* List objects in a container (extended reply) ::
1253

    
1254
    curl -X GET -D - \
1255
         -H "X-Auth-Token: 0000" \
1256
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos?format=json
1257

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

    
1260
* List metadata keys used by objects in a container
1261

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

    
1264
* List objects in a container having a specific meta defined ::
1265

    
1266
    curl -X GET -D - \
1267
         -H "X-Auth-Token: 0000" \
1268
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos?meta=favorites
1269

    
1270
* Retrieve an object ::
1271

    
1272
    curl -X GET -D - \
1273
         -H "X-Auth-Token: 0000" \
1274
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos/README.txt
1275

    
1276
* Retrieve an object (specific ranges of data) ::
1277

    
1278
    curl -X GET -D - \
1279
         -H "X-Auth-Token: 0000" \
1280
         -H "Range: bytes=0-9" \
1281
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos/README.txt
1282

    
1283
  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``.
1284

    
1285
* Add a new object (folder type) (**TBD**) ::
1286

    
1287
    curl -X PUT -D - \
1288
         -H "X-Auth-Token: 0000" \
1289
         -H "Content-Type: application/directory" \
1290
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos/folder
1291

    
1292
* Add a new object ::
1293

    
1294
    curl -X PUT -D - \
1295
         -H "X-Auth-Token: 0000" \
1296
         -H "Content-Type: text/plain" \
1297
         -T EXAMPLE.txt
1298
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/pithos/folder/EXAMPLE.txt
1299

    
1300
* Update an object ::
1301

    
1302
    curl -X POST -D - \
1303
         -H "X-Auth-Token: 0000" \
1304
         -H "Content-Length: 10" \
1305
         -H "Content-Type: application/octet-stream" \
1306
         -H "Content-Range: bytes 10-19/*" \
1307
         -d "0123456789" \
1308
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt
1309

    
1310
  This will update bytes 10-19 with the data specified.
1311

    
1312
* Update an object (append) ::
1313

    
1314
    curl -X POST -D - \
1315
         -H "X-Auth-Token: 0000" \
1316
         -H "Content-Length: 10" \
1317
         -H "Content-Type: application/octet-stream" \
1318
         -H "Content-Range: bytes */*" \
1319
         -d "0123456789" \
1320
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt
1321

    
1322
* Update an object (truncate) ::
1323

    
1324
    curl -X POST -D - \
1325
         -H "X-Auth-Token: 0000" \
1326
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1327
         -H "Content-Range: bytes 0-0/*" \
1328
         -H "X-Object-Bytes: 0" \
1329
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt
1330

    
1331
  This will truncate the object to 0 bytes.
1332

    
1333
* Add object metadata ::
1334

    
1335
    curl -X POST -D - \
1336
         -H "X-Auth-Token: 0000" \
1337
         -H "X-Object-Meta-First: first_meta_value" \
1338
         -H "X-Object-Meta-Second: second_meta_value" \
1339
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt
1340

    
1341
* Delete object metadata ::
1342

    
1343
    curl -X POST -D - \
1344
         -H "X-Auth-Token: 0000" \
1345
         -H "X-Object-Meta-First: first_meta_value" \
1346
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt
1347

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

    
1350
* Delete an object ::
1351

    
1352
    curl -X DELETE -D - \
1353
         -H "X-Auth-Token: 0000" \
1354
         https://storage.example.synnefo.org/pithos/object-store/v1.0/user-uuid/folder/EXAMPLE.txt