Statistics
| Branch: | Tag: | Revision:

root / pithos / public / functions.py @ 3436eeb0

History | View | Annotate | Download (5.4 kB)

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_meta, update_manifest_meta,
40
    validate_modification_preconditions, validate_matching_preconditions,
41
    object_data_response, api_method)
42
from pithos.backends import backend
43

    
44

    
45
logger = logging.getLogger(__name__)
46

    
47

    
48
def object_demux(request, v_account, v_container, v_object):
49
    if request.method == 'HEAD':
50
        return object_meta(request, v_account, v_container, v_object)
51
    elif request.method == 'GET':
52
        return object_read(request, v_account, v_container, v_object)
53
    else:
54
        return method_not_allowed(request)
55

    
56
# TODO: Use a version of api_method that does not check for a token.
57

    
58
@api_method('HEAD')
59
def object_meta(request, v_account, v_container, v_object):
60
    # Normal Response Codes: 204
61
    # Error Response Codes: serviceUnavailable (503),
62
    #                       itemNotFound (404),
63
    #                       unauthorized (401),
64
    #                       badRequest (400)
65
    
66
    try:
67
        meta = backend.get_object_meta(request.user, v_account, v_container, v_object)
68
        permissions = backend.get_object_permissions(request.user, v_account, v_container, v_object)
69
    except NameError:
70
        raise ItemNotFound('Object does not exist')
71
    
72
    if 'public' not in permissions:
73
        raise ItemNotFound('Object does not exist')
74
    update_manifest_meta(request, v_account, meta)
75
    
76
    response = HttpResponse(status=204)
77
    put_object_meta(response, meta, True)
78
    return response
79

    
80
@api_method('GET')
81
def object_read(request, v_account, v_container, v_object):
82
    # Normal Response Codes: 200, 206
83
    # Error Response Codes: serviceUnavailable (503),
84
    #                       rangeNotSatisfiable (416),
85
    #                       preconditionFailed (412),
86
    #                       itemNotFound (404),
87
    #                       unauthorized (401),
88
    #                       badRequest (400),
89
    #                       notModified (304)
90
    
91
    try:
92
        meta = backend.get_object_meta(request.user, v_account, v_container, v_object)
93
        permissions = backend.get_object_permissions(request.user, v_account, v_container, v_object)
94
    except NameError:
95
        raise ItemNotFound('Object does not exist')
96
    
97
    if 'public' not in permissions:
98
        raise ItemNotFound('Object does not exist')
99
    update_manifest_meta(request, v_account, meta)
100
    
101
    # Evaluate conditions.
102
    validate_modification_preconditions(request, meta)
103
    try:
104
        validate_matching_preconditions(request, meta)
105
    except NotModified:
106
        response = HttpResponse(status=304)
107
        response['ETag'] = meta['hash']
108
        return response
109
    
110
    sizes = []
111
    hashmaps = []
112
    if 'X-Object-Manifest' in meta:
113
        try:
114
            src_container, src_name = split_container_object_string('/' + meta['X-Object-Manifest'])
115
            objects = backend.list_objects(request.user, v_account, src_container, prefix=src_name, virtual=False)
116
        except ValueError:
117
            raise ItemNotFound('Object does not exist')
118
        except NameError:
119
            raise ItemNotFound('Object does not exist')
120
        
121
        try:
122
            for x in objects:
123
                s, h = backend.get_object_hashmap(request.user, v_account, src_container, x[0], x[1])
124
                sizes.append(s)
125
                hashmaps.append(h)
126
        except NameError:
127
            raise ItemNotFound('Object does not exist')
128
    else:
129
        try:
130
            s, h = backend.get_object_hashmap(request.user, v_account, v_container, v_object, version)
131
            sizes.append(s)
132
            hashmaps.append(h)
133
        except NameError:
134
            raise ItemNotFound('Object does not exist')
135
    
136
    return object_data_response(request, sizes, hashmaps, meta, True)
137

    
138
@api_method()
139
def method_not_allowed(request):
140
    raise ItemNotFound('Object does not exist')