notebook/IPython/html/tree/handlers.py

74 lines
2.4 KiB
Python
Raw Normal View History

"""Tornado handlers for the tree view.
2013-05-03 02:15:32 +08:00
Authors:
* Brian Granger
"""
#-----------------------------------------------------------------------------
# Copyright (C) 2011 The IPython Development Team
2013-05-03 02:15:32 +08:00
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import os
2013-05-03 02:15:32 +08:00
from tornado import web
from ..base.handlers import IPythonHandler
from ..utils import url_path_join, path2url, url2path
from ..services.notebooks.handlers import _notebook_path_regex, _path_regex
2013-05-03 02:15:32 +08:00
#-----------------------------------------------------------------------------
# Handlers
2013-05-03 02:15:32 +08:00
#-----------------------------------------------------------------------------
class TreeHandler(IPythonHandler):
"""Render the tree view, listing notebooks, clusters, etc."""
2013-05-03 02:15:32 +08:00
@web.authenticated
def get(self, path='', name=None):
2013-07-04 01:47:39 +08:00
nbm = self.notebook_manager
if name is not None:
# is a notebook, redirect to notebook handler
url = url_path_join(self.base_project_url, 'notebooks', path, name)
self.redirect(url)
2013-07-04 01:47:39 +08:00
else:
if not nbm.path_exists(path=path):
# no such directory, 404
raise web.HTTPError(404)
2013-07-04 01:47:39 +08:00
self.write(self.render_template('tree.html',
project=self.project_dir,
tree_url_path=path,
2013-07-04 01:47:39 +08:00
notebook_path=path,
))
2013-07-04 01:47:39 +08:00
class TreeRedirectHandler(IPythonHandler):
"""Redirect a request to the corresponding tree URL"""
2013-07-26 03:57:14 +08:00
@web.authenticated
def get(self, path=''):
url = url_path_join(self.base_project_url, 'tree', path).rstrip('/')
self.log.debug("Redirecting %s to %s", self.request.uri, url)
2013-07-04 01:47:39 +08:00
self.redirect(url)
2013-05-16 01:55:43 +08:00
#-----------------------------------------------------------------------------
# URL to handler mappings
#-----------------------------------------------------------------------------
2013-07-04 01:47:39 +08:00
default_handlers = [
(r"/tree/(.*)/", TreeRedirectHandler),
(r"/tree/?%s" % _notebook_path_regex, TreeHandler),
(r"/tree/?%s" % _path_regex, TreeHandler),
2013-07-04 01:47:39 +08:00
(r"/tree/", TreeRedirectHandler),
(r"/tree", TreeHandler),
(r"/", TreeRedirectHandler),
2013-07-04 01:47:39 +08:00
]