Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / api / __init__.py @ 66ef7099

History | View | Annotate | Download (8.7 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
from django.utils.translation import ugettext as _
43

    
44
from astakos.im.models import AstakosUser, Service, Resource
45
from astakos.im.api.faults import Fault, ItemNotFound, InternalServerError, BadRequest
46
from astakos.im.settings import (
47
    INVITATIONS_ENABLED, COOKIE_NAME, EMAILCHANGE_ENABLED, QUOTAHOLDER_URL)
48
from astakos.im.forms import FeedbackForm
49
from astakos.im.functions import send_feedback as send_feedback_func
50

    
51
import logging
52
logger = logging.getLogger(__name__)
53

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

    
56
absolute = lambda request, url: request.build_absolute_uri(url)
57

    
58

    
59
def render_fault(request, fault):
60
    if isinstance(fault, InternalServerError) and settings.DEBUG:
61
        fault.details = format_exc(fault)
62

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

    
71

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

    
91

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

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

    
104
    if callback:
105
        mimetype = 'application/javascript'
106
        data = '%s(%s)' % (callback, data)
107

    
108
    return HttpResponse(content=data, mimetype=mimetype)
109

    
110

    
111
@api_method()
112
def get_menu(request, with_extra_links=False, with_signout=True):
113
    user = request.user
114
    from_location = request.GET.get('location')
115
    index_url = reverse('index')
116
    if from_location:
117
        index_url = "%s?next=%s" % (index_url, from_location)
118

    
119
    l = [{'url': absolute(request, index_url), 'name': _("Sign in")}]
120
    if user.is_authenticated():
121
        l = []
122
        append = l.append
123
        item = MenuItem
124
        item.current_path = absolute(request, request.path)
125
        append(item(
126
               url=absolute(request, reverse('index')),
127
               name=user.email))
128
        if with_extra_links:
129
            append(item(
130
                url=absolute(request, reverse('landing')),
131
                name="Overview"))
132
        append(item(url=absolute(request, reverse('edit_profile')),
133
               name="Profile"))
134

    
135
        if with_extra_links:
136
            if INVITATIONS_ENABLED:
137
                append(item(
138
                       url=absolute(request, reverse('invite')),
139
                       name="Invitations"))
140

    
141
            if QUOTAHOLDER_URL:
142
                append(item(
143
                       url=absolute(request, reverse('project_list')),
144
                       name="Projects"))
145
            append(item(
146
                   url=absolute(request, reverse('resource_usage')),
147
                   name="Usage"))
148
            #append(item(
149
                #url=absolute(request, reverse('api_access')),
150
                #name="API Access"))
151

    
152
            append(item(
153
                   url=absolute(request, reverse('feedback')),
154
                   name="Contact"))
155
        if with_signout:
156
            append(item(
157
                   url=absolute(request, reverse('logout')),
158
                   name="Sign out"))
159

    
160
    callback = request.GET.get('callback', None)
161
    data = json.dumps(tuple(l))
162
    mimetype = 'application/json'
163

    
164
    if callback:
165
        mimetype = 'application/javascript'
166
        data = '%s(%s)' % (callback, data)
167

    
168
    return HttpResponse(content=data, mimetype=mimetype)
169

    
170

    
171
class MenuItem(dict):
172
    current_path = ''
173

    
174
    def __init__(self, *args, **kwargs):
175
        super(MenuItem, self).__init__(*args, **kwargs)
176
        if kwargs.get('url') or kwargs.get('submenu'):
177
            self.__set_is_active__()
178

    
179
    def __setitem__(self, key, value):
180
        super(MenuItem, self).__setitem__(key, value)
181
        if key in ('url', 'submenu'):
182
            self.__set_is_active__()
183

    
184
    def __set_is_active__(self):
185
        if self.get('is_active'):
186
            return
187
        if self.current_path.startswith(self.get('url')):
188
            self.__setitem__('is_active', True)
189
        else:
190
            submenu = self.get('submenu', ())
191
            current = (i for i in submenu if i.get('url') == self.current_path)
192
            try:
193
                current_node = current.next()
194
                if not current_node.get('is_active'):
195
                    current_node.__setitem__('is_active', True)
196
                self.__setitem__('is_active', True)
197
            except StopIteration:
198
                return
199

    
200
    def __setattribute__(self, name, value):
201
        super(MenuItem, self).__setattribute__(name, value)
202
        if name == 'current_path':
203
            self.__set_is_active__()
204

    
205
def __get_uuid_displayname_catalogs(request):
206
    # Normal Response Codes: 200
207
    # Error Response Codes: badRequest (400)
208

    
209
    try:
210
        input_data = json.loads(request.raw_post_data)
211
    except:
212
        raise BadRequest('Request body should be json formatted.')
213
    else:
214
        uuids = input_data.get('uuids', [])
215
        displaynames = input_data.get('displaynames', [])
216
        d  = {'uuid_catalog':AstakosUser.objects.uuid_catalog(uuids),
217
              'displayname_catalog':AstakosUser.objects.displayname_catalog(displaynames)}
218

    
219
        response = HttpResponse()
220
        response.status = 200
221
        response.content = json.dumps(d)
222
        response['Content-Type'] = 'application/json; charset=UTF-8'
223
        response['Content-Length'] = len(response.content)
224
        return response
225

    
226
def __send_feedback(request, email_template_name='im/feedback_mail.txt', user=None):
227
    if not user:
228
        auth_token = request.POST.get('auth', '')
229
        if not auth_token:
230
            raise BadRequest('Missing user authentication')
231

    
232
        try:
233
            user = AstakosUser.objects.get(auth_token=auth_token)
234
        except AstakosUser.DoesNotExist:
235
            raise BadRequest('Invalid user authentication')
236

    
237
    form = FeedbackForm(request.POST)
238
    if not form.is_valid():
239
        raise BadRequest('Invalid data')
240

    
241
    msg = form.cleaned_data['feedback_msg']
242
    data = form.cleaned_data['feedback_data']
243
    try:
244
        send_feedback_func(msg, data, user, email_template_name)
245
    except:
246
        return HttpResponse(status=502)
247
    return HttpResponse(status=200)