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

« back to all changes in this revision

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

Update docs to comply with more recent Debian standards, and IVLE changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# along with this program; if not, write to the Free Software
16
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
17
 
18
 
# Author: Matt Giuca, Will Grant, Nick Chadwick
 
18
# Author: Matt Giuca, Will Grant
19
19
 
20
 
import os
21
20
import cgi
22
 
import urlparse
23
21
import inspect
24
22
 
25
23
import cjson
26
 
import genshi.template
27
24
 
28
25
from ivle.webapp.base.views import BaseView
29
26
from ivle.webapp.errors import BadRequest, MethodNotAllowed, Unauthorized
35
32
    """
36
33
    content_type = "application/octet-stream"
37
34
 
 
35
    def __init__(self, req, *args, **kwargs):
 
36
        for key in kwargs:
 
37
            setattr(self, key, kwargs[key])
 
38
 
38
39
    def render(self, req):
39
40
        raise NotImplementedError()
40
41
 
57
58
 
58
59
        if op._rest_api_permission not in self.get_permissions(req.user):
59
60
            raise Unauthorized()
60
 
    
61
 
    def convert_bool(self, value):
62
 
        if value in ('True', 'true', True):
63
 
            return True
64
 
        elif value in ('False', 'false', False):
65
 
            return False
66
 
        else:
67
 
            raise BadRequest()
68
61
 
69
62
    def render(self, req):
70
63
        if req.method not in self._allowed_methods:
94
87
        # POST implies named operation.
95
88
        elif req.method == 'POST':
96
89
            # TODO: Check Content-Type and implement multipart/form-data.
97
 
            data = req.read()
98
 
            opargs = dict(cgi.parse_qsl(data, keep_blank_values=1))
 
90
            opargs = dict(cgi.parse_qsl(req.read()))
99
91
            try:
100
92
                opname = opargs['ivle.op']
101
93
                del opargs['ivle.op']
139
131
            outjson = op(req, **opargs)
140
132
 
141
133
        req.content_type = self.content_type
142
 
        self.write_json(req, outjson)
143
 
 
144
 
    #This is a separate function to allow additional data to be passed through
145
 
    def write_json(self, req, outjson):
146
134
        if outjson is not None:
147
135
            req.write(cjson.encode(outjson))
148
136
            req.write("\n")
149
137
 
150
 
 
151
 
class XHTMLRESTView(JSONRESTView):
152
 
    """A special type of RESTView which takes enhances the standard JSON
153
 
    with genshi XHTML functions.
154
 
    
155
 
    XHTMLRESTViews should have a template, which is rendered using their
156
 
    context. This is returned in the JSON as 'html'"""
157
 
    template = None
158
 
    ctx = genshi.template.Context()
159
 
 
160
 
    def render_fragment(self):
161
 
        if self.template is None:
162
 
            raise NotImplementedError()
163
 
 
164
 
        rest_template = os.path.join(os.path.dirname(
165
 
                inspect.getmodule(self).__file__), self.template)
166
 
        loader = genshi.template.TemplateLoader(".", auto_reload=True)
167
 
        tmpl = loader.load(rest_template)
168
 
 
169
 
        return tmpl.generate(self.ctx).render('xhtml', doctype='xhtml')
170
 
    
171
 
    # This renders the template and adds it to the json
172
 
    def write_json(self, req, outjson):
173
 
        outjson["html"] = self.render_fragment()
174
 
        req.write(cjson.encode(outjson))
175
 
        req.write("\n")
176
 
 
177
138
class named_operation(object):
178
139
    '''Declare a function to be accessible to HTTP users via the REST API.
179
140
    '''
194
155
    def __call__(self, func):
195
156
        func._rest_api_permission = self.permission
196
157
        return func
 
158