Revision b91bd50a

b/snf-pithos-app/README
42 42
PITHOS_BACKEND_QUOTA             50 GB (50 * 1024 ** 3)                            Default user quota
43 43
PITHOS_BACKEND_VERSIONING        auto                                              Default versioning policy for containers
44 44
PITHOS_UPDATE_MD5                True                                              Update object checksums when using hashmaps
45
PITHOS_SERVICE_TOKEN             ''                                                Service token acquired by the identity provider (astakos)
45 46
===============================  ================================================  ============================================================
46 47

  
47 48
To update checksums asynchronously, enable the queue, install snf-pithos-tools and use ``pithos-dispatcher``::
b/snf-pithos-app/pithos/api/delegate.py
1
# Copyright 2011-2012 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 urlparse import urlparse
37
import urllib
38
import urllib2
39

  
40
from django.http import HttpResponseNotFound, HttpResponseRedirect, HttpResponseBadRequest, HttpResponse
41
from django.utils.http import urlencode
42
from django.views.decorators.csrf import csrf_exempt
43

  
44
from pithos.api.settings import AUTHENTICATION_URL, AUTHENTICATION_USERS, SERVICE_TOKEN
45

  
46

  
47
logger = logging.getLogger(__name__)
48

  
49
def delegate_to_login_service(request):
50
    url = AUTHENTICATION_URL
51
    users = AUTHENTICATION_USERS
52
    if users or not url:
53
        return HttpResponseNotFound()
54
    
55
    p = urlparse(url)
56
    if request.is_secure():
57
        proto = 'https://'
58
    else:
59
        proto = 'http://'
60
    params = dict([(k, v) for k, v in request.GET.items()])
61
    uri = proto + p.netloc + '/login?' + urlencode(params)
62
    return HttpResponseRedirect(uri)
63

  
64
@csrf_exempt
65
def delegate_to_feedback_service(request):
66
    url = AUTHENTICATION_URL
67
    users = AUTHENTICATION_USERS
68
    if users or not url:
69
        return HttpResponseNotFound()
70
    
71
    p = urlparse(url)
72
    if request.is_secure():
73
        proto = 'https://'
74
    else:
75
        proto = 'http://'
76
    
77
    uri = proto + p.netloc + '/im/service/api/v2.0/feedback'
78
    headers = { 'X-Auth-Token' : SERVICE_TOKEN }
79
    headers = {}
80
    values = dict([(k, v) for k, v in request.POST.items()])
81
    data = urllib.urlencode(values)
82
    req = urllib2.Request(uri, data, headers)
83
    try:
84
        urllib2.urlopen(req)
85
    except urllib2.HTTPError, e:
86
        return HttpResponse(status=e.code)
87
    return HttpResponse()
/dev/null
1
# Copyright 2011-2012 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 urlparse import urlparse
37

  
38
from django.http import HttpResponseNotFound, HttpResponseRedirect
39
from django.utils.http import urlencode
40

  
41
from pithos.api.settings import AUTHENTICATION_URL, AUTHENTICATION_USERS
42

  
43

  
44
logger = logging.getLogger(__name__)
45

  
46

  
47
def redirect_to_login_service(request):
48
    url = AUTHENTICATION_URL
49
    users = AUTHENTICATION_USERS
50
    if users or not url:
51
        return HttpResponseNotFound()
52
    
53
    p = urlparse(url)
54
    if request.is_secure():
55
        proto = 'https://'
56
    else:
57
        proto = 'http://'
58
    params = dict([(k, v) for k, v in request.GET.items()])
59
    uri = proto + p.netloc + '/login?' + urlencode(params)
60
    return HttpResponseRedirect(uri)
b/snf-pithos-app/pithos/api/settings.py
40 40
# Update object checksums when using hashmaps.
41 41
UPDATE_MD5 = getattr(settings, 'PITHOS_UPDATE_MD5', True)
42 42

  
43
# Service Token acquired by identity provider.
44
SERVICE_TOKEN = getattr(settings, 'PITHOS_SERVICE_TOKEN', '')
b/snf-pithos-app/pithos/api/urls.py
45 45
    (r'^v1(?:$|/)', include(api_urlpatterns)),
46 46
    (r'^v1\.0(?:$|/)', include(api_urlpatterns)),
47 47
    (r'^public/(?P<v_public>.+?)/?$', 'pithos.api.public.public_demux'),
48
    (r'^login/?$', 'pithos.api.login.redirect_to_login_service')
48
    (r'^login/?$', 'pithos.api.delegate.delegate_to_login_service'),
49
    (r'^feedback/?$', 'pithos.api.delegate.delegate_to_feedback_service'),
49 50
)

Also available in: Unified diff