Statistics
| Branch: | Tag: | Revision:

root / docs / source / devguide.rst @ 79bb41b7

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

    
64
Pithos Users and Authentication
65
-------------------------------
66

    
67
Pithos keeps separate databases for users and objects.
68

    
69
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.
70

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

    
73
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.
74

    
75
The login URI accepts the following parameters:
76

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

    
84
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.
85

    
86
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. 
87

    
88
The Pithos API
89
--------------
90

    
91
The URI requests supported by the Pithos API follow one of the following forms:
92

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

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

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

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

    
111
Top Level
112
^^^^^^^^^
113

    
114
List of operations:
115

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

    
122
GET
123
"""
124

    
125
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.
126

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

    
133
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.
134

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

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

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

    
154
Example ``format=json`` reply:
155

    
156
::
157

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

    
160
Example ``format=xml`` reply:
161

    
162
::
163

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

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

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

    
182
Account Level
183
^^^^^^^^^^^^^
184

    
185
List of operations:
186

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

    
195
HEAD
196
""""
197

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

    
205
|
206

    
207
======================  ===================================
208
Request Parameter Name  Value
209
======================  ===================================
210
until                   Optional timestamp
211
======================  ===================================
212

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

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

    
229
|
230

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

    
237

    
238
GET
239
"""
240

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

    
248
|
249

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

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

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

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

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

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

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

    
291

    
292
POST
293
""""
294

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

    
302
|
303

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

    
310
No reply content/headers.
311

    
312
The operation will overwrite all user defined metadata, except if ``update`` is defined.
313
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.
314

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

    
321

    
322
Container Level
323
^^^^^^^^^^^^^^^
324

    
325
List of operations:
326

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

    
337

    
338
HEAD
339
""""
340

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

    
348
|
349

    
350
======================  ===================================
351
Request Parameter Name  Value
352
======================  ===================================
353
until                   Optional timestamp
354
======================  ===================================
355

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

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

    
372
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**)
373

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

    
380

    
381
GET
382
"""
383

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

    
391
|
392

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

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

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

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

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

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

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

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

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

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

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

    
465

    
466
PUT
467
"""
468

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

    
478
If no policy is defined, the container will be created with the default values.
479
Available policy directives:
480

    
481
* ``versioning``: Set to ``auto``, ``manual`` or ``none`` (default is ``manual``)
482
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
483

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

    
486
================  ===============================
487
Return Code       Description
488
================  ===============================
489
201 (Created)     The container has been created
490
202 (Accepted)    The request has been accepted
491
================  ===============================
492

    
493

    
494
POST
495
""""
496

    
497
====================  ================================
498
Request Header Name   Value
499
====================  ================================
500
X-Container-Policy-*  Container behavior and limits
501
X-Container-Meta-*    Optional user defined metadata
502
====================  ================================
503

    
504
|
505

    
506
======================  ============================================
507
Request Parameter Name  Value
508
======================  ============================================
509
update                  Do not replace metadata/policy (no value parameter)
510
======================  ============================================
511

    
512
No reply content/headers.
513

    
514
The operation will overwrite all user defined metadata, except if ``update`` is defined.
515
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.
516

    
517
================  ===============================
518
Return Code       Description
519
================  ===============================
520
202 (Accepted)    The request has been accepted
521
================  ===============================
522

    
523

    
524
DELETE
525
""""""
526

    
527
======================  ===================================
528
Request Parameter Name  Value
529
======================  ===================================
530
until                   Optional timestamp
531
======================  ===================================
532

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

    
535
No reply content/headers.
536

    
537
================  ===============================
538
Return Code       Description
539
================  ===============================
540
204 (No Content)  The request succeeded
541
409 (Conflict)    The container is not empty
542
================  ===============================
543

    
544

    
545
Object Level
546
^^^^^^^^^^^^
547

    
548
List of operations:
549

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

    
562

    
563
HEAD
564
""""
565

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

    
575
|
576

    
577
======================  ===================================
578
Request Parameter Name  Value
579
======================  ===================================
580
version                 Optional version identifier
581
======================  ===================================
582

    
583
|
584

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

    
605
|
606

    
607
================  ===============================
608
Return Code       Description
609
================  ===============================
610
200 (No Content)  The request succeeded
611
================  ===============================
612

    
613

    
614
GET
615
"""
616

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

    
628
|
629

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

    
638
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.
639

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

    
642
Example ``format=json`` reply:
643

    
644
::
645

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

    
648
Example ``format=xml`` reply:
649

    
650
::
651

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

    
658
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.
659

    
660
Example ``format=json`` reply:
661

    
662
::
663

    
664
  {"versions": [[23, 1307700892], [28, 1307700898], ...]}
665

    
666
Example ``format=xml`` reply:
667

    
668
::
669

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

    
677
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.
678

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

    
700
|
701

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

    
712

    
713
PUT
714
"""
715

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

    
737
|
738

    
739
======================  ===================================
740
Request Parameter Name  Value
741
======================  ===================================
742
format                  Optional extended request type (can be ``json`` or ``xml``)
743
hashmap                 Optional hashmap provided instead of data (no value parameter)
744
======================  ===================================
745

    
746
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).
747

    
748
Hashmaps should be formatted as outlined in ``GET``.
749

    
750
==========================  ===============================
751
Reply Header Name           Value
752
==========================  ===============================
753
ETag                        The MD5 hash of the object (on create)
754
X-Object-Version            The object's new version
755
==========================  ===============================
756

    
757
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.
758

    
759
===========================  ==============================
760
Return Code                  Description
761
===========================  ==============================
762
201 (Created)                The object has been created
763
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)
764
411 (Length Required)        Missing ``Content-Length`` or ``Content-Type`` in the request
765
422 (Unprocessable Entity)   The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
766
===========================  ==============================
767

    
768

    
769
COPY
770
""""
771

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

    
789
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.
790

    
791
==========================  ===============================
792
Reply Header Name           Value
793
==========================  ===============================
794
X-Object-Version            The object's new version
795
==========================  ===============================
796

    
797
|
798

    
799
===========================  ==============================
800
Return Code                  Description
801
===========================  ==============================
802
201 (Created)                The object has been created
803
409 (Conflict)               There are conflicting permissions (a list of conflicting sharing paths will be included in the reply - in simple text format)
804
===========================  ==============================
805

    
806

    
807
MOVE
808
""""
809

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

    
812

    
813
POST
814
""""
815

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

    
836
|
837

    
838
======================  ============================================
839
Request Parameter Name  Value
840
======================  ============================================
841
update                  Do not replace metadata (no value parameter)
842
======================  ============================================
843

    
844
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.
845

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

    
848
To update an object's data:
849

    
850
* 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.
851
* 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``).
852
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
853

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

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

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

    
862
No reply content. No reply headers if only metadata is updated.
863

    
864
==========================  ===============================
865
Reply Header Name           Value
866
==========================  ===============================
867
ETag                        The new ETag of the object (data updated)
868
X-Object-Version            The object's new version
869
==========================  ===============================
870

    
871
|
872

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

    
883
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. ::
884

    
885
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt" enctype="multipart/form-data">
886
    <input type="hidden" name="X-Auth-Token" value="0000">
887
    <input type="file" name="X-Object-Data">
888
    <input type="submit">
889
  </form>
890

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

    
893
==========================  ===============================
894
Reply Header Name           Value
895
==========================  ===============================
896
ETag                        The MD5 hash of the object
897
X-Object-Version            The object's new version
898
==========================  ===============================
899

    
900
|
901

    
902
===========================  ==============================
903
Return Code                  Description
904
===========================  ==============================
905
201 (Created)                The object has been created
906
===========================  ==============================
907

    
908

    
909
DELETE
910
""""""
911

    
912
======================  ===================================
913
Request Parameter Name  Value
914
======================  ===================================
915
until                   Optional timestamp
916
======================  ===================================
917

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

    
920
No reply content/headers.
921

    
922
===========================  ==============================
923
Return Code                  Description
924
===========================  ==============================
925
204 (No Content)             The request succeeded
926
===========================  ==============================
927

    
928
Sharing and Public Objects
929
^^^^^^^^^^^^^^^^^^^^^^^^^^
930

    
931
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.
932

    
933
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.
934

    
935
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):
936

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

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

    
951
Summary
952
^^^^^^^
953

    
954
List of differences from the OOS API:
955

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

    
983
Clarifications/suggestions:
984

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

    
996
The Pithos Client
997
-----------------
998

    
999
User Experience
1000
^^^^^^^^^^^^^^^
1001

    
1002
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.
1003

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

    
1006
* 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.
1007
* The ``trash`` element, which contains files that have been marked for deletion, but can still be recovered.
1008
* The ``shared`` element, which contains all objects shared by the user to other users of the system.
1009
* The ``others`` element, which contains all objects that other users share with the user.
1010
* 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.
1011
* The ``history`` element, which allows browsing past instances of ``home`` and - optionally - ``trash``.
1012

    
1013
Objects in Pithos can be:
1014

    
1015
* Moved to trash and then deleted.
1016
* Shared with specific permissions.
1017
* Made public (shared with non-Pithos users).
1018
* Restored from previous versions.
1019

    
1020
Some of these functions are performed by the client software and some by the Pithos server.
1021

    
1022
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``.
1023

    
1024
Implementation Guidelines
1025
^^^^^^^^^^^^^^^^^^^^^^^^^
1026

    
1027
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.
1028

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

    
1031
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.
1032

    
1033
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).
1034

    
1035
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.
1036

    
1037
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``.
1038

    
1039
Uploading and downloading data
1040
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1041

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

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

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

    
1049
  * Server responds with status ``201`` (Created):
1050

    
1051
    * Blocks are already on the server. The object has been created. Done.
1052

    
1053
  * Server responds with status ``409`` (Conflict):
1054

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

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

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

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

    
1064
Syncing
1065
^^^^^^^
1066

    
1067
Consider the following algorithm for synchronizing a local folder with the server. The "state" is the complete object listing, with the corresponding attributes.
1068
 
1069
::
1070

    
1071
  L: local state (stored state from last sync with the server)
1072
  C: current state (state computed right before sync)
1073
  S: server state
1074

    
1075
  if C == L:
1076
      # No local changes
1077
      if S == L:
1078
          # No remote changes, nothing to do
1079
      else:
1080
          # Update local state to match that of the server
1081
         L = S
1082
  else:
1083
      # We have local changes
1084
      if S == L:
1085
          # No remote changes, update the server
1086
          S = C
1087
          L = S
1088
      else:
1089
          # Both we and server have changes
1090
          if C == S:
1091
              # We were lucky, we did the same change
1092
              L = S
1093
          else:
1094
              # We have conflicting changes
1095
              resolve conflict
1096

    
1097
Notes:
1098

    
1099
* States represent file hashes (either MD5 or Merkle). Deleted or non-existing files are assumed to have a magic hash (e.g. empty string).
1100
* Updating a state (either local or remote) implies downloading, uploading or deleting the appropriate file.
1101

    
1102
Recommended Practices and Examples
1103
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1104

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

    
1107
* Get account information ::
1108

    
1109
    curl -X HEAD -D - \
1110
         -H "X-Auth-Token: 0000" \
1111
         https://pithos.dev.grnet.gr/v1/user
1112

    
1113
* List available containers ::
1114

    
1115
    curl -X GET -D - \
1116
         -H "X-Auth-Token: 0000" \
1117
         https://pithos.dev.grnet.gr/v1/user
1118

    
1119
* Get container information ::
1120

    
1121
    curl -X HEAD -D - \
1122
         -H "X-Auth-Token: 0000" \
1123
         https://pithos.dev.grnet.gr/v1/user/pithos
1124

    
1125
* Add a new container ::
1126

    
1127
    curl -X PUT -D - \
1128
         -H "X-Auth-Token: 0000" \
1129
         https://pithos.dev.grnet.gr/v1/user/test
1130

    
1131
* Delete a container ::
1132

    
1133
    curl -X DELETE -D - \
1134
         -H "X-Auth-Token: 0000" \
1135
         https://pithos.dev.grnet.gr/v1/user/test
1136

    
1137
* List objects in a container ::
1138

    
1139
    curl -X GET -D - \
1140
         -H "X-Auth-Token: 0000" \
1141
         https://pithos.dev.grnet.gr/v1/user/pithos
1142

    
1143
* List objects in a container (extended reply) ::
1144

    
1145
    curl -X GET -D - \
1146
         -H "X-Auth-Token: 0000" \
1147
         https://pithos.dev.grnet.gr/v1/user/pithos?format=json
1148

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

    
1151
* List metadata keys used by objects in a container
1152

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

    
1155
* List objects in a container having a specific meta defined ::
1156

    
1157
    curl -X GET -D - \
1158
         -H "X-Auth-Token: 0000" \
1159
         https://pithos.dev.grnet.gr/v1/user/pithos?meta=favorites
1160

    
1161
* Retrieve an object ::
1162

    
1163
    curl -X GET -D - \
1164
         -H "X-Auth-Token: 0000" \
1165
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1166

    
1167
* Retrieve an object (specific ranges of data) ::
1168

    
1169
    curl -X GET -D - \
1170
         -H "X-Auth-Token: 0000" \
1171
         -H "Range: bytes=0-9" \
1172
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1173

    
1174
  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``.
1175

    
1176
* Add a new object (folder type) (**TBD**) ::
1177

    
1178
    curl -X PUT -D - \
1179
         -H "X-Auth-Token: 0000" \
1180
         -H "Content-Type: application/folder" \
1181
         https://pithos.dev.grnet.gr/v1/user/pithos/folder
1182

    
1183
* Add a new object ::
1184

    
1185
    curl -X PUT -D - \
1186
         -H "X-Auth-Token: 0000" \
1187
         -H "Content-Type: text/plain" \
1188
         -T EXAMPLE.txt
1189
         https://pithos.dev.grnet.gr/v1/user/pithos/folder/EXAMPLE.txt
1190

    
1191
* Update an object ::
1192

    
1193
    curl -X POST -D - \
1194
         -H "X-Auth-Token: 0000" \
1195
         -H "Content-Length: 10" \
1196
         -H "Content-Type: application/octet-stream" \
1197
         -H "Content-Range: bytes 10-19/*" \
1198
         -d "0123456789" \
1199
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1200

    
1201
  This will update bytes 10-19 with the data specified.
1202

    
1203
* Update an object (append) ::
1204

    
1205
    curl -X POST -D - \
1206
         -H "X-Auth-Token: 0000" \
1207
         -H "Content-Length: 10" \
1208
         -H "Content-Type: application/octet-stream" \
1209
         -H "Content-Range: bytes */*" \
1210
         -d "0123456789" \
1211
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1212

    
1213
* Update an object (truncate) ::
1214

    
1215
    curl -X POST -D - \
1216
         -H "X-Auth-Token: 0000" \
1217
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1218
         -H "Content-Range: bytes 0-0/*" \
1219
         -H "X-Object-Bytes: 0" \
1220
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1221

    
1222
  This will truncate the object to 0 bytes.
1223

    
1224
* Add object metadata ::
1225

    
1226
    curl -X POST -D - \
1227
         -H "X-Auth-Token: 0000" \
1228
         -H "X-Object-Meta-First: first_meta_value" \
1229
         -H "X-Object-Meta-Second: second_meta_value" \
1230
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1231

    
1232
* Delete object metadata ::
1233

    
1234
    curl -X POST -D - \
1235
         -H "X-Auth-Token: 0000" \
1236
         -H "X-Object-Meta-First: first_meta_value" \
1237
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1238

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

    
1241
* Delete an object ::
1242

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