Statistics
| Branch: | Tag: | Revision:

root / docs / source / devguide.rst @ 96ee45a3

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

    
56
The Pithos API
57
--------------
58

    
59
The URI requests supported by the Pithos API follow one of the following forms:
60

    
61
* Top level: ``https://hostname/v1/``
62
* Account level: ``https://hostname/v1/<account>``
63
* Container level: ``https://hostname/v1/<account>/<container>``
64
* Object level: ``https://hostname/v1/<account>/<container>/<object>``
65

    
66
All requests must include an ``X-Auth-Token`` - as a header, or a parameter. The process of obtaining the token is still to be determined (**TBD**).
67

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

    
70
=========================  ================================
71
Return Code                Description
72
=========================  ================================
73
400 (Bad Request)          The request is invalid
74
401 (Unauthorized)         Request not allowed
75
404 (Not Found)            The requested resource was not found
76
503 (Service Unavailable)  The request cannot be completed because of an internal error
77
=========================  ================================
78

    
79
Top Level
80
^^^^^^^^^
81

    
82
List of operations:
83

    
84
=========  ==================
85
Operation  Description
86
=========  ==================
87
GET        Authentication (for compatibility with the OOS API) or list allowed accounts
88
=========  ==================
89

    
90
GET
91
"""
92

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

    
95
================  =====================
96
Return Code       Description
97
================  =====================
98
204 (No Content)  The request succeeded
99
================  =====================
100

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

    
103
======================  =========================
104
Request Parameter Name  Value
105
======================  =========================
106
limit                   The amount of results requested (default is 10000)
107
marker                  Return containers with name lexicographically after marker
108
format                  Optional extended reply type (can be ``json`` or ``xml``)
109
======================  =========================
110

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

    
115
===========================  ============================
116
Name                         Description
117
===========================  ============================
118
name                         The name of the account
119
last_modified                The last account modification date (regardless of ``until``)
120
===========================  ============================
121

    
122
Example ``format=json`` reply:
123

    
124
::
125

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

    
128
Example ``format=xml`` reply:
129

    
130
::
131

    
132
  <?xml version="1.0" encoding="UTF-8"?>
133
  <accounts>
134
    <account>
135
      <name>user</name>
136
      <last_modified>2011-07-19T10:48:16</last_modified>
137
    </account>
138
    <account>...</account>
139
  </accounts>
140

    
141
===========================  =====================
142
Return Code                  Description
143
===========================  =====================
144
200 (OK)                     The request succeeded
145
204 (No Content)             The user has no access to other accounts (only for non-extended replies)
146
===========================  =====================
147

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

    
150
Account Level
151
^^^^^^^^^^^^^
152

    
153
List of operations:
154

    
155
=========  ==================
156
Operation  Description
157
=========  ==================
158
HEAD       Retrieve account metadata
159
GET        List containers
160
POST       Update account metadata
161
=========  ==================
162

    
163
HEAD
164
""""
165

    
166
====================  ===========================
167
Request Header Name   Value
168
====================  ===========================
169
If-Modified-Since     Retrieve if account has changed since provided timestamp
170
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
171
====================  ===========================
172

    
173
|
174

    
175
======================  ===================================
176
Request Parameter Name  Value
177
======================  ===================================
178
until                   Optional timestamp
179
======================  ===================================
180

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

    
183
==========================  =====================
184
Reply Header Name           Value
185
==========================  =====================
186
X-Account-Container-Count   The total number of containers
187
X-Account-Object-Count      The total number of objects (**TBD**)
188
X-Account-Bytes-Used        The total number of bytes stored
189
X-Account-Bytes-Remaining   The total number of bytes remaining (**TBD**)
190
X-Account-Last-Login        The last login (**TBD**)
191
X-Account-Until-Timestamp   The last account modification date until the timestamp provided
192
X-Account-Group-*           Optional user defined groups
193
X-Account-Meta-*            Optional user defined metadata
194
Last-Modified               The last account modification date (regardless of ``until``)
195
==========================  =====================
196

    
197
|
198

    
199
================  =====================
200
Return Code       Description
201
================  =====================
202
204 (No Content)  The request succeeded
203
================  =====================
204

    
205

    
206
GET
207
"""
208

    
209
====================  ===========================
210
Request Header Name   Value
211
====================  ===========================
212
If-Modified-Since     Retrieve if account has changed since provided timestamp
213
If-Unmodified-Since   Retrieve if account has not changed since provided timestamp
214
====================  ===========================
215

    
216
|
217

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

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

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

    
234
===========================  ============================
235
Name                         Description
236
===========================  ============================
237
name                         The name of the container
238
count                        The number of objects inside the container
239
bytes                        The total size of the objects inside the container
240
last_modified                The last container modification date (regardless of ``until``)
241
x_container_until_timestamp  The last container modification date until the timestamp provided
242
x_container_policy_*         Container behavior and limits
243
x_container_meta_*           Optional user defined metadata
244
===========================  ============================
245

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

    
248
===========================  =====================
249
Return Code                  Description
250
===========================  =====================
251
200 (OK)                     The request succeeded
252
204 (No Content)             The account has no containers (only for non-extended replies)
253
304 (Not Modified)           The account has not been modified
254
412 (Precondition Failed)    The condition set can not be satisfied
255
===========================  =====================
256

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

    
259

    
260
POST
261
""""
262

    
263
====================  ===========================
264
Request Header Name   Value
265
====================  ===========================
266
X-Account-Group-*     Optional user defined groups
267
X-Account-Meta-*      Optional user defined metadata
268
====================  ===========================
269

    
270
|
271

    
272
======================  ============================================
273
Request Parameter Name  Value
274
======================  ============================================
275
update                  Do not replace metadata/groups (no value parameter)
276
======================  ============================================
277

    
278
No reply content/headers.
279

    
280
The operation will overwrite all user defined metadata, except if ``update`` is defined.
281
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.
282

    
283
================  ===============================
284
Return Code       Description
285
================  ===============================
286
202 (Accepted)    The request has been accepted
287
================  ===============================
288

    
289

    
290
Container Level
291
^^^^^^^^^^^^^^^
292

    
293
List of operations:
294

    
295
=========  ============================
296
Operation  Description
297
=========  ============================
298
HEAD       Retrieve container metadata
299
GET        List objects
300
PUT        Create/update container
301
POST       Update container metadata
302
DELETE     Delete container
303
=========  ============================
304

    
305

    
306
HEAD
307
""""
308

    
309
====================  ===========================
310
Request Header Name   Value
311
====================  ===========================
312
If-Modified-Since     Retrieve if container has changed since provided timestamp
313
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
314
====================  ===========================
315

    
316
|
317

    
318
======================  ===================================
319
Request Parameter Name  Value
320
======================  ===================================
321
until                   Optional timestamp
322
======================  ===================================
323

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

    
326
===========================  ===============================
327
Reply Header Name            Value
328
===========================  ===============================
329
X-Container-Object-Count     The total number of objects in the container
330
X-Container-Bytes-Used       The total number of bytes of all objects stored
331
X-Container-Block-Size       The block size used by the storage backend
332
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
333
X-Container-Until-Timestamp  The last container modification date until the timestamp provided
334
X-Container-Object-Meta      A list with all meta keys used by objects
335
X-Container-Policy-*         Container behavior and limits
336
X-Container-Meta-*           Optional user defined metadata
337
Last-Modified                The last container modification date (regardless of ``until``)
338
===========================  ===============================
339

    
340
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.
341

    
342
================  ===============================
343
Return Code       Description
344
================  ===============================
345
204 (No Content)  The request succeeded
346
================  ===============================
347

    
348

    
349
GET
350
"""
351

    
352
====================  ===========================
353
Request Header Name   Value
354
====================  ===========================
355
If-Modified-Since     Retrieve if container has changed since provided timestamp
356
If-Unmodified-Since   Retrieve if container has not changed since provided timestamp
357
====================  ===========================
358

    
359
|
360

    
361
======================  ===================================
362
Request Parameter Name  Value
363
======================  ===================================
364
limit                   The amount of results requested (default is 10000)
365
marker                  Return containers with name lexicographically after marker
366
prefix                  Return objects starting with prefix
367
delimiter               Return objects up to the delimiter (discussion follows)
368
path                    Assume ``prefix=path`` and ``delimiter=/``
369
format                  Optional extended reply type (can be ``json`` or ``xml``)
370
meta                    Return objects having the specified meta keys (can be a comma separated list)
371
shared                  Show only shared objects (no value parameter)
372
until                   Optional timestamp
373
======================  ===================================
374

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

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

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

    
382
===========================  ===============================
383
Reply Header Name            Value
384
===========================  ===============================
385
X-Container-Block-Size       The block size used by the storage backend
386
X-Container-Block-Hash       The hash algorithm used for block identifiers in object hashmaps
387
X-Container-Object-Meta      A list with all meta keys used by allowed objects (**TBD**)
388
Last-Modified                The last container modification date
389
===========================  ===============================
390

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

    
394
==========================  ======================================
395
Name                        Description
396
==========================  ======================================
397
name                        The name of the object
398
hash                        The ETag of the object
399
bytes                       The size of the object
400
content_type                The MIME content type of the object
401
content_encoding            The encoding of the object (optional)
402
content-disposition         The presentation style of the object (optional)
403
last_modified               The last object modification date (regardless of version)
404
x_object_version            The object's version identifier
405
x_object_version_timestamp  The object's version timestamp
406
x_object_modified_by        The user that committed the object's version
407
x_object_manifest           Object parts prefix in ``<container>/<object>`` form (optional)
408
x_object_sharing            Object permissions (optional)
409
x_object_shared_by          Object inheriting permissions (optional)
410
x_object_public             Object's publicly accessible URI (optional)
411
x_object_meta_*             Optional user defined metadata
412
==========================  ======================================
413

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

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

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

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

    
432

    
433
PUT
434
"""
435

    
436
====================  ================================
437
Request Header Name   Value
438
====================  ================================
439
X-Container-Policy-*  Container behavior and limits
440
X-Container-Meta-*    Optional user defined metadata
441
====================  ================================
442
 
443
No reply content/headers.
444

    
445
If no policy is defined, the container will be created with the default values.
446
Available policy directives:
447

    
448
* ``versioning``: Set to ``auto``, ``manual`` or ``none`` (default is ``manual``)
449
* ``quota``: Size limit in KB (default is ``0`` - unlimited)
450
 
451
================  ===============================
452
Return Code       Description
453
================  ===============================
454
201 (Created)     The container has been created
455
202 (Accepted)    The request has been accepted
456
================  ===============================
457

    
458

    
459
POST
460
""""
461

    
462
====================  ================================
463
Request Header Name   Value
464
====================  ================================
465
X-Container-Policy-*  Container behavior and limits
466
X-Container-Meta-*    Optional user defined metadata
467
====================  ================================
468

    
469
|
470

    
471
======================  ============================================
472
Request Parameter Name  Value
473
======================  ============================================
474
update                  Do not replace metadata/policy (no value parameter)
475
======================  ============================================
476

    
477
No reply content/headers.
478

    
479
The operation will overwrite all user defined metadata, except if ``update`` is defined.
480
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.
481

    
482
================  ===============================
483
Return Code       Description
484
================  ===============================
485
202 (Accepted)    The request has been accepted
486
================  ===============================
487

    
488

    
489
DELETE
490
""""""
491

    
492
======================  ===================================
493
Request Parameter Name  Value
494
======================  ===================================
495
until                   Optional timestamp
496
======================  ===================================
497

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

    
500
No reply content/headers.
501

    
502
================  ===============================
503
Return Code       Description
504
================  ===============================
505
204 (No Content)  The request succeeded
506
409 (Conflict)    The container is not empty
507
================  ===============================
508

    
509

    
510
Object Level
511
^^^^^^^^^^^^
512

    
513
List of operations:
514

    
515
=========  =================================
516
Operation  Description
517
=========  =================================
518
HEAD       Retrieve object metadata
519
GET        Read object data
520
PUT        Write object data or copy/move object
521
COPY       Copy object
522
MOVE       Move object
523
POST       Update object metadata/data
524
DELETE     Delete object
525
=========  =================================
526

    
527

    
528
HEAD
529
""""
530

    
531
====================  ================================
532
Request Header Name   Value
533
====================  ================================
534
If-Match              Retrieve if ETags match
535
If-None-Match         Retrieve if ETags don't match
536
If-Modified-Since     Retrieve if object has changed since provided timestamp
537
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
538
====================  ================================
539

    
540
|
541

    
542
======================  ===================================
543
Request Parameter Name  Value
544
======================  ===================================
545
version                 Optional version identifier
546
======================  ===================================
547

    
548
|
549

    
550
==========================  ===============================
551
Reply Header Name           Value
552
==========================  ===============================
553
ETag                        The ETag of the object
554
Content-Length              The size of the object
555
Content-Type                The MIME content type of the object
556
Last-Modified               The last object modification date (regardless of version)
557
Content-Encoding            The encoding of the object (optional)
558
Content-Disposition         The presentation style of the object (optional)
559
X-Object-Version            The object's version identifier
560
X-Object-Version-Timestamp  The object's version timestamp
561
X-Object-Modified-By        The user that comitted the object's version
562
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
563
X-Object-Sharing            Object permissions (optional)
564
X-Object-Shared-By          Object inheriting permissions (optional)
565
X-Object-Public             Object's publicly accessible URI (optional)
566
X-Object-Meta-*             Optional user defined metadata
567
==========================  ===============================
568

    
569
|
570

    
571
================  ===============================
572
Return Code       Description
573
================  ===============================
574
200 (No Content)  The request succeeded
575
================  ===============================
576

    
577

    
578
GET
579
"""
580

    
581
====================  ================================
582
Request Header Name   Value
583
====================  ================================
584
Range                 Optional range of data to retrieve
585
If-Range              Retrieve the missing part if entity is unchanged; otherwise, retrieve the entire new entity (used together with Range header)
586
If-Match              Retrieve if ETags match
587
If-None-Match         Retrieve if ETags don't match
588
If-Modified-Since     Retrieve if object has changed since provided timestamp
589
If-Unmodified-Since   Retrieve if object has not changed since provided timestamp
590
====================  ================================
591

    
592
|
593

    
594
======================  ===================================
595
Request Parameter Name  Value
596
======================  ===================================
597
format                  Optional extended reply type (can be ``json`` or ``xml``)
598
version                 Optional version identifier or ``list`` (specify a format if requesting a list)
599
======================  ===================================
600

    
601
The reply is the object's data (or part of it), except if a hashmap is requested with the ``format`` parameter, or a version list with ``version=list`` (in which case an extended reply format must be specified). Object headers (as in a ``HEAD`` request) are always included.
602

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

    
605
Example ``format=json`` reply:
606

    
607
::
608

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

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

    
613
::
614

    
615
  <?xml version="1.0" encoding="UTF-8"?>
616
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
617
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
618
    <hash>...</hash>
619
  </object>
620

    
621
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.
622

    
623
Example ``format=json`` reply:
624

    
625
::
626

    
627
  {"versions": [[23, 1307700892], [28, 1307700898], ...]}
628

    
629
Example ``format=xml`` reply:
630

    
631
::
632

    
633
  <?xml version="1.0" encoding="UTF-8"?>
634
  <object name="file">
635
    <version timestamp="1307700892">23</version>
636
    <version timestamp="1307700898">28</version>
637
    <version timestamp="...">...</version>
638
  </object>
639

    
640
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.
641

    
642
==========================  ===============================
643
Reply Header Name           Value
644
==========================  ===============================
645
ETag                        The ETag of the object
646
Content-Length              The size of the data returned
647
Content-Type                The MIME content type of the object
648
Content-Range               The range of data included (only on a single range request)
649
Last-Modified               The last object modification date (regardless of version)
650
Content-Encoding            The encoding of the object (optional)
651
Content-Disposition         The presentation style of the object (optional)
652
X-Object-Version            The object's version identifier
653
X-Object-Version-Timestamp  The object's version timestamp
654
X-Object-Modified-By        The user that comitted the object's version
655
X-Object-Manifest           Object parts prefix in ``<container>/<object>`` form (optional)
656
X-Object-Sharing            Object permissions (optional)
657
X-Object-Shared-By          Object inheriting permissions (optional)
658
X-Object-Public             Object's publicly accessible URI (optional)
659
X-Object-Meta-*             Optional user defined metadata
660
==========================  ===============================
661

    
662
|
663

    
664
===========================  ==============================
665
Return Code                  Description
666
===========================  ==============================
667
200 (OK)                     The request succeeded
668
206 (Partial Content)        The range request succeeded
669
304 (Not Modified)           The object has not been modified
670
412 (Precondition Failed)    The condition set can not be satisfied
671
416 (Range Not Satisfiable)  The requested range is out of limits
672
===========================  ==============================
673

    
674

    
675
PUT
676
"""
677

    
678
====================  ================================
679
Request Header Name   Value
680
====================  ================================
681
If-Match              Put if ETags match with current object
682
If-None-Match         Put if ETags don't match with current object
683
ETag                  The MD5 hash of the object (optional to check written data)
684
Content-Length        The size of the data written
685
Content-Type          The MIME content type of the object
686
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
687
X-Copy-From           The source path in the form ``/<container>/<object>``
688
X-Move-From           The source path in the form ``/<container>/<object>``
689
X-Source-Version      The source version to copy from
690
Content-Encoding      The encoding of the object (optional)
691
Content-Disposition   The presentation style of the object (optional)
692
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
693
X-Object-Sharing      Object permissions (optional)
694
X-Object-Public       Object is publicly accessible (optional)
695
X-Object-Meta-*       Optional user defined metadata
696
====================  ================================
697

    
698
|
699

    
700
======================  ===================================
701
Request Parameter Name  Value
702
======================  ===================================
703
format                  Optional extended request type (can be ``json``) to create the object by suppling its hashmap instead
704
======================  ===================================
705

    
706
The request is the object's data (or part of it), except if a hashmap is provided with the ``format`` parameter.  If format is used 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). 
707

    
708
Hashmaps expose the underlying storage format of the object.
709

    
710
Example ``format=json`` request:
711

    
712
::
713

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

    
716
Example ``format=xml`` request:
717

    
718
::
719

    
720
  <?xml version="1.0" encoding="UTF-8"?>
721
  <object name="file" bytes="24223726" block_size="131072" block_hash="sha1">
722
    <hash>7295c41da03d7f916440b98e32c4a2a39351546c</hash>
723
    <hash>...</hash>
724
  </object>
725

    
726
==========================  ===============================
727
Reply Header Name           Value
728
==========================  ===============================
729
ETag                        The MD5 hash of the object (on create)
730
X-Object-Version            The object's new version
731
==========================  ===============================
732

    
733
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.
734

    
735
===========================  ==============================
736
Return Code                  Description
737
===========================  ==============================
738
201 (Created)                The object has been created
739
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)
740
411 (Length Required)        Missing ``Content-Length`` or ``Content-Type`` in the request
741
422 (Unprocessable Entity)   The MD5 checksum of the data written to the storage system does not match the (optionally) supplied ETag value
742
===========================  ==============================
743

    
744

    
745
COPY
746
""""
747

    
748
====================  ================================
749
Request Header Name   Value
750
====================  ================================
751
If-Match              Proceed if ETags match with object
752
If-None-Match         Proceed if ETags don't match with object
753
Destination           The destination path in the form ``/<container>/<object>``
754
Content-Type          The MIME content type of the object (optional)
755
Content-Encoding      The encoding of the object (optional)
756
Content-Disposition   The presentation style of the object (optional)
757
X-Source-Version      The source version to copy from
758
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
759
X-Object-Sharing      Object permissions (optional)
760
X-Object-Public       Object is publicly accessible (optional)
761
X-Object-Meta-*       Optional user defined metadata
762
====================  ================================
763

    
764
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.
765

    
766
==========================  ===============================
767
Reply Header Name           Value
768
==========================  ===============================
769
X-Object-Version            The object's new version
770
==========================  ===============================
771

    
772
|
773

    
774
===========================  ==============================
775
Return Code                  Description
776
===========================  ==============================
777
201 (Created)                The object has been created
778
409 (Conflict)               There are conflicting permissions (a list of conflicting sharing paths will be included in the reply - in simple text format)
779
===========================  ==============================
780

    
781

    
782
MOVE
783
""""
784

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

    
787

    
788
POST
789
""""
790

    
791
====================  ================================
792
Request Header Name   Value
793
====================  ================================
794
If-Match              Proceed if ETags match with object
795
If-None-Match         Proceed if ETags don't match with object
796
Content-Length        The size of the data written (optional, to update)
797
Content-Type          The MIME content type of the object (optional, to update)
798
Content-Range         The range of data supplied (optional, to update)
799
Transfer-Encoding     Set to ``chunked`` to specify incremental uploading (if used, ``Content-Length`` is ignored)
800
Content-Encoding      The encoding of the object (optional)
801
Content-Disposition   The presentation style of the object (optional)
802
X-Source-Object       Update with data from the object at path ``/<container>/<object>`` (optional, to update)
803
X-Source-Version      The source version to update from (optional, to update)
804
X-Object-Bytes        The updated object's final size (optional, when updating)
805
X-Object-Manifest     Object parts prefix in ``<container>/<object>`` form (optional)
806
X-Object-Sharing      Object permissions (optional)
807
X-Object-Public       Object is publicly accessible (optional)
808
X-Object-Meta-*       Optional user defined metadata
809
====================  ================================
810

    
811
|
812

    
813
======================  ============================================
814
Request Parameter Name  Value
815
======================  ============================================
816
update                  Do not replace metadata (no value parameter)
817
======================  ============================================
818

    
819
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.
820

    
821
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.
822

    
823
To update an object's data:
824

    
825
* 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.
826
* 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``).
827
* Set ``Content-Range`` as specified in RFC2616, with the following differences:
828

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

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

    
835
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).
836

    
837
No reply content. No reply headers if only metadata is updated.
838

    
839
==========================  ===============================
840
Reply Header Name           Value
841
==========================  ===============================
842
ETag                        The new ETag of the object (data updated)
843
X-Object-Version            The object's new version
844
==========================  ===============================
845

    
846
|
847

    
848
===========================  ==============================
849
Return Code                  Description
850
===========================  ==============================
851
202 (Accepted)               The request has been accepted (not a data update)
852
204 (No Content)             The request succeeded (data updated)
853
409 (Conflict)               There are conflicting permissions (a list of conflicting sharing paths will be included in the reply - in simple text format)
854
411 (Length Required)        Missing ``Content-Length`` in the request
855
416 (Range Not Satisfiable)  The supplied range is invalid
856
===========================  ==============================
857

    
858
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. ::
859

    
860
  <form method="post" action="https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt" enctype="multipart/form-data">
861
    <input type="hidden" name="X-Auth-Token" value="0000">
862
    <input type="file" name="X-Object-Data">
863
    <input type="submit">
864
  </form>
865

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

    
868
==========================  ===============================
869
Reply Header Name           Value
870
==========================  ===============================
871
ETag                        The MD5 hash of the object
872
X-Object-Version            The object's new version
873
==========================  ===============================
874

    
875
|
876

    
877
===========================  ==============================
878
Return Code                  Description
879
===========================  ==============================
880
201 (Created)                The object has been created
881
===========================  ==============================
882

    
883

    
884
DELETE
885
""""""
886

    
887
======================  ===================================
888
Request Parameter Name  Value
889
======================  ===================================
890
until                   Optional timestamp
891
======================  ===================================
892

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

    
895
No reply content/headers.
896

    
897
===========================  ==============================
898
Return Code                  Description
899
===========================  ==============================
900
204 (No Content)             The request succeeded
901
===========================  ==============================
902

    
903
Sharing and Public Objects
904
^^^^^^^^^^^^^^^^^^^^^^^^^^
905

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

    
908
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.
909

    
910
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):
911

    
912
==========================  ===============================
913
Reply Header Name           Value
914
==========================  ===============================
915
ETag                        The ETag of the object
916
Content-Length              The size of the data returned
917
Content-Type                The MIME content type of the object
918
Content-Range               The range of data included (only on a single range request)
919
Last-Modified               The last object modification date (regardless of version)
920
Content-Encoding            The encoding of the object (optional)
921
Content-Disposition         The presentation style of the object (optional)
922
==========================  ===============================
923

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

    
926
Summary
927
^^^^^^^
928

    
929
List of differences from the OOS API:
930

    
931
* Support for ``X-Account-Meta-*`` style headers at the account level. Use ``POST`` to update.
932
* Support for ``X-Container-Meta-*`` style headers at the container level. Can be set when creating via ``PUT``. Use ``POST`` to update.
933
* Header ``X-Container-Object-Meta`` at the container level and parameter ``meta`` in container listings.
934
* Container policies to manage behavior and limits.
935
* Headers ``X-Container-Block-*`` at the container level, exposing the underlying storage characteristics.
936
* All metadata replies, at all levels, include latest modification information.
937
* At all levels, a ``HEAD`` or ``GET`` request may use ``If-Modified-Since`` and ``If-Unmodified-Since`` headers.
938
* 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.
939
* Option to include only shared containers/objects in listings.
940
* 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.
941
* Multi-range object ``GET`` support as outlined in RFC2616.
942
* Object hashmap retrieval through ``GET`` and the ``format`` parameter.
943
* Object create via hashmap through ``PUT`` and the ``format`` parameter.
944
* Object create using ``POST`` to support standard HTML forms.
945
* 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.
946
* Include new version identifier in replies for object replace/change requests.
947
* Object ``MOVE`` support.
948
* Conditional object create/update operations, using ``If-Match`` and ``If-None-Match`` headers.
949
* Time-variant account/container listings via the ``until`` parameter.
950
* Object versions - parameter ``version`` in ``HEAD``/``GET`` (list versions with ``GET``), ``X-Object-Version-*`` meta in replies, ``X-Source-Version`` in ``PUT``/``COPY``.
951
* Sharing/publishing with ``X-Object-Sharing``, ``X-Object-Public`` at the object level. Cross-user operations are allowed - controlled by sharing directives. Permissions may include groups defined with ``X-Account-Group-*`` at the account level. These apply to the object - not its versions.
952
* Support for prefix-based inheritance when enforcing permissions. Parent object carrying the authorization directives is reported in ``X-Object-Shared-By``.
953
* Large object support with ``X-Object-Manifest``.
954
* Trace the user that created/modified an object with ``X-Object-Modified-By``.
955
* Purge container/object history with the ``until`` parameter in ``DELETE``.
956

    
957
Clarifications/suggestions:
958

    
959
* 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.
960
* 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.
961
* A ``GET`` reply for a level will include all headers of the corresponding ``HEAD`` request.
962
* 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.
963
* The ``Accept`` header may be used in requests instead of the ``format`` parameter to specify the desired reply format. The parameter overrides the header (**TBD**).
964
* Container/object lists use a ``200`` return code if the reply is of type json/xml. The reply will include an empty json/xml.
965
* 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.
966
* 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.
967
* A copy/move using ``PUT``/``COPY``/``MOVE`` will always update metadata, keeping all old values except the ones redefined in the request headers.
968
* 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.
969

    
970
The Pithos Client
971
-----------------
972

    
973
User Experience
974
^^^^^^^^^^^^^^^
975

    
976
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.
977

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

    
980
* 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.
981
* The ``trash`` element, which contains files that have been marked for deletion, but can still be recovered.
982
* The ``shared`` element, which contains all objects shared by the user to other users of the system.
983
* The ``others`` element, which contains all objects that other users share with the user.
984
* The ``tags`` element, which lists the names of tags the user has defined. This can be an entry point to list all files that have been assigned a specific tag or manage tags in general (remove a tag completely, rename a tag etc.).
985
* 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.
986
* The ``history`` element, which allows browsing past instances of ``home`` and - optionally - ``trash``.
987

    
988
Objects in Pithos can be:
989

    
990
* Assigned custom tags.
991
* Moved to trash and then deleted.
992
* Shared with specific permissions.
993
* Made public (shared with non-Pithos users).
994
* Restored from previous versions.
995

    
996
Some of these functions are performed by the client software and some by the Pithos server.
997

    
998
Implementation Guidelines
999
^^^^^^^^^^^^^^^^^^^^^^^^^
1000

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

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

    
1005
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.
1006

    
1007
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).
1008

    
1009
At the object level, tags are implemented by managing metadata keys. The client software should allow the user to use any string as a tag and set the corresponding ``X-Object-Meta-<tag>`` key at the server. The API extensions provided, allow for listing all tags in a container and filtering object listings based on one or more tags. The tag list is sufficient for implementing the ``tags`` element, either as a special, virtual folder (as done in the first version of Pithos), or as an application menu.
1010

    
1011
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.
1012

    
1013
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, tags, 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``.
1014

    
1015
Recommended Practices and Examples
1016
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1017

    
1018
Assuming an authentication token is obtained (**TBD**), the following high-level operations are available - shown with ``curl``:
1019

    
1020
* Get account information ::
1021

    
1022
    curl -X HEAD -D - \
1023
         -H "X-Auth-Token: 0000" \
1024
         https://pithos.dev.grnet.gr/v1/user
1025

    
1026
* List available containers ::
1027

    
1028
    curl -X GET -D - \
1029
         -H "X-Auth-Token: 0000" \
1030
         https://pithos.dev.grnet.gr/v1/user
1031

    
1032
* Get container information ::
1033

    
1034
    curl -X HEAD -D - \
1035
         -H "X-Auth-Token: 0000" \
1036
         https://pithos.dev.grnet.gr/v1/user/pithos
1037

    
1038
* Add a new container ::
1039

    
1040
    curl -X PUT -D - \
1041
         -H "X-Auth-Token: 0000" \
1042
         https://pithos.dev.grnet.gr/v1/user/test
1043

    
1044
* Delete a container ::
1045

    
1046
    curl -X DELETE -D - \
1047
         -H "X-Auth-Token: 0000" \
1048
         https://pithos.dev.grnet.gr/v1/user/test
1049

    
1050
* List objects in a container ::
1051

    
1052
    curl -X GET -D - \
1053
         -H "X-Auth-Token: 0000" \
1054
         https://pithos.dev.grnet.gr/v1/user/pithos
1055

    
1056
* List objects in a container (extended reply) ::
1057

    
1058
    curl -X GET -D - \
1059
         -H "X-Auth-Token: 0000" \
1060
         https://pithos.dev.grnet.gr/v1/user/pithos?format=json
1061

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

    
1064
* List metadata keys used by objects in a container
1065

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

    
1068
* List objects in a container having a specific meta defined ::
1069

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

    
1074
* Retrieve an object ::
1075

    
1076
    curl -X GET -D - \
1077
         -H "X-Auth-Token: 0000" \
1078
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1079

    
1080
* Retrieve an object (specific ranges of data) ::
1081

    
1082
    curl -X GET -D - \
1083
         -H "X-Auth-Token: 0000" \
1084
         -H "Range: bytes=0-9" \
1085
         https://pithos.dev.grnet.gr/v1/user/pithos/README.txt
1086

    
1087
  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``.
1088

    
1089
* Add a new object (folder type) (**TBD**) ::
1090

    
1091
    curl -X PUT -D - \
1092
         -H "X-Auth-Token: 0000" \
1093
         -H "Content-Type: application/folder" \
1094
         https://pithos.dev.grnet.gr/v1/user/pithos/folder
1095

    
1096
* Add a new object ::
1097

    
1098
    curl -X PUT -D - \
1099
         -H "X-Auth-Token: 0000" \
1100
         -H "Content-Type: text/plain" \
1101
         -T EXAMPLE.txt
1102
         https://pithos.dev.grnet.gr/v1/user/pithos/folder/EXAMPLE.txt
1103

    
1104
* Update an object ::
1105

    
1106
    curl -X POST -D - \
1107
         -H "X-Auth-Token: 0000" \
1108
         -H "Content-Length: 10" \
1109
         -H "Content-Type: application/octet-stream" \
1110
         -H "Content-Range: bytes 10-19/*" \
1111
         -d "0123456789" \
1112
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1113

    
1114
  This will update bytes 10-19 with the data specified.
1115

    
1116
* Update an object (append) ::
1117

    
1118
    curl -X POST -D - \
1119
         -H "X-Auth-Token: 0000" \
1120
         -H "Content-Length: 10" \
1121
         -H "Content-Type: application/octet-stream" \
1122
         -H "Content-Range: bytes */*" \
1123
         -d "0123456789" \
1124
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1125

    
1126
* Update an object (truncate) ::
1127

    
1128
    curl -X POST -D - \
1129
         -H "X-Auth-Token: 0000" \
1130
         -H "X-Source-Object: /folder/EXAMPLE.txt" \
1131
         -H "Content-Range: bytes 0-0/*" \
1132
         -H "X-Object-Bytes: 0" \
1133
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1134

    
1135
  This will truncate the object to 0 bytes.
1136

    
1137
* Add object metadata ::
1138

    
1139
    curl -X POST -D - \
1140
         -H "X-Auth-Token: 0000" \
1141
         -H "X-Object-Meta-First: first_meta_value" \
1142
         -H "X-Object-Meta-Second: second_meta_value" \
1143
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1144

    
1145
* Delete object metadata ::
1146

    
1147
    curl -X POST -D - \
1148
         -H "X-Auth-Token: 0000" \
1149
         -H "X-Object-Meta-First: first_meta_value" \
1150
         https://pithos.dev.grnet.gr/v1/user/folder/EXAMPLE.txt
1151

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

    
1154
* Delete an object ::
1155

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