Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / api / __init__.py @ 9b32e2fb

History | View | Annotate | Download (6.8 kB)

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
from functools import wraps
35
from traceback import format_exc
36
from urllib import quote, unquote
37

    
38
from django.http import HttpResponse
39
from django.utils import simplejson as json
40
from django.conf import settings
41
from django.core.urlresolvers import reverse
42

    
43
from astakos.im.models import AstakosUser, Service, Resource
44
from astakos.im.api.faults import Fault, ItemNotFound, InternalServerError, BadRequest
45
from astakos.im.settings import (
46
    INVITATIONS_ENABLED, COOKIE_NAME, EMAILCHANGE_ENABLED, QUOTAHOLDER_URL)
47

    
48
import logging
49
logger = logging.getLogger(__name__)
50

    
51
format = ('%a, %d %b %Y %H:%M:%S GMT')
52

    
53
absolute = lambda request, url: request.build_absolute_uri(url)
54

    
55

    
56
def render_fault(request, fault):
57
    if isinstance(fault, InternalServerError) and settings.DEBUG:
58
        fault.details = format_exc(fault)
59

    
60
    request.serialization = 'text'
61
    data = fault.message + '\n'
62
    if fault.details:
63
        data += '\n' + fault.details
64
    response = HttpResponse(data, status=fault.code)
65
    response['Content-Length'] = len(response.content)
66
    return response
67

    
68

    
69
def api_method(http_method=None):
70
    """Decorator function for views that implement an API method."""
71
    def decorator(func):
72
        @wraps(func)
73
        def wrapper(request, *args, **kwargs):
74
            try:
75
                if http_method and request.method != http_method:
76
                    raise BadRequest('Method not allowed.')
77
                response = func(request, *args, **kwargs)
78
                return response
79
            except Fault, fault:
80
                return render_fault(request, fault)
81
            except BaseException, e:
82
                logger.exception('Unexpected error: %s' % e)
83
                fault = InternalServerError('Unexpected error')
84
                return render_fault(request, fault)
85
        return wrapper
86
    return decorator
87

    
88

    
89
def get_services_dict():
90
    services = Service.objects.all()
91
    data = tuple({'id': s.pk, 'name': s.name, 'url': s.url, 'icon':
92
                 s.icon} for s in services)
93
    return data
94

    
95
@api_method(http_method=None)
96
def get_services(request):
97
    callback = request.GET.get('callback', None)
98
    mimetype = 'application/json'
99
    data = json.dumps(get_services_dict())
100

    
101
    if callback:
102
        mimetype = 'application/javascript'
103
        data = '%s(%s)' % (callback, data)
104

    
105
    return HttpResponse(content=data, mimetype=mimetype)
106

    
107

    
108
@api_method()
109
def get_menu(request, with_extra_links=False, with_signout=True):
110
    user = request.user
111
    index_url = reverse('index')
112
    l = [{'url': absolute(request, index_url), 'name': "Sign in"}]
113
    if user.is_authenticated():
114
        l = []
115
        append = l.append
116
        item = MenuItem
117
        item.current_path = absolute(request, request.path)
118
        append(item(
119
               url=absolute(request, reverse('index')),
120
               name=user.email))
121
        append(item(url=absolute(request, reverse('edit_profile')),
122
               name="My account"))
123
        if with_extra_links:
124
            if EMAILCHANGE_ENABLED:
125
                append(item(
126
                       url=absolute(request, reverse('email_change')),
127
                       name="Change email"))
128
            if INVITATIONS_ENABLED:
129
                append(item(
130
                       url=absolute(request, reverse('invite')),
131
                       name="Invitations"))
132

    
133
            if QUOTAHOLDER_URL:
134
                append(item(
135
                       url=absolute(request, reverse('project_list')),
136
                       name="Projects"))
137
            append(item(
138
                   url=absolute(request, reverse('resource_usage')),
139
                   name="Usage"))
140
            append(item(
141
                   url=absolute(request, reverse('feedback')),
142
                   name="Contact"))
143
        if with_signout:
144
            append(item(
145
                   url=absolute(request, reverse('logout')),
146
                   name="Sign out"))
147

    
148
    callback = request.GET.get('callback', None)
149
    data = json.dumps(tuple(l))
150
    mimetype = 'application/json'
151

    
152
    if callback:
153
        mimetype = 'application/javascript'
154
        data = '%s(%s)' % (callback, data)
155

    
156
    return HttpResponse(content=data, mimetype=mimetype)
157

    
158

    
159
class MenuItem(dict):
160
    current_path = ''
161

    
162
    def __init__(self, *args, **kwargs):
163
        super(MenuItem, self).__init__(*args, **kwargs)
164
        if kwargs.get('url') or kwargs.get('submenu'):
165
            self.__set_is_active__()
166

    
167
    def __setitem__(self, key, value):
168
        super(MenuItem, self).__setitem__(key, value)
169
        if key in ('url', 'submenu'):
170
            self.__set_is_active__()
171

    
172
    def __set_is_active__(self):
173
        if self.get('is_active'):
174
            return
175
        if self.current_path.startswith(self.get('url')):
176
            self.__setitem__('is_active', True)
177
        else:
178
            submenu = self.get('submenu', ())
179
            current = (i for i in submenu if i.get('url') == self.current_path)
180
            try:
181
                current_node = current.next()
182
                if not current_node.get('is_active'):
183
                    current_node.__setitem__('is_active', True)
184
                self.__setitem__('is_active', True)
185
            except StopIteration:
186
                return
187

    
188
    def __setattribute__(self, name, value):
189
        super(MenuItem, self).__setattribute__(name, value)
190
        if name == 'current_path':
191
            self.__set_is_active__()