~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/rest.py

  • Committer: Matt Giuca
  • Date: 2010-03-05 07:20:43 UTC
  • Revision ID: matt.giuca@gmail.com-20100305072043-kbm4ysw08h610wod
Lecturer project page: Added link to External Subversion access to help lecturers figure out how to get their SVN password.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
# Author: Matt Giuca, Will Grant, Nick Chadwick
19
19
 
 
20
import os
20
21
import cgi
21
 
import functools
 
22
import urlparse
22
23
import inspect
23
 
import os
24
 
import urlparse
25
 
 
26
 
try:
27
 
    import json
28
 
except ImportError:
29
 
    import simplejson as json
30
 
 
 
24
 
 
25
import cjson
31
26
import genshi.template
32
27
 
33
28
from ivle.webapp.base.views import BaseView
78
73
            raise MethodNotAllowed(allowed=self._allowed_methods)
79
74
 
80
75
        if req.method == 'GET':
81
 
            qargs = dict(cgi.parse_qsl(
82
 
                urlparse.urlparse(req.unparsed_uri).query,
83
 
                keep_blank_values=1))
84
 
            if 'ivle.op' in qargs:
85
 
                outjson = self._named_operation(req, qargs, readonly=True)
86
 
            else:
87
 
                self.authorize_method(req, self.GET)
88
 
                outjson = self.GET(req)
 
76
            self.authorize_method(req, self.GET)
 
77
            outjson = self.GET(req)
89
78
        # Since PATCH isn't yet an official HTTP method, we allow users to
90
79
        # turn a PUT into a PATCH by supplying a special header.
91
80
        elif req.method == 'PATCH' or (req.method == 'PUT' and
93
82
              req.headers_in['X-IVLE-Patch-Semantics'].lower() == 'yes'):
94
83
            self.authorize_method(req, self.PATCH)
95
84
            try:
96
 
                input = json.loads(req.read())
97
 
            except ValueError:
 
85
                input = cjson.decode(req.read())
 
86
            except cjson.DecodeError:
98
87
                raise BadRequest('Invalid JSON data')
99
88
            outjson = self.PATCH(req, input)
100
89
        elif req.method == 'PUT':
101
90
            self.authorize_method(req, self.PUT)
102
91
            try:
103
 
                input = json.loads(req.read())
104
 
            except ValueError:
 
92
                input = cjson.decode(req.read())
 
93
            except cjson.DecodeError:
105
94
                raise BadRequest('Invalid JSON data')
106
95
            outjson = self.PUT(req, input)
107
96
        # POST implies named operation.
109
98
            # TODO: Check Content-Type and implement multipart/form-data.
110
99
            data = req.read()
111
100
            opargs = dict(cgi.parse_qsl(data, keep_blank_values=1))
112
 
            outjson = self._named_operation(req, opargs)
 
101
            try:
 
102
                opname = opargs['ivle.op']
 
103
                del opargs['ivle.op']
 
104
            except KeyError:
 
105
                raise BadRequest('No named operation specified.')
 
106
 
 
107
            try:
 
108
                op = getattr(self, opname)
 
109
            except AttributeError:
 
110
                raise BadRequest('Invalid named operation.')
 
111
 
 
112
            if not hasattr(op, '_rest_api_callable') or \
 
113
               not op._rest_api_callable:
 
114
                raise BadRequest('Invalid named operation.')
 
115
 
 
116
            self.authorize_method(req, op)
 
117
 
 
118
            # Find any missing arguments, except for the first two (self, req)
 
119
            (args, vaargs, varkw, defaults) = inspect.getargspec(op)
 
120
            args = args[2:]
 
121
 
 
122
            # To find missing arguments, we eliminate the provided arguments
 
123
            # from the set of remaining function signature arguments. If the
 
124
            # remaining signature arguments are in the args[-len(defaults):],
 
125
            # we are OK.
 
126
            unspec = set(args) - set(opargs.keys())
 
127
            if unspec and not defaults:
 
128
                raise BadRequest('Missing arguments: ' + ', '.join(unspec))
 
129
 
 
130
            unspec = [k for k in unspec if k not in args[-len(defaults):]]
 
131
 
 
132
            if unspec:
 
133
                raise BadRequest('Missing arguments: ' + ', '.join(unspec))
 
134
 
 
135
            # We have extra arguments if the are no match args in the function
 
136
            # signature, AND there is no **.
 
137
            extra = set(opargs.keys()) - set(args)
 
138
            if extra and not varkw:
 
139
                raise BadRequest('Extra arguments: ' + ', '.join(extra))
 
140
 
 
141
            outjson = op(req, **opargs)
113
142
 
114
143
        req.content_type = self.content_type
115
144
        self.write_json(req, outjson)
117
146
    #This is a separate function to allow additional data to be passed through
118
147
    def write_json(self, req, outjson):
119
148
        if outjson is not None:
120
 
            req.write(json.dumps(outjson))
 
149
            req.write(cjson.encode(outjson))
121
150
            req.write("\n")
122
151
 
123
 
    def _named_operation(self, req, opargs, readonly=False):
124
 
        try:
125
 
            opname = opargs['ivle.op']
126
 
            del opargs['ivle.op']
127
 
        except KeyError:
128
 
            raise BadRequest('No named operation specified.')
129
 
 
130
 
        try:
131
 
            op = getattr(self, opname)
132
 
        except AttributeError:
133
 
            raise BadRequest('Invalid named operation.')
134
 
 
135
 
        if not hasattr(op, '_rest_api_callable') or \
136
 
           not op._rest_api_callable:
137
 
            raise BadRequest('Invalid named operation.')
138
 
 
139
 
        if readonly and op._rest_api_write_operation:
140
 
            raise BadRequest('POST required for write operation.')
141
 
 
142
 
        self.authorize_method(req, op)
143
 
 
144
 
        # Find any missing arguments, except for the first two (self, req)
145
 
        (args, vaargs, varkw, defaults) = inspect.getargspec(op)
146
 
        args = args[2:]
147
 
 
148
 
        # To find missing arguments, we eliminate the provided arguments
149
 
        # from the set of remaining function signature arguments. If the
150
 
        # remaining signature arguments are in the args[-len(defaults):],
151
 
        # we are OK.
152
 
        unspec = set(args) - set(opargs.keys())
153
 
        if unspec and not defaults:
154
 
            raise BadRequest('Missing arguments: ' + ', '.join(unspec))
155
 
 
156
 
        unspec = [k for k in unspec if k not in args[-len(defaults):]]
157
 
 
158
 
        if unspec:
159
 
            raise BadRequest('Missing arguments: ' + ', '.join(unspec))
160
 
 
161
 
        # We have extra arguments if the are no match args in the function
162
 
        # signature, AND there is no **.
163
 
        extra = set(opargs.keys()) - set(args)
164
 
        if extra and not varkw:
165
 
            raise BadRequest('Extra arguments: ' + ', '.join(extra))
166
 
 
167
 
        return op(req, **opargs)
168
 
 
169
152
 
170
153
class XHTMLRESTView(GenshiLoaderMixin, JSONRESTView):
171
154
    """A special type of RESTView which takes enhances the standard JSON
189
172
    # This renders the template and adds it to the json
190
173
    def write_json(self, req, outjson):
191
174
        outjson["html"] = self.render_fragment()
192
 
        req.write(json.dumps(outjson))
 
175
        req.write(cjson.encode(outjson))
193
176
        req.write("\n")
194
177
 
195
 
class _named_operation(object):
 
178
class named_operation(object):
196
179
    '''Declare a function to be accessible to HTTP users via the REST API.
197
180
    '''
198
 
    def __init__(self, write_operation, permission):
199
 
        self.write_operation = write_operation
 
181
    def __init__(self, permission):
200
182
        self.permission = permission
201
183
 
202
184
    def __call__(self, func):
203
185
        func._rest_api_callable = True
204
 
        func._rest_api_write_operation = self.write_operation
205
186
        func._rest_api_permission = self.permission
206
187
        return func
207
188
 
208
 
write_operation = functools.partial(_named_operation, True)
209
 
read_operation = functools.partial(_named_operation, False)
210
 
 
211
189
class require_permission(object):
212
190
    '''Declare the permission required for use of a method via the REST API.
213
191
    '''