mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 02:24:08 +00:00

swaps from default nbclassic and opt-in to lab, to now default to lab and opt-in to nbclassic defaults to jupyterlab *if* lab 3.1 is available, so should still work without configuration if lab is unavailable (or too old)
69 lines
2.0 KiB
Python
69 lines
2.0 KiB
Python
"""Make a single-user app based on the environment:
|
|
|
|
- $JUPYTERHUB_SINGLEUSER_APP, the base Application class, to be wrapped in JupyterHub authentication.
|
|
default: jupyter_server.serverapp.ServerApp
|
|
|
|
.. versionchanged:: 2.0
|
|
|
|
Default app changed to launch `jupyter labhub`.
|
|
Use JUPYTERHUB_SINGLEUSER_APP=notebook.notebookapp.NotebookApp for the legacy 'classic' notebook server.
|
|
"""
|
|
import os
|
|
|
|
from traitlets import import_item
|
|
|
|
from .mixins import make_singleuser_app
|
|
|
|
JUPYTERHUB_SINGLEUSER_APP = os.environ.get("JUPYTERHUB_SINGLEUSER_APP")
|
|
|
|
|
|
if JUPYTERHUB_SINGLEUSER_APP:
|
|
App = import_item(JUPYTERHUB_SINGLEUSER_APP)
|
|
else:
|
|
App = None
|
|
_import_error = None
|
|
for JUPYTERHUB_SINGLEUSER_APP in (
|
|
"jupyter_server.serverapp.ServerApp",
|
|
"notebook.notebookapp.NotebookApp",
|
|
):
|
|
try:
|
|
App = import_item(JUPYTERHUB_SINGLEUSER_APP)
|
|
except ImportError as e:
|
|
continue
|
|
if _import_error is None:
|
|
_import_error = e
|
|
else:
|
|
break
|
|
if App is None:
|
|
raise _import_error
|
|
|
|
|
|
SingleUserNotebookApp = make_singleuser_app(App)
|
|
|
|
|
|
def main():
|
|
"""Launch a jupyterhub single-user server"""
|
|
if not os.environ.get("JUPYTERHUB_SINGLEUSER_APP"):
|
|
# app not specified, launch jupyter-labhub by default,
|
|
# if jupyterlab is recent enough (3.1).
|
|
# This is a minimally extended ServerApp that does:
|
|
# 1. ensure lab extension is enabled, and
|
|
# 2. set default URL to `/lab`
|
|
import re
|
|
|
|
_version_pat = re.compile(r"(\d+)\.(\d+)")
|
|
try:
|
|
import jupyterlab
|
|
from jupyterlab.labhubapp import SingleUserLabApp
|
|
|
|
m = _version_pat.match(jupyterlab.__version__)
|
|
except Exception:
|
|
m = None
|
|
|
|
if m is not None:
|
|
version_tuple = tuple(int(v) for v in m.groups())
|
|
if version_tuple >= (3, 1):
|
|
return SingleUserLabApp.launch_instance()
|
|
|
|
return SingleUserNotebookApp.launch_instance()
|