notebook/IPython/html/tree/handlers.py

75 lines
2.6 KiB
Python
Raw Normal View History

"""Tornado handlers for the tree view."""
2013-05-03 02:15:32 +08:00
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
2013-05-03 02:15:32 +08:00
from tornado import web
from ..base.handlers import IPythonHandler, path_regex
2014-05-02 06:42:46 +08:00
from ..utils import url_path_join, url_escape
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
2014-02-03 11:41:53 +08:00
def generate_breadcrumbs(self, path):
breadcrumbs = [(url_escape(url_path_join(self.base_url, 'tree')), '')]
2014-02-03 11:41:53 +08:00
comps = path.split('/')
ncomps = len(comps)
for i in range(ncomps):
if comps[i]:
link = url_escape(url_path_join(self.base_url, 'tree', *comps[0:i+1]))
2014-02-03 11:41:53 +08:00
breadcrumbs.append((link, comps[i]))
return breadcrumbs
def generate_page_title(self, path):
comps = path.split('/')
if len(comps) > 3:
for i in range(len(comps)-2):
comps.pop(0)
page_title = url_path_join(*comps)
if page_title:
return page_title+'/'
else:
return 'Home'
@web.authenticated
def get(self, path=''):
path = path.strip('/')
cm = self.contents_manager
if cm.file_exists(path):
# it's not a directory, we have redirecting to do
model = cm.get(path, content=False)
# redirect to /api/notebooks if it's a notebook, otherwise /api/files
service = 'notebooks' if model['type'] == 'notebook' else 'files'
2013-10-19 06:12:23 +08:00
url = url_escape(url_path_join(
self.base_url, service, path,
2013-10-19 06:12:23 +08:00
))
self.log.debug("Redirecting %s to %s", self.request.path, url)
self.redirect(url)
2013-07-04 01:47:39 +08:00
else:
if not cm.dir_exists(path=path):
# Directory is hidden or does not exist.
raise web.HTTPError(404)
elif cm.is_hidden(path):
self.log.info("Refusing to serve hidden directory, via 404 Error")
raise web.HTTPError(404)
2014-02-03 11:41:53 +08:00
breadcrumbs = self.generate_breadcrumbs(path)
page_title = self.generate_page_title(path)
2013-07-04 01:47:39 +08:00
self.write(self.render_template('tree.html',
page_title=page_title,
2013-07-04 01:47:39 +08:00
notebook_path=path,
breadcrumbs=breadcrumbs,
terminals_available=self.settings['terminals_available'],
))
2013-07-04 01:47:39 +08:00
2013-05-16 01:55:43 +08:00
#-----------------------------------------------------------------------------
# URL to handler mappings
#-----------------------------------------------------------------------------
2013-07-04 01:47:39 +08:00
default_handlers = [
(r"/tree%s" % path_regex, TreeHandler),
(r"/tree", TreeHandler),
2013-07-04 01:47:39 +08:00
]