X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/701fd288f46b5ed9d60c3c5c1f71f22be3bec76d..77238c2233002aa1e8256d2eda37ff65dcd5c916:/code/view.py diff --git a/code/view.py b/code/view.py index a375a9e..38569ed 100644 --- a/code/view.py +++ b/code/view.py @@ -67,5 +67,16 @@ def jsonify_tool_callback(*args, **kwargs): cherrypy.tools.jsonify = cherrypy.Tool('before_finalize', jsonify_tool_callback, priority=30) +def external_remote_user_login(): + pass + +def require_login(): + """If the user isn't logged in, raise 403 with an error.""" + if cherrypy.request.login is False: + raise cherrypy.HTTPError(403, + "You are not authorized to access that resource") + +cherrypy.tools.require_login = cherrypy.Tool('on_start_resource', require_login) + class View(object): _cp_config = {'tools.mako.directories': [os.path.join(os.path.dirname(__file__),'templates')]}