Statistics
| Branch: | Tag: | Revision:

root / docs / source / devguide.rst @ 8728b177

History | View | Annotate | Download (61.8 kB)

1
Pithos v2 Developer Guide
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
Document Revisions
23
^^^^^^^^^^^^^^^^^^
24

    
25
=========================  ================================
26
Revision                   Description
27
=========================  ================================
28
0.7 (Sept 22, 2011)        Suggest upload/download methods using hashmaps.
29
0.6 (Sept 13, 2011)        Reply with Merkle hash as the ETag when updating objects.
30
\                          Include version id in object replace/change replies.
31
\                          Change conflict (409) replies format to text.
32
\                          Tags should be migrated to a meta value.
33
\                          Container ``PUT`` updates metadata/policy.
34
\                          Report allowed actions in shared object replies.
35
\                          Provide ``https://hostname/login`` for Shibboleth authentication.
36
\                          Use ``hashmap`` parameter in object ``GET``/``PUT`` to use hashmaps.
37
0.5 (July 22, 2011)        Object update from another object's data.
38
\                          Support object truncate.
39
\                          Create object using a standard HTML form.
40
\                          Purge container/object history.
41
\                          List other accounts that share objects with a user.
42
\                          List shared containers/objects.
43
\                          Update implementation guidelines.
44
\                          Check preconditions when creating/updating objects.
45
0.4 (July 01, 2011)        Object permissions and account groups.
46
\                          Control versioning behavior and container quotas with container policy directives.
47
\                          Support updating/deleting individual metadata with ``POST``.
48
\                          Create object using hashmap.
49
0.3 (June 14, 2011)        Large object support with ``X-Object-Manifest``.
50
\                          Allow for publicly available objects via ``https://hostname/public``.
51
\                          Support time-variant account/container listings. 
52
\                          Add source version when duplicating with ``PUT``/``COPY``.
53
\                          Request version in object ``HEAD``/``GET`` requests (list versions with ``GET``).
54
0.2 (May 31, 2011)         Add object meta listing and filtering in containers.
55
\                          Include underlying storage characteristics in container meta.
56
\                          Support for partial object updates through ``POST``.
57
\                          Expose object hashmaps through ``GET``.
58
\                          Support for multi-range object ``GET`` requests.
59
0.1 (May 17, 2011)         Initial release. Based on OpenStack Object Storage Developer Guide API v1 (Apr. 15, 2011).
60
=========================  ================================
61

    
62
Pithos Users and Authentication
63
-------------------------------
64

    
65
Pithos keeps separate databases for users and objects.
66

    
67
Each user is uniquely identified by the ``Uniq`` field. This should be used as the user's account in the API. The API uses the ``Token`` field to authenticate a user, thus allowing cross-account requests. All API requests require a token.
68

    
69
User entries can be modified/added via the management interface available at ``https://hostname/admin``.
70

    
71
Pithos is also compatible with Shibboleth (http://shibboleth.internet2.edu/). The connection between Shibboleth and Pithos is done by ``https://hostname/login``. An application that wishes to connect to Pithos, but does not have a token, should redirect the user to the login URI.
72

    
73
The login URI accepts the following parameters:
74

    
75
======================  =========================
76
Request Parameter Name  Value
77
======================  =========================
78
next                    The URI to redirect to when the process is finished
79
renew                   Force token renewal (no value parameter)
80
======================  =========================
81

    
82
The login process starts by redirecting the user to an external URI (controlled by Shibboleth), where the actual authentication credentials are entered. Then, the user is redirected back to the login URI from Shibboleth, with various identification information in the request headers.
83

    
84
If the user does not exist in the database, Pithos adds the user and creates a random token. If the user exists, the token has not expired and ``renew`` is not set, the existing token is reused. Finally, the login URI redirects to the URI provided with ``next``, adding the ``user`` and ``token`` parameters, which contain the ``Uniq`` and ``Token`` fields respectively. 
85

    
86
The Pithos API
87
--------------
88

    
89
The URI requests supported by the Pithos API follow one of the following forms:
90

    
91
* Top level: ``https://hostname/v1/``
92
* Account level: ``https://hostname/v1/<account>``
93
* Container level: ``https://hostname/v1/<account>/<container>``
94
* Object level: ``https://hostname/v1/<account>/<container>/<object>``
95

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

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

    
100
=========================  ================================
101
Return Code                Description
102
=========================  ================================
103
400 (Bad Request)          The request is invalid
104
401 (Unauthorized)         Request not allowed
105
404 (Not Found)            The requested resource was not found
106
503 (Service Unavailable)  The request cannot be completed because of an internal error
107
=========================  ================================
108

    
109
Top Level
110
^^^^^^^^^
111

    
112
List of operations:
113

    
114
=========  ==================
115
Operation  Description
116
=========  ==================
117
GET        Authentication (for compatibility with the OOS API) or list allowed accounts
118
=========  ==================
119

    
120
GET
121
"""
122

    
123
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.
124

    
125
================  =====================
126
Return Code       Description
127
================  =====================
128
204 (No Content)  The request succeeded
129
================  =====================
130

    
131
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.
132

    
133
======================  =========================
134
Request Parameter Name  Value
135
======================  =========================
136
limit                   The amount of results requested (default is 10000)
137
marker                  Return containers with name lexicographically after marker
138
format                  Optional extended reply type (can be ``json`` or ``xml``)
139
======================  =========================
140

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

    
145
===========================  ============================
146
Name                         Description
147
===========================  ============================
148
name                         The name of the account
149
last_modified                The last account modification date (regardless of ``until``)
150
===========================  ============================
151

    
152
Example ``format=json`` reply:
153

    
154
::
155

    
156
  [{"name": "user", "last_modified": "2011-07-19T10:48:16"}, ...]
157

    
158
Example ``format=xml`` reply:
159

    
160
::
161

    
162
  <?xml version="1.0" encoding="UTF-8"?>
163
  <accounts>
164
    <account>
165
      <name>user</name>
166
      <last_modified>2011-07-19T10:48:16</last_modified>
167
    </account>
168
    <account>...</account>
169
  </accounts>
170

    
171
===========================  =====================
172
Return Code                  Description
173
===========================  =====================
174
200 (OK)                     The request succeeded
175
204 (No Content)             The user has no access to other accounts (only for non-extended replies)
176
===========================  =====================
177

    
178
Will use a ``200`` return code if the reply is of type json/xml.
179

    
180
Account Level
181
^^^^^^^^^^^^^
182

    
183
List of operations:
184

    
185
=========  ==================
186
Operation  Description
187
=========  ==================
188
HEAD       Retrieve account metadata
189
GET        List containers
190
POST       Update account metadata
191
=========  ==================
192

    
193
HEAD
194
""""
195

    
196
====================  ===========================
197
Request Header Name   Value
198
====================  ===========================
199
If-Modified-Since     Retrieve if account has changed since provided timestamp
200
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
201
====================  ===========================
202

    
203
|
204

    
205
======================  ===================================
206
Request Parameter Name  Value
207
======================  ===================================
208
until                   Optional timestamp
209
======================  ===================================
210

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

    
213
==========================  =====================
214
Reply Header Name           Value
215
==========================  =====================
216
X-Account-Container-Count   The total number of containers
217
X-Account-Object-Count      The total number of objects (**TBD**)
218
X-Account-Bytes-Used        The total number of bytes stored
219
X-Account-Bytes-Remaining   The total number of bytes remaining (**TBD**)
220
X-Account-Last-Login        The last login (**TBD**)
221
X-Account-Until-Timestamp   The last account modification date until the timestamp provided
222
X-Account-Group-*           Optional user defined groups
223
X-Account-Meta-*            Optional user defined metadata
224
Last-Modified               The last account modification date (regardless of ``until``)
225
==========================  =====================
226

    
227
|
228

    
229
================  =====================
230
Return Code       Description
231
================  =====================
232
204 (No Content)  The request succeeded
233
================  =====================
234

    
235

    
236
GET
237
"""
238

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

    
246
|
247

    
248
======================  =========================
249
Request Parameter Name  Value
250
======================  =========================
251
limit                   The amount of results requested (default is 10000)
252
marker                  Return containers with name lexicographically after marker
253
format                  Optional extended reply type (can be ``json`` or ``xml``)
254
shared                  Show only shared containers (no value parameter)
255
until                   Optional timestamp
256
======================  =========================
257

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

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

    
264
===========================  ============================
265
Name                         Description
266
===========================  ============================
267
name                         The name of the container
268
count                        The number of objects inside the container
269
bytes                        The total size of the objects inside the container
270
last_modified                The last container modification date (regardless of ``until``)
271
x_container_until_timestamp  The last container modification date until the timestamp provided
272
x_container_policy_*         Container behavior and limits
273
x_container_meta_*           Optional user defined metadata
274
===========================  ============================
275

    
276
For examples of container details returned in JSON/XML formats refer to the OOS API documentation.
277

    
278
===========================  =====================
279
Return Code                  Description
280
===========================  =====================
281
200 (OK)                     The request succeeded
282
204 (No Content)             The account has no containers (only for non-extended replies)
283
304 (Not Modified)           The account has not been modified
284
412 (Precondition Failed)    The condition set can not be satisfied
285
===========================  =====================
286

    
287
Will use a ``200`` return code if the reply is of type json/xml.
288

    
289

    
290
POST
291
""""
292

    
293
====================  ===========================
294
Request Header Name   Value
295
====================  ===========================
296
X-Account-Group-*     Optional user defined groups
297
X-Account-Meta-*      Optional user defined metadata
298
====================  ===========================
299

    
300
|
301

    
302
======================  ============================================
303
Request Parameter Name  Value
304
======================  ============================================
305
update                  Do not replace metadata/groups (no value parameter)
306
======================  ============================================
307

    
308
No reply content/headers.
309

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

    
313
================  ===============================
314
Return Code       Description
315
================  ===============================
316
202 (Accepted)    The request has been accepted
317
================  ===============================
318

    
319

    
320
Container Level
321
^^^^^^^^^^^^^^^
322

    
323
List of operations:
324

    
325
=========  ============================
326
Operation  Description
327
=========  ============================
328
HEAD       Retrieve container metadata
329
GET        List objects
330
PUT        Create/update container
331
POST       Update container metadata
332
DELETE     Delete container
333
=========  ============================
334

    
335

    
336
HEAD
337
""""
338

    
339
====================  ===========================
340
Request Header Name   Value
341
====================  ===========================
342
If-Modified-Since     Retrieve if container has changed since provided timestamp
343
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
344
====================  ===========================
345

    
346
|
347

    
348
======================  ===================================
349
Request Parameter Name  Value
350
======================  ===================================
351
until                   Optional timestamp
352
======================  ===================================
353

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

    
356
===========================  ===============================
357
Reply Header Name            Value
358
===========================  ===============================
359
X-Container-Object-Count     The total number of objects in the container
360
X-Container-Bytes-Used       The total number of bytes of all objects stored
361
X-Container-Block-Size       The block size used by the storage backend
362
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
363
X-Container-Until-Timestamp  The last container modification date until the timestamp provided
364
X-Container-Object-Meta      A list with all meta keys used by objects (**TBD**)
365
X-Container-Policy-*         Container behavior and limits
366
X-Container-Meta-*           Optional user defined metadata
367
Last-Modified                The last container modification date (regardless of ``until``)
368
===========================  ===============================
369

    
370
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**)
371

    
372
================  ===============================
373
Return Code       Description
374
================  ===============================
375
204 (No Content)  The request succeeded
376
================  ===============================
377

    
378

    
379
GET
380
"""
381

    
382
====================  ===========================
383
Request Header Name   Value
384
====================  ===========================
385
If-Modified-Since     Retrieve if container has changed since provided timestamp
386
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
387
====================  ===========================
388

    
389
|
390

    
391
======================  ===================================
392
Request Parameter Name  Value
393
======================  ===================================
394
limit                   The amount of results requested (default is 10000)
395
marker                  Return containers with name lexicographically after marker
396
prefix                  Return objects starting with prefix
397
delimiter               Return objects up to the delimiter (discussion follows)
398
path                    Assume ``prefix=path`` and ``delimiter=/``
399
format                  Optional extended reply type (can be ``json`` or ``xml``)
400
meta                    Return objects having the specified meta keys (can be a comma separated list)
401
shared                  Show only shared objects (no value parameter)
402
until                   Optional timestamp
403
======================  ===================================
404

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

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

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

    
412
===========================  ===============================
413
Reply Header Name            Value
414
===========================  ===============================
415
X-Container-Block-Size       The block size used by the storage backend
416
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
417
X-Container-Object-Meta      A list with all meta keys used by allowed objects (**TBD**)
418
Last-Modified                The last container modification date
419
===========================  ===============================
420

    
421
If a ``format=xml`` or ``format=json`` argument is given, extended information on the objects will be returned, serialized in the chosen format.
422
For each object, the information will include all object metadata (names will be in lower case and with hyphens replaced with underscores):
423

    
424
==========================  ======================================
425
Name                        Description
426
==========================  ======================================
427
name                        The name of the object
428
hash                        The ETag of the object
429
bytes                       The size of the object
430
content_type                The MIME content type of the object
431
content_encoding            The encoding of the object (optional)
432
content-disposition         The presentation style of the object (optional)
433
last_modified               The last object modification date (regardless of version)
434
x_object_version            The object's version identifier
435
x_object_version_timestamp  The object's version timestamp
436
x_object_modified_by        The user that committed the object's version
437
x_object_manifest           Object parts prefix in ``<container>/<object>`` form (optional)
438
x_object_sharing            Object permissions (optional)
439
x_object_shared_by          Object inheriting permissions (optional)
440
x_object_public             Object's publicly accessible URI (optional)
441
x_object_meta_*             Optional user defined metadata
442
==========================  ======================================
443

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

    
449
For examples of object details returned in JSON/XML formats refer to the OOS API documentation.
450

    
451
===========================  ===============================
452
Return Code                  Description
453
===========================  ===============================
454
200 (OK)                     The request succeeded
455
204 (No Content)             The account has no containers (only for non-extended replies)
456
304 (Not Modified)           The container has not been modified
457
412 (Precondition Failed)    The condition set can not be satisfied
458
===========================  ===============================
459

    
460
Will use a ``200`` return code if the reply is of type json/xml.
461

    
462

    
463
PUT
464
"""
465

    
466
====================  ================================
467
Request Header Name   Value
468
====================  ================================
469
X-Container-Policy-*  Container behavior and limits
470
X-Container-Meta-*    Optional user defined metadata
471
====================  ================================
472
 
473
No reply content/headers.
474

    
475
If no policy is defined, the container will be created with the default values.
476
Available policy directives:
477

    
478
* ``versioning``: Set to ``auto``, ``manual`` or ``none`` (default is ``manual``)
479
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
480

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

    
483
================  ===============================
484
Return Code       Description
485
================  ===============================
486
201 (Created)     The container has been created
487
202 (Accepted)    The request has been accepted
488
================  ===============================
489

    
490

    
491
POST
492
""""
493

    
494
====================  ================================
495
Request Header Name   Value
496
====================  ================================
497
X-Container-Policy-*  Container behavior and limits
498
X-Container-Meta-*    Optional user defined metadata
499
====================  ================================
500

    
501
|
502

    
503
======================  ============================================
504
Request Parameter Name  Value
505
======================  ============================================
506
update                  Do not replace metadata/policy (no value parameter)
507
======================  ============================================
508

    
509
No reply content/headers.
510

    
511
The operation will overwrite all user defined metadata, except if ``update`` is defined.
512
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.
513

    
514
================  ===============================
515
Return Code       Description
516
================  ===============================
517
202 (Accepted)    The request has been accepted
518
================  ===============================
519

    
520

    
521
DELETE
522
""""""
523

    
524
======================  ===================================
525
Request Parameter Name  Value
526
======================  ===================================
527
until                   Optional timestamp
528
======================  ===================================
529

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

    
532
No reply content/headers.
533

    
534
================  ===============================
535
Return Code       Description
536
================  ===============================
537
204 (No Content)  The request succeeded
538
409 (Conflict)    The container is not empty
539
================  ===============================
540

    
541

    
542
Object Level
543
^^^^^^^^^^^^
544

    
545
List of operations:
546

    
547
=========  =================================
548
Operation  Description
549
=========  =================================
550
HEAD       Retrieve object metadata
551
GET        Read object data
552
PUT        Write object data or copy/move object
553
COPY       Copy object
554
MOVE       Move object
555
POST       Update object metadata/data
556
DELETE     Delete object
557
=========  =================================
558

    
559

    
560
HEAD
561
""""
562

    
563
====================  ================================
564
Request Header Name   Value
565
====================  ================================
566
If-Match              Retrieve if ETags match
567
If-None-Match         Retrieve if ETags don't match
568
If-Modified-Since     Retrieve if object has changed since provided timestamp
569
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
570
====================  ================================
571

    
572
|
573

    
574
======================  ===================================
575
Request Parameter Name  Value
576
======================  ===================================
577
version                 Optional version identifier
578
======================  ===================================
579

    
580
|
581

    
582
==========================  ===============================
583
Reply Header Name           Value
584
==========================  ===============================
585
ETag                        The ETag of the object
586
Content-Length              The size of the object
587
Content-Type                The MIME content type of the object
588
Last-Modified               The last object modification date (regardless of version)
589
Content-Encoding            The encoding of the object (optional)
590
Content-Disposition         The presentation style of the object (optional)
591
X-Object-Version            The object's version identifier
592
X-Object-Version-Timestamp  The object's version timestamp
593
X-Object-Modified-By        The user that comitted the object's version
594
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
595
X-Object-Sharing            Object permissions (optional)
596
X-Object-Shared-By          Object inheriting permissions (optional)
597
X-Object-Allowed-To         Allowed actions on object (optional)
598
X-Object-Public             Object's publicly accessible URI (optional)
599
X-Object-Meta-*             Optional user defined metadata
600
==========================  ===============================
601

    
602
|
603

    
604
================  ===============================
605
Return Code       Description
606
================  ===============================
607
200 (No Content)  The request succeeded
608
================  ===============================
609

    
610

    
611
GET
612
"""
613

    
614
====================  ================================
615
Request Header Name   Value
616
====================  ================================
617
Range                 Optional range of data to retrieve
618
If-Range              Retrieve the missing part if entity is unchanged; otherwise, retrieve the entire new entity (used together with Range header)
619
If-Match              Retrieve if ETags match
620
If-None-Match         Retrieve if ETags don't match
621
If-Modified-Since     Retrieve if object has changed since provided timestamp
622
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
623
====================  ================================
624

    
625
|
626

    
627
======================  ===================================
628
Request Parameter Name  Value
629
======================  ===================================
630
format                  Optional extended reply type (can be ``json`` or ``xml``)
631
hashmap                 Optional request for hashmap (no value parameter)
632
version                 Optional version identifier or ``list`` (specify a format if requesting a list)
633
======================  ===================================
634

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

    
637
Hashmaps expose the underlying storage format of the object. Note that each hash is computed after trimming trailing null bytes of the corresponding block.
638

    
639
Example ``format=json`` reply:
640

    
641
::
642

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

    
645
Example ``format=xml`` reply:
646

    
647
::
648

    
649
  <?xml version="1.0" encoding="UTF-8"?>
650
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
651
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
652
    <hash>...</hash>
653
  </object>
654

    
655
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.
656

    
657
Example ``format=json`` reply:
658

    
659
::
660

    
661
  {"versions": [[23, 1307700892], [28, 1307700898], ...]}
662

    
663
Example ``format=xml`` reply:
664

    
665
::
666

    
667
  <?xml version="1.0" encoding="UTF-8"?>
668
  <object name="file">
669
    <version timestamp="1307700892">23</version>
670
    <version timestamp="1307700898">28</version>
671
    <version timestamp="...">...</version>
672
  </object>
673

    
674
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.
675

    
676
==========================  ===============================
677
Reply Header Name           Value
678
==========================  ===============================
679
ETag                        The ETag of the object
680
Content-Length              The size of the data returned
681
Content-Type                The MIME content type of the object
682
Content-Range               The range of data included (only on a single range request)
683
Last-Modified               The last object modification date (regardless of version)
684
Content-Encoding            The encoding of the object (optional)
685
Content-Disposition         The presentation style of the object (optional)
686
X-Object-Version            The object's version identifier
687
X-Object-Version-Timestamp  The object's version timestamp
688
X-Object-Modified-By        The user that comitted the object's version
689
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
690
X-Object-Sharing            Object permissions (optional)
691
X-Object-Shared-By          Object inheriting permissions (optional)
692
X-Object-Allowed-To         Allowed actions on object (optional)
693
X-Object-Public             Object's publicly accessible URI (optional)
694
X-Object-Meta-*             Optional user defined metadata
695
==========================  ===============================
696

    
697
|
698

    
699
===========================  ==============================
700
Return Code                  Description
701
===========================  ==============================
702
200 (OK)                     The request succeeded
703
206 (Partial Content)        The range request succeeded
704
304 (Not Modified)           The object has not been modified
705
412 (Precondition Failed)    The condition set can not be satisfied
706
416 (Range Not Satisfiable)  The requested range is out of limits
707
===========================  ==============================
708

    
709

    
710
PUT
711
"""
712

    
713
====================  ================================
714
Request Header Name   Value
715
====================  ================================
716
If-Match              Put if ETags match with current object
717
If-None-Match         Put if ETags don't match with current object
718
ETag                  The MD5 hash of the object (optional to check written data)
719
Content-Length        The size of the data written
720
Content-Type          The MIME content type of the object
721
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
722
X-Copy-From           The source path in the form ``/<container>/<object>``
723
X-Move-From           The source path in the form ``/<container>/<object>``
724
X-Source-Version      The source version to copy from
725
Content-Encoding      The encoding of the object (optional)
726
Content-Disposition   The presentation style of the object (optional)
727
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
728
X-Object-Sharing      Object permissions (optional)
729
X-Object-Public       Object is publicly accessible (optional)
730
X-Object-Meta-*       Optional user defined metadata
731
====================  ================================
732

    
733
|
734

    
735
======================  ===================================
736
Request Parameter Name  Value
737
======================  ===================================
738
format                  Optional extended request type (can be ``json`` or ``xml``)
739
hashmap                 Optional hashmap provided instead of data (no value parameter)
740
======================  ===================================
741

    
742
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 a simple text format, with one hash per line).
743

    
744
Hashmaps should be formatted as outlined in ``GET``.
745

    
746
==========================  ===============================
747
Reply Header Name           Value
748
==========================  ===============================
749
ETag                        The MD5 hash of the object (on create)
750
X-Object-Version            The object's new version
751
==========================  ===============================
752

    
753
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.
754

    
755
===========================  ==============================
756
Return Code                  Description
757
===========================  ==============================
758
201 (Created)                The object has been created
759
409 (Conflict)               The object can not be created from the provided hashmap, or there are conflicting permissions (a list of missing hashes, or a list of conflicting sharing paths will be included in the reply - in simple text format)
760
411 (Length Required)        Missing ``Content-Length`` or ``Content-Type`` in the request
761
422 (Unprocessable Entity)   The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
762
===========================  ==============================
763

    
764

    
765
COPY
766
""""
767

    
768
====================  ================================
769
Request Header Name   Value
770
====================  ================================
771
If-Match              Proceed if ETags match with object
772
If-None-Match         Proceed if ETags don't match with object
773
Destination           The destination path in the form ``/<container>/<object>``
774
Content-Type          The MIME content type of the object (optional)
775
Content-Encoding      The encoding of the object (optional)
776
Content-Disposition   The presentation style of the object (optional)
777
X-Source-Version      The source version to copy from
778
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
779
X-Object-Sharing      Object permissions (optional)
780
X-Object-Public       Object is publicly accessible (optional)
781
X-Object-Meta-*       Optional user defined metadata
782
====================  ================================
783

    
784
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.
785

    
786
==========================  ===============================
787
Reply Header Name           Value
788
==========================  ===============================
789
X-Object-Version            The object's new version
790
==========================  ===============================
791

    
792
|
793

    
794
===========================  ==============================
795
Return Code                  Description
796
===========================  ==============================
797
201 (Created)                The object has been created
798
409 (Conflict)               There are conflicting permissions (a list of conflicting sharing paths will be included in the reply - in simple text format)
799
===========================  ==============================
800

    
801

    
802
MOVE
803
""""
804

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

    
807

    
808
POST
809
""""
810

    
811
====================  ================================
812
Request Header Name   Value
813
====================  ================================
814
If-Match              Proceed if ETags match with object
815
If-None-Match         Proceed if ETags don't match with object
816
Content-Length        The size of the data written (optional, to update)
817
Content-Type          The MIME content type of the object (optional, to update)
818
Content-Range         The range of data supplied (optional, to update)
819
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
820
Content-Encoding      The encoding of the object (optional)
821
Content-Disposition   The presentation style of the object (optional)
822
X-Source-Object       Update with data from the object at path ``/<container>/<object>`` (optional, to update)
823
X-Source-Version      The source version to update from (optional, to update)
824
X-Object-Bytes        The updated object's final size (optional, when updating)
825
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
826
X-Object-Sharing      Object permissions (optional)
827
X-Object-Public       Object is publicly accessible (optional)
828
X-Object-Meta-*       Optional user defined metadata
829
====================  ================================
830

    
831
|
832

    
833
======================  ============================================
834
Request Parameter Name  Value
835
======================  ============================================
836
update                  Do not replace metadata (no value parameter)
837
======================  ============================================
838

    
839
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.
840

    
841
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.
842

    
843
To update an object's data:
844

    
845
* 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.
846
* 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``).
847
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
848

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

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

    
855
A data update will trigger an ETag change. Updated ETags correspond to the single Merkle hash of the object's hashmap (refer to http://bittorrent.org/beps/bep_0030.html for more information).
856

    
857
No reply content. No reply headers if only metadata is updated.
858

    
859
==========================  ===============================
860
Reply Header Name           Value
861
==========================  ===============================
862
ETag                        The new ETag of the object (data updated)
863
X-Object-Version            The object's new version
864
==========================  ===============================
865

    
866
|
867

    
868
===========================  ==============================
869
Return Code                  Description
870
===========================  ==============================
871
202 (Accepted)               The request has been accepted (not a data update)
872
204 (No Content)             The request succeeded (data updated)
873
409 (Conflict)               There are conflicting permissions (a list of conflicting sharing paths will be included in the reply - in simple text format)
874
411 (Length Required)        Missing ``Content-Length`` in the request
875
416 (Range Not Satisfiable)  The supplied range is invalid
876
===========================  ==============================
877

    
878
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 exactly two fields, as in the following example. ::
879

    
880
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt" enctype="multipart/form-data">
881
    <input type="hidden" name="X-Auth-Token" value="0000">
882
    <input type="file" name="X-Object-Data">
883
    <input type="submit">
884
  </form>
885

    
886
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. Metadata, sharing and other object attributes can not be set this way.
887

    
888
==========================  ===============================
889
Reply Header Name           Value
890
==========================  ===============================
891
ETag                        The MD5 hash of the object
892
X-Object-Version            The object's new version
893
==========================  ===============================
894

    
895
|
896

    
897
===========================  ==============================
898
Return Code                  Description
899
===========================  ==============================
900
201 (Created)                The object has been created
901
===========================  ==============================
902

    
903

    
904
DELETE
905
""""""
906

    
907
======================  ===================================
908
Request Parameter Name  Value
909
======================  ===================================
910
until                   Optional timestamp
911
======================  ===================================
912

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

    
915
No reply content/headers.
916

    
917
===========================  ==============================
918
Return Code                  Description
919
===========================  ==============================
920
204 (No Content)             The request succeeded
921
===========================  ==============================
922

    
923
Sharing and Public Objects
924
^^^^^^^^^^^^^^^^^^^^^^^^^^
925

    
926
Read and write control in Pithos is managed by setting appropriate permissions with the ``X-Object-Sharing`` header. The permissions are applied using prefix-based inheritance. Thus, each set of authorization directives is applied to all objects sharing the same prefix with the object where the corresponding ``X-Object-Sharing`` header is defined. For simplicity, nested/overlapping permissions are not allowed. Setting ``X-Object-Sharing`` will fail, if the object is already "covered", or another object with a longer common-prefix name already has permissions. 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.
927

    
928
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.
929

    
930
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):
931

    
932
==========================  ===============================
933
Reply Header Name           Value
934
==========================  ===============================
935
ETag                        The ETag of the object
936
Content-Length              The size of the data returned
937
Content-Type                The MIME content type of the object
938
Content-Range               The range of data included (only on a single range request)
939
Last-Modified               The last object modification date (regardless of version)
940
Content-Encoding            The encoding of the object (optional)
941
Content-Disposition         The presentation style of the object (optional)
942
==========================  ===============================
943

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

    
946
Summary
947
^^^^^^^
948

    
949
List of differences from the OOS API:
950

    
951
* Support for ``X-Account-Meta-*`` style headers at the account level. Use ``POST`` to update.
952
* Support for ``X-Container-Meta-*`` style headers at the container level. Can be set when creating via ``PUT``. Use ``POST`` to update.
953
* Header ``X-Container-Object-Meta`` at the container level and parameter ``meta`` in container listings. (**TBD**)
954
* Container policies to manage behavior and limits.
955
* Headers ``X-Container-Block-*`` at the container level, exposing the underlying storage characteristics.
956
* All metadata replies, at all levels, include latest modification information.
957
* At all levels, a ``HEAD`` or ``GET`` request may use ``If-Modified-Since`` and ``If-Unmodified-Since`` headers.
958
* Container/object lists include all associated metadata if the reply is of type json/xml. Some names are kept to their OOS API equivalents for compatibility.
959
* Option to include only shared containers/objects in listings.
960
* 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.
961
* Multi-range object ``GET`` support as outlined in RFC2616.
962
* Object hashmap retrieval through ``GET`` and the ``format`` parameter.
963
* Object create via hashmap through ``PUT`` and the ``format`` parameter.
964
* Object create using ``POST`` to support standard HTML forms.
965
* 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``. New ETag corresponds to the Merkle hash of the object's hashmap.
966
* Include new version identifier in replies for object replace/change requests.
967
* Object ``MOVE`` support.
968
* Conditional object create/update operations, using ``If-Match`` and ``If-None-Match`` headers.
969
* Time-variant account/container listings via the ``until`` parameter.
970
* Object versions - parameter ``version`` in ``HEAD``/``GET`` (list versions with ``GET``), ``X-Object-Version-*`` meta in replies, ``X-Source-Version`` in ``PUT``/``COPY``.
971
* 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.
972
* Support for prefix-based inheritance when enforcing permissions. Parent object carrying the authorization directives is reported in ``X-Object-Shared-By``.
973
* Large object support with ``X-Object-Manifest``.
974
* Trace the user that created/modified an object with ``X-Object-Modified-By``.
975
* Purge container/object history with the ``until`` parameter in ``DELETE``.
976

    
977
Clarifications/suggestions:
978

    
979
* 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.
980
* 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.
981
* A ``GET`` reply for a level will include all headers of the corresponding ``HEAD`` request.
982
* 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.
983
* 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.
984
* Container/object lists use a ``200`` return code if the reply is of type json/xml. The reply will include an empty json/xml.
985
* 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.
986
* 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.
987
* A copy/move using ``PUT``/``COPY``/``MOVE`` will always update metadata, keeping all old values except the ones redefined in the request headers.
988
* 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.
989

    
990
The Pithos Client
991
-----------------
992

    
993
User Experience
994
^^^^^^^^^^^^^^^
995

    
996
Hopefully this API will allow for a multitude of client implementations, each supporting a different device or operating system. All clients will be able to manipulate containers and objects - even software only designed for OOS API compatibility. But a Pithos interface should not be only about showing containers and folders. There are some extra user interface elements and functionalities that should be common to all implementations.
997

    
998
Upon entrance to the service, a user is presented with the following elements - which can be represented as folders or with other related icons:
999

    
1000
* The ``home`` element, which is used as the default entry point to the user's "files". Objects under ``home`` are represented in the usual hierarchical organization of folders and files.
1001
* The ``trash`` element, which contains files that have been marked for deletion, but can still be recovered.
1002
* The ``shared`` element, which contains all objects shared by the user to other users of the system.
1003
* The ``others`` element, which contains all objects that other users share with the user.
1004
* The ``groups`` element, which contains the names of groups the user has defined. Each group consists of a user list. Group creation, deletion, and manipulation is carried out by actions originating here.
1005
* The ``history`` element, which allows browsing past instances of ``home`` and - optionally - ``trash``.
1006

    
1007
Objects in Pithos can be:
1008

    
1009
* Moved to trash and then deleted.
1010
* Shared with specific permissions.
1011
* Made public (shared with non-Pithos users).
1012
* Restored from previous versions.
1013

    
1014
Some of these functions are performed by the client software and some by the Pithos server.
1015

    
1016
In the first version of Pithos, objects could also be assigned custom tags. This is no longer supported. Existing deployments can migrate tags into a specific metadata value, i.e. ``X-Object-Meta-Tags``.
1017

    
1018
Implementation Guidelines
1019
^^^^^^^^^^^^^^^^^^^^^^^^^
1020

    
1021
Pithos clients should use the ``pithos`` and ``trash`` containers for active and inactive objects respectively. If any of these containers is not found, the client software should create it, without interrupting the user's workflow. The ``home`` element corresponds to ``pithos`` and the ``trash`` element to ``trash``. Use ``PUT`` with the ``X-Move-From`` header, or ``MOVE`` to transfer objects from one container to the other. Use ``DELETE`` to remove from ``pithos`` without trashing, or to remove from ``trash``. When moving objects, detect naming conflicts with the ``If-Match`` or ``If-None-Match`` headers. Such conflicts should be resolved by the user.
1022

    
1023
Object names should use the ``/`` delimiter to impose a hierarchy of folders and files.
1024

    
1025
The ``shared`` element should be implemented as a read-only view of the ``pithos`` container, using the ``shared`` parameter when listing objects. The ``others`` element, should start with a top-level ``GET`` to retrieve the list of accounts accessible to the user. It is suggested that the client software hides the next step of navigation - the container - if it only includes ``pithos`` and forwards the user directly to the objects.
1026

    
1027
Public objects are not included in ``shared`` and ``others`` listings. It is suggested that they are marked in a visually distinctive way in ``pithos`` listings (for example using an icon overlay).
1028

    
1029
A special application menu, or a section in application preferences, should be devoted to managing groups (the ``groups`` element). All group-related actions are implemented at the account level.
1030

    
1031
Browsing past versions of objects should be available both at the object and the container level. At the object level, a list of past versions can be included in the screen showing details or more information on the object (metadata, permissions, etc.). At the container level, it is suggested that clients use a ``history`` element, which presents to the user a read-only, time-variable view of ``pithos`` contents. This can be accomplished via the ``until`` parameter in listings. Optionally, ``history`` may include ``trash``.
1032

    
1033
Uploading and downloading data
1034
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1035

    
1036
By using hashmaps to upload and download objects the corresponding operations can complete much faster.
1037

    
1038
In the case of an upload, only the missing blocks will be submitted to the server:
1039

    
1040
* Calculate the hash value for each block of the object to be uploaded. Use the hash algorithm and block size of the destination container.
1041
* Send a hashmap ``PUT`` request for the object.
1042

    
1043
  * Server responds with status ``201`` (Created):
1044

    
1045
    * Blocks are already on the server. The object has been created. Done.
1046

    
1047
  * Server responds with status ``409`` (Conflict):
1048

    
1049
    * Server's response body contains the hashes of the blocks that do not exist on the server.
1050
    * For each one of the hash values in the server's response:
1051

    
1052
      * Send a ``PUT`` request to the server with the corresponding data block. Individual blocks are uploaded to a file named ``.upload``.
1053

    
1054
* Repeat hashmap ``PUT``. Fail if the server's response is not ``201``.
1055

    
1056
Consulting hashmaps when downloading allows for resuming partially transferred objects. The client should retrieve the hashmap from the server and compare it with the hashmap computed from the respective local file. Any missing parts can be downloaded with ``GET`` requests with the additional ``Range`` header.
1057

    
1058
Recommended Practices and Examples
1059
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1060

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

    
1063
* Get account information ::
1064

    
1065
    curl -X HEAD -D - \
1066
         -H "X-Auth-Token: 0000" \
1067
         https://pithos.dev.grnet.gr/v1/user
1068

    
1069
* List available containers ::
1070

    
1071
    curl -X GET -D - \
1072
         -H "X-Auth-Token: 0000" \
1073
         https://pithos.dev.grnet.gr/v1/user
1074

    
1075
* Get container information ::
1076

    
1077
    curl -X HEAD -D - \
1078
         -H "X-Auth-Token: 0000" \
1079
         https://pithos.dev.grnet.gr/v1/user/pithos
1080

    
1081
* Add a new container ::
1082

    
1083
    curl -X PUT -D - \
1084
         -H "X-Auth-Token: 0000" \
1085
         https://pithos.dev.grnet.gr/v1/user/test
1086

    
1087
* Delete a container ::
1088

    
1089
    curl -X DELETE -D - \
1090
         -H "X-Auth-Token: 0000" \
1091
         https://pithos.dev.grnet.gr/v1/user/test
1092

    
1093
* List objects in a container ::
1094

    
1095
    curl -X GET -D - \
1096
         -H "X-Auth-Token: 0000" \
1097
         https://pithos.dev.grnet.gr/v1/user/pithos
1098

    
1099
* List objects in a container (extended reply) ::
1100

    
1101
    curl -X GET -D - \
1102
         -H "X-Auth-Token: 0000" \
1103
         https://pithos.dev.grnet.gr/v1/user/pithos?format=json
1104

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

    
1107
* List metadata keys used by objects in a container
1108

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

    
1111
* List objects in a container having a specific meta defined ::
1112

    
1113
    curl -X GET -D - \
1114
         -H "X-Auth-Token: 0000" \
1115
         https://pithos.dev.grnet.gr/v1/user/pithos?meta=favorites
1116

    
1117
* Retrieve an object ::
1118

    
1119
    curl -X GET -D - \
1120
         -H "X-Auth-Token: 0000" \
1121
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1122

    
1123
* Retrieve an object (specific ranges of data) ::
1124

    
1125
    curl -X GET -D - \
1126
         -H "X-Auth-Token: 0000" \
1127
         -H "Range: bytes=0-9" \
1128
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1129

    
1130
  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``.
1131

    
1132
* Add a new object (folder type) (**TBD**) ::
1133

    
1134
    curl -X PUT -D - \
1135
         -H "X-Auth-Token: 0000" \
1136
         -H "Content-Type: application/folder" \
1137
         https://pithos.dev.grnet.gr/v1/user/pithos/folder
1138

    
1139
* Add a new object ::
1140

    
1141
    curl -X PUT -D - \
1142
         -H "X-Auth-Token: 0000" \
1143
         -H "Content-Type: text/plain" \
1144
         -T EXAMPLE.txt
1145
         https://pithos.dev.grnet.gr/v1/user/pithos/folder/EXAMPLE.txt
1146

    
1147
* Update an object ::
1148

    
1149
    curl -X POST -D - \
1150
         -H "X-Auth-Token: 0000" \
1151
         -H "Content-Length: 10" \
1152
         -H "Content-Type: application/octet-stream" \
1153
         -H "Content-Range: bytes 10-19/*" \
1154
         -d "0123456789" \
1155
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1156

    
1157
  This will update bytes 10-19 with the data specified.
1158

    
1159
* Update an object (append) ::
1160

    
1161
    curl -X POST -D - \
1162
         -H "X-Auth-Token: 0000" \
1163
         -H "Content-Length: 10" \
1164
         -H "Content-Type: application/octet-stream" \
1165
         -H "Content-Range: bytes */*" \
1166
         -d "0123456789" \
1167
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1168

    
1169
* Update an object (truncate) ::
1170

    
1171
    curl -X POST -D - \
1172
         -H "X-Auth-Token: 0000" \
1173
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1174
         -H "Content-Range: bytes 0-0/*" \
1175
         -H "X-Object-Bytes: 0" \
1176
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1177

    
1178
  This will truncate the object to 0 bytes.
1179

    
1180
* Add object metadata ::
1181

    
1182
    curl -X POST -D - \
1183
         -H "X-Auth-Token: 0000" \
1184
         -H "X-Object-Meta-First: first_meta_value" \
1185
         -H "X-Object-Meta-Second: second_meta_value" \
1186
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1187

    
1188
* Delete object metadata ::
1189

    
1190
    curl -X POST -D - \
1191
         -H "X-Auth-Token: 0000" \
1192
         -H "X-Object-Meta-First: first_meta_value" \
1193
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1194

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

    
1197
* Delete an object ::
1198

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