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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# IVLE - Informatics Virtual Learning Environment
# Copyright (C) 2007-2009 The University of Melbourne
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

# Author: Matt Giuca, Will Grant

"""
This is a mod_python handler program. The correct way to call it is to have
Apache send all requests to be handled by the module 'dispatch'.

Top-level handler. Handles all requests to all pages in IVLE.
Handles authentication (not authorization).
Then passes the request along to the appropriate ivle app.
"""

import sys
import os
import os.path
import urllib
import cgi
import traceback
import logging
import socket
import time
import inspect

import mod_python
import routes

from ivle import util
import ivle.conf
import ivle.conf.apps
from ivle.dispatch.request import Request
from ivle.dispatch import login
from ivle.webapp.base.plugins import ViewPlugin
from ivle.webapp.errors import HTTPError
import apps
import html

# XXX List of plugins, which will eventually be read in from conf
plugins_HACK = [
    'ivle.webapp.core#Plugin',
    'ivle.webapp.admin.user#Plugin',
    'ivle.webapp.tutorial#Plugin',
    'ivle.webapp.admin.subject#Plugin',
    'ivle.webapp.filesystem.browser#Plugin',
    'ivle.webapp.filesystem.diff#Plugin',
    'ivle.webapp.filesystem.svnlog#Plugin',
    'ivle.webapp.groups#Plugin',
    'ivle.webapp.console#Plugin',
    'ivle.webapp.security#Plugin',
    'ivle.webapp.media#Plugin',
    'ivle.webapp.forum#Plugin',
] 

def generate_route_mapper(view_plugins):
    """
    Build a Mapper object for doing URL matching using 'routes', based on the
    given plugin registry.
    """
    m = routes.Mapper(explicit=True)
    for plugin in view_plugins:
        # Establish a URL pattern for each element of plugin.urls
        assert hasattr(plugin, 'urls'), "%r does not have any urls" % plugin 
        for url in plugin.urls:
            routex = url[0]
            view_class = url[1]
            kwargs_dict = url[2] if len(url) >= 3 else {}
            m.connect(routex, view=view_class, **kwargs_dict)
    return m

def get_plugin(pluginstr):
    plugin_path, classname = pluginstr.split('#')
    # Load the plugin module from somewhere in the Python path
    # (Note that plugin_path is a fully-qualified Python module name).
    return (plugin_path,
            getattr(__import__(plugin_path, fromlist=[classname]), classname))

def handler(req):
    """Handles a request which may be to anywhere in the site except media.
    Intended to be called by mod_python, as a handler.

    req: An Apache request object.
    """
    # Make the request object into an IVLE request which can be passed to apps
    apachereq = req
    try:
        req = Request(req, html.write_html_head)
    except Exception:
        # Pass the apachereq to error reporter, since ivle req isn't created
        # yet.
        handle_unknown_exception(apachereq, *sys.exc_info())
        # Tell Apache not to generate its own errors as well
        return mod_python.apache.OK

    # Run the main handler, and catch all exceptions
    try:
        return handler_(req, apachereq)
    except mod_python.apache.SERVER_RETURN:
        # An apache error. We discourage these, but they might still happen.
        # Just raise up.
        raise
    except Exception:
        handle_unknown_exception(req, *sys.exc_info())
        # Tell Apache not to generate its own errors as well
        return mod_python.apache.OK

def handler_(req, apachereq):
    """
    Nested handler function. May raise exceptions. The top-level handler is
    just used to catch exceptions.
    Takes both an IVLE request and an Apache req.
    """
    # Hack? Try and get the user login early just in case we throw an error
    # (most likely 404) to stop us seeing not logged in even when we are.
    if not req.publicmode:
        req.user = login.get_user_details(req)

    ### BEGIN New plugins framework ###
    # XXX This should be done ONCE per Python process, not per request.
    # (Wait till WSGI)
    # XXX No authentication is done here
    req.plugins = dict([get_plugin(pluginstr) for pluginstr in plugins_HACK])
    # Index the plugins by base class
    req.plugin_index = {}
    for plugin in req.plugins.values():
        # Getmro returns a tuple of all the super-classes of the plugin
        for base in inspect.getmro(plugin):
            if base not in req.plugin_index:
                req.plugin_index[base] = []
            req.plugin_index[base].append(plugin)
    req.reverse_plugins = dict([(v, k) for (k, v) in req.plugins.items()])
    req.mapper = generate_route_mapper(req.plugin_index[ViewPlugin])

    matchdict = req.mapper.match(req.uri)
    if matchdict is not None:
        viewcls = matchdict['view']
        # Get the remaining arguments, less 'view', 'action' and 'controller'
        # (The latter two seem to be built-in, and we don't want them).
        kwargs = matchdict.copy()
        del kwargs['view']
        try:
            # Instantiate the view, which should be a BaseView class
            view = viewcls(req, **kwargs)
            # Render the output
            view.render(req)
        except HTTPError, e:
            # A view explicitly raised an HTTP error. Respect it.
            req.status = e.code
            req.write(e.message)
            return e.code # Should be req.OK once we have our own errviews.
        except Exception, e:
            # A non-HTTPError appeared. We have an unknown exception. Panic.
            handle_unknown_exception(req, *sys.exc_info())
            return req.OK
        else:
            req.store.commit()
            return req.OK
    ### END New plugins framework ###

    # Check req.app to see if it is valid. 404 if not.
    if req.app is not None and req.app not in ivle.conf.apps.app_url:
        req.throw_error(Request.HTTP_NOT_FOUND,
            "There is no application called %s." % repr(req.app))

    # Special handling for public mode - only allow the public app, call it
    # and get out.
    # NOTE: This will not behave correctly if the public app uses
    # write_html_head_foot, but "serve" does not.
    if req.publicmode:
        if req.app != ivle.conf.apps.public_app:
            req.throw_error(Request.HTTP_FORBIDDEN,
                "This application is not available on the public site.")
        app = ivle.conf.apps.app_url[ivle.conf.apps.public_app]
        apps.call_app(app.dir, req)
        return req.OK

    # app is the App object for the chosen app
    if req.app is None:
        app = ivle.conf.apps.app_url[ivle.conf.apps.default_app]
    else:
        app = ivle.conf.apps.app_url[req.app]

    # Check if app requires auth. If so, perform authentication and login.
    # This will either return a User object, None, or perform a redirect
    # which we will not catch here.
    if app.requireauth:
        req.user = login.login(req)
        logged_in = req.user is not None
    else:
        req.user = login.get_user_details(req)
        logged_in = True

    if logged_in:
        # Keep the user's session alive by writing to the session object.
        # req.get_session().save()
        # Well, it's a fine idea, but it creates considerable grief in the
        # concurrent update department, so instead, we'll just make the
        # sessions not time out.
        req.get_session().unlock()

        # If user did not specify an app, HTTP redirect to default app and
        # exit.
        if req.app is None:
            req.throw_redirect(util.make_path(ivle.conf.apps.default_app))

        # Set the default title to the app's tab name, if any. Otherwise URL
        # name.
        if app.name is not None:
            req.title = app.name
        else:
            req.title = req.app

        # Call the specified app with the request object
        apps.call_app(app.dir, req)

    # if not logged in, login.login will have written the login box.
    # Just clean up and exit.

    # MAKE SURE we write the HTTP (and possibly HTML) header. This
    # wouldn't happen if nothing else ever got written, so we have to make
    # sure.
    req.ensure_headers_written()

    # When done, write out the HTML footer if the app has requested it
    if req.write_html_head_foot:
        html.write_html_foot(req)

    # Note: Apache will not write custom HTML error messages here.
    # Use req.throw_error to do that.
    return req.OK

def handle_unknown_exception(req, exc_type, exc_value, exc_traceback):
    """
    Given an exception that has just been thrown from IVLE, print its details
    to the request.
    This is a full handler. It assumes nothing has been written, and writes a
    complete HTML page.
    req: May be EITHER an IVLE req or an Apache req.
    IVLE reqs may have the HTML head/foot written (on a 400 error), but
    the handler code may pass an apache req if an exception occurs before
    the IVLE request is created.
    """
    req.content_type = "text/html"
    logfile = os.path.join(ivle.conf.log_path, 'ivle_error.log')
    logfail = False
    # For some reason, some versions of mod_python have "_server" instead of
    # "main_server". So we check for both.
    try:
        admin_email = mod_python.apache.main_server.server_admin
    except AttributeError:
        try:
            admin_email = mod_python.apache._server.server_admin
        except AttributeError:
            admin_email = ""
    try:
        httpcode = exc_value.httpcode
        req.status = httpcode
    except AttributeError:
        httpcode = None
        req.status = mod_python.apache.HTTP_INTERNAL_SERVER_ERROR
    try:
        publicmode = req.publicmode
    except AttributeError:
        publicmode = True
    try:
        login = req.user.login
    except AttributeError:
        login = None
    try:
        role = req.user.role
    except AttributeError:
        role = None

    # Log File
    try:
        for h in logging.getLogger().handlers:
            logging.getLogger().removeHandler(h)
        logging.basicConfig(level=logging.INFO,
            format='%(asctime)s %(levelname)s: ' +
                '(HTTP: ' + str(req.status) +
                ', Ref: ' + str(login) + '@' +
                str(socket.gethostname()) + str(req.uri) +
                ') %(message)s',
            filename=logfile,
            filemode='a')
    except IOError:
        logfail = True
    logging.debug('Logging Unhandled Exception')

    # We handle 3 types of error.
    # IVLEErrors with 4xx response codes (client error).
    # IVLEErrors with 5xx response codes (handled server error).
    # Other exceptions (unhandled server error).
    # IVLEErrors should not have other response codes than 4xx or 5xx
    # (eg. throw_redirect should have been used for 3xx codes).
    # Therefore, that is treated as an unhandled error.

    if (exc_type == util.IVLEError and httpcode >= 400
        and httpcode <= 499):
        # IVLEErrors with 4xx response codes are client errors.
        # Therefore, these have a "nice" response (we even coat it in the IVLE
        # HTML wrappers).
        
        req.write_html_head_foot = True
        req.write_javascript_settings = False
        req.write('<div id="ivle_padding">\n')
        try:
            codename, msg = req.get_http_codename(httpcode)
        except AttributeError:
            codename, msg = None, None
        # Override the default message with the supplied one,
        # if available.
        if exc_value.message is not None:
            msg = exc_value.message
        if codename is not None:
            req.write("<h1>Error: %s</h1>\n" % cgi.escape(codename))
        else:
            req.write("<h1>Error</h1>\n")
        if msg is not None:
            req.write("<p>%s</p>\n" % cgi.escape(msg))
        else:
            req.write("<p>An unknown error occured.</p>\n")
        
        # Logging
        logging.info(str(msg))
        
        req.write("<p>(HTTP error code %d)</p>\n" % httpcode)
        if logfail:
            req.write("<p>Warning: Could not open Error Log: '%s'</p>\n"
                %cgi.escape(logfile))
        req.write('</div>\n')
        html.write_html_foot(req)
    else:
        # A "bad" error message. We shouldn't get here unless IVLE
        # misbehaves (which is currently very easy, if things aren't set up
        # correctly).
        # Write the traceback.
        # If this is a non-4xx IVLEError, get the message and httpcode and
        # make the error message a bit nicer (but still include the
        # traceback).
        # We also need to special-case IVLEJailError, as we can get another
        # almost-exception out of it.

        codename, msg = None, None

        if exc_type is util.IVLEJailError:
            msg = exc_value.type_str + ": " + exc_value.message
            tb = 'Exception information extracted from IVLEJailError:\n'
            tb += urllib.unquote(exc_value.info)
        else:
            try:
                codename, msg = req.get_http_codename(httpcode)
            except AttributeError:
                pass
            # Override the default message with the supplied one,
            # if available.
            if hasattr(exc_value, 'message') and exc_value.message is not None:
                msg = exc_value.message
                # Prepend the exception type
                if exc_type != util.IVLEError:
                    msg = exc_type.__name__ + ": " + msg

            tb = ''.join(traceback.format_exception(exc_type, exc_value,
                                                    exc_traceback))

        # Logging
        logging.error('%s\n%s'%(str(msg), tb))
        # Error messages are only displayed is the user is NOT a student,
        # or if there has been a problem logging the error message
        show_errors = (not publicmode) and ((login and \
                            str(role) != "student") or logfail)
        req.write("""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"                 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">                                      
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>IVLE Internal Server Error</title></head>
<body>
<h1>IVLE Internal Server Error""")
        if (show_errors):
            if (codename is not None
                        and httpcode != mod_python.apache.HTTP_INTERNAL_SERVER_ERROR):
                req.write(": %s" % cgi.escape(codename))
        
        req.write("""</h1>
<p>An error has occured which is the fault of the IVLE developers or
administration. The developers have been notified.</p>
""")
        if (show_errors):
            if msg is not None:
                req.write("<p>%s</p>\n" % cgi.escape(msg))
            if httpcode is not None:
                req.write("<p>(HTTP error code %d)</p>\n" % httpcode)
            req.write("""
    <p>Please report this to <a href="mailto:%s">%s</a> (the system
    administrator). Include the following information:</p>
    """ % (cgi.escape(admin_email), cgi.escape(admin_email)))

            req.write("<pre>\n%s\n</pre>\n"%cgi.escape(tb))
            if logfail:
                req.write("<p>Warning: Could not open Error Log: '%s'</p>\n"
                    %cgi.escape(logfile))
        req.write("</body></html>")