Update frontend with the metadata domain parameter.
[pithos] / pithos / api / public.py
1 # Copyright 2011 GRNET S.A. All rights reserved.
2
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34 import logging
35
36 from django.http import HttpResponse
37
38 from pithos.api.faults import (Fault, BadRequest, ItemNotFound)
39 from pithos.api.util import (put_object_headers, update_manifest_meta,
40     validate_modification_preconditions, validate_matching_preconditions,
41     object_data_response, api_method)
42 from pithos.api.short_url import decode_url
43
44
45 logger = logging.getLogger(__name__)
46
47
48 def public_demux(request, v_public):
49     if request.method == 'HEAD':
50         return public_meta(request, v_public)
51     elif request.method == 'GET':
52         return public_read(request, v_public)
53     else:
54         return method_not_allowed(request)
55
56 @api_method('HEAD', user_required=False)
57 def public_meta(request, v_public):
58     # Normal Response Codes: 204
59     # Error Response Codes: serviceUnavailable (503),
60     #                       itemNotFound (404),
61     #                       badRequest (400)
62     
63     try:
64         v_account, v_container, v_object = request.backend.get_public(request.user_uniq,
65                                                     decode_url(v_public))
66         meta = request.backend.get_object_meta(request.user_uniq, v_account,
67                                                     v_container, v_object, 'pithos')
68         public = request.backend.get_object_public(request.user_uniq, v_account,
69                                                     v_container, v_object)
70     except:
71         raise ItemNotFound('Object does not exist')
72     
73     if not public:
74         raise ItemNotFound('Object does not exist')
75     update_manifest_meta(request, v_account, meta)
76     
77     response = HttpResponse(status=200)
78     put_object_headers(response, meta, True)
79     return response
80
81 @api_method('GET', user_required=False)
82 def public_read(request, v_public):
83     # Normal Response Codes: 200, 206
84     # Error Response Codes: serviceUnavailable (503),
85     #                       rangeNotSatisfiable (416),
86     #                       preconditionFailed (412),
87     #                       itemNotFound (404),
88     #                       badRequest (400),
89     #                       notModified (304)
90     
91     print '***', v_public
92     try:
93         v_account, v_container, v_object = request.backend.get_public(request.user_uniq,
94                                                     decode_url(v_public))
95         meta = request.backend.get_object_meta(request.user_uniq, v_account,
96                                                     v_container, v_object, 'pithos')
97         public = request.backend.get_object_public(request.user_uniq, v_account,
98                                                     v_container, v_object)
99     except:
100         raise ItemNotFound('Object does not exist')
101     
102     if not public:
103         raise ItemNotFound('Object does not exist')
104     update_manifest_meta(request, v_account, meta)
105     
106     # Evaluate conditions.
107     validate_modification_preconditions(request, meta)
108     try:
109         validate_matching_preconditions(request, meta)
110     except NotModified:
111         response = HttpResponse(status=304)
112         response['ETag'] = meta['ETag']
113         return response
114     
115     sizes = []
116     hashmaps = []
117     if 'X-Object-Manifest' in meta:
118         try:
119             src_container, src_name = split_container_object_string('/' + meta['X-Object-Manifest'])
120             objects = request.backend.list_objects(request.user_uniq, v_account,
121                                 src_container, prefix=src_name, virtual=False)
122         except:
123             raise ItemNotFound('Object does not exist')
124         
125         try:
126             for x in objects:
127                 s, h = request.backend.get_object_hashmap(request.user_uniq,
128                                         v_account, src_container, x[0], x[1])
129                 sizes.append(s)
130                 hashmaps.append(h)
131         except:
132             raise ItemNotFound('Object does not exist')
133     else:
134         try:
135             s, h = request.backend.get_object_hashmap(request.user_uniq, v_account,
136                                                         v_container, v_object)
137             sizes.append(s)
138             hashmaps.append(h)
139         except:
140             raise ItemNotFound('Object does not exist')
141     
142     if 'Content-Disposition' not in meta:
143         name = v_object.rstrip('/').split('/')[-1]
144         if not name:
145             name = v_public
146         meta['Content-Disposition'] = 'attachment; filename=%s' % (name,)
147     
148     return object_data_response(request, sizes, hashmaps, meta, True)
149
150 @api_method(user_required=False)
151 def method_not_allowed(request, **v_args):
152     raise ItemNotFound('Object does not exist')