-
Notifications
You must be signed in to change notification settings - Fork 309
/
serverapp.py
2979 lines (2584 loc) · 105 KB
/
serverapp.py
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""A tornado based Jupyter server."""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import datetime
import errno
import gettext
import hashlib
import hmac
import ipaddress
import json
import logging
import mimetypes
import os
import pathlib
import random
import re
import select
import signal
import socket
import stat
import sys
import threading
import time
import urllib
import warnings
from base64 import encodebytes
from jupyter_client.kernelspec import KernelSpecManager
from jupyter_client.manager import KernelManager
from jupyter_client.session import Session
from jupyter_core.application import JupyterApp, base_aliases, base_flags
from jupyter_core.paths import jupyter_runtime_dir
from jupyter_events.logger import EventLogger
from nbformat.sign import NotebookNotary
from tornado import httpserver, ioloop, web
from tornado.httputil import url_concat
from tornado.log import LogFormatter, access_log, app_log, gen_log
from tornado.netutil import bind_sockets
if not sys.platform.startswith("win"):
from tornado.netutil import bind_unix_socket
from traitlets import (
Any,
Bool,
Bytes,
Dict,
Float,
Instance,
Integer,
List,
TraitError,
Type,
Unicode,
Union,
default,
observe,
validate,
)
from traitlets.config import Config
from traitlets.config.application import boolean_flag, catch_config_error
from jupyter_server import (
DEFAULT_EVENTS_SCHEMA_PATH,
DEFAULT_JUPYTER_SERVER_PORT,
DEFAULT_STATIC_FILES_PATH,
DEFAULT_TEMPLATE_PATH_LIST,
JUPYTER_SERVER_EVENTS_URI,
__version__,
)
from jupyter_server._sysinfo import get_sys_info
from jupyter_server._tz import utcnow
from jupyter_server.auth.authorizer import AllowAllAuthorizer, Authorizer
from jupyter_server.auth.identity import (
IdentityProvider,
LegacyIdentityProvider,
PasswordIdentityProvider,
)
from jupyter_server.auth.login import LoginHandler
from jupyter_server.auth.logout import LogoutHandler
from jupyter_server.base.handlers import (
FileFindHandler,
MainHandler,
RedirectWithParams,
Template404,
)
from jupyter_server.extension.config import ExtensionConfigManager
from jupyter_server.extension.manager import ExtensionManager
from jupyter_server.extension.serverextension import ServerExtensionApp
from jupyter_server.gateway.connections import GatewayWebSocketConnection
from jupyter_server.gateway.managers import (
GatewayClient,
GatewayKernelSpecManager,
GatewayMappingKernelManager,
GatewaySessionManager,
)
from jupyter_server.log import log_request
from jupyter_server.services.config import ConfigManager
from jupyter_server.services.contents.filemanager import (
AsyncFileContentsManager,
FileContentsManager,
)
from jupyter_server.services.contents.largefilemanager import AsyncLargeFileManager
from jupyter_server.services.contents.manager import AsyncContentsManager, ContentsManager
from jupyter_server.services.kernels.connection.base import BaseKernelWebsocketConnection
from jupyter_server.services.kernels.connection.channels import ZMQChannelsWebsocketConnection
from jupyter_server.services.kernels.kernelmanager import (
AsyncMappingKernelManager,
MappingKernelManager,
)
from jupyter_server.services.sessions.sessionmanager import SessionManager
from jupyter_server.utils import (
check_pid,
fetch,
unix_socket_in_use,
url_escape,
url_path_join,
urlencode_unix_socket_path,
)
try:
import resource
except ImportError:
# Windows
resource = None # type:ignore[assignment]
from jinja2 import Environment, FileSystemLoader
from jupyter_core.paths import secure_write
from jupyter_core.utils import ensure_async
from jupyter_server.transutils import _i18n, trans
from jupyter_server.utils import pathname2url, urljoin
# the minimum viable tornado version: needs to be kept in sync with setup.py
MIN_TORNADO = (6, 1, 0)
try:
import tornado
assert tornado.version_info >= MIN_TORNADO
except (ImportError, AttributeError, AssertionError) as e: # pragma: no cover
raise ImportError(_i18n("The Jupyter Server requires tornado >=%s.%s.%s") % MIN_TORNADO) from e
try:
import resource
except ImportError:
# Windows
resource = None # type:ignore[assignment]
# -----------------------------------------------------------------------------
# Module globals
# -----------------------------------------------------------------------------
_examples = """
jupyter server # start the server
jupyter server --certfile=mycert.pem # use SSL/TLS certificate
jupyter server password # enter a password to protect the server
"""
JUPYTER_SERVICE_HANDLERS = {
"auth": None,
"api": ["jupyter_server.services.api.handlers"],
"config": ["jupyter_server.services.config.handlers"],
"contents": ["jupyter_server.services.contents.handlers"],
"files": ["jupyter_server.files.handlers"],
"kernels": [
"jupyter_server.services.kernels.handlers",
],
"kernelspecs": [
"jupyter_server.kernelspecs.handlers",
"jupyter_server.services.kernelspecs.handlers",
],
"nbconvert": [
"jupyter_server.nbconvert.handlers",
"jupyter_server.services.nbconvert.handlers",
],
"security": ["jupyter_server.services.security.handlers"],
"sessions": ["jupyter_server.services.sessions.handlers"],
"shutdown": ["jupyter_server.services.shutdown"],
"view": ["jupyter_server.view.handlers"],
"events": ["jupyter_server.services.events.handlers"],
}
# Added for backwards compatibility from classic notebook server.
DEFAULT_SERVER_PORT = DEFAULT_JUPYTER_SERVER_PORT
# -----------------------------------------------------------------------------
# Helper functions
# -----------------------------------------------------------------------------
def random_ports(port, n):
"""Generate a list of n random ports near the given port.
The first 5 ports will be sequential, and the remaining n-5 will be
randomly selected in the range [port-2*n, port+2*n].
"""
for i in range(min(5, n)):
yield port + i
for _ in range(n - 5):
yield max(1, port + random.randint(-2 * n, 2 * n)) # noqa
def load_handlers(name):
"""Load the (URL pattern, handler) tuples for each component."""
mod = __import__(name, fromlist=["default_handlers"])
return mod.default_handlers
# -----------------------------------------------------------------------------
# The Tornado web application
# -----------------------------------------------------------------------------
class ServerWebApplication(web.Application):
"""A server web application."""
def __init__(
self,
jupyter_app,
default_services,
kernel_manager,
contents_manager,
session_manager,
kernel_spec_manager,
config_manager,
event_logger,
extra_services,
log,
base_url,
default_url,
settings_overrides,
jinja_env_options,
*,
authorizer=None,
identity_provider=None,
kernel_websocket_connection_class=None,
):
"""Initialize a server web application."""
if identity_provider is None:
warnings.warn(
"identity_provider unspecified. Using default IdentityProvider."
" Specify an identity_provider to avoid this message.",
RuntimeWarning,
stacklevel=2,
)
identity_provider = IdentityProvider(parent=jupyter_app)
if authorizer is None:
warnings.warn(
"authorizer unspecified. Using permissive AllowAllAuthorizer."
" Specify an authorizer to avoid this message.",
RuntimeWarning,
stacklevel=2,
)
authorizer = AllowAllAuthorizer(parent=jupyter_app, identity_provider=identity_provider)
settings = self.init_settings(
jupyter_app,
kernel_manager,
contents_manager,
session_manager,
kernel_spec_manager,
config_manager,
event_logger,
extra_services,
log,
base_url,
default_url,
settings_overrides,
jinja_env_options,
authorizer=authorizer,
identity_provider=identity_provider,
kernel_websocket_connection_class=kernel_websocket_connection_class,
)
handlers = self.init_handlers(default_services, settings)
super().__init__(handlers, **settings)
def init_settings(
self,
jupyter_app,
kernel_manager,
contents_manager,
session_manager,
kernel_spec_manager,
config_manager,
event_logger,
extra_services,
log,
base_url,
default_url,
settings_overrides,
jinja_env_options=None,
*,
authorizer=None,
identity_provider=None,
kernel_websocket_connection_class=None,
):
"""Initialize settings for the web application."""
_template_path = settings_overrides.get(
"template_path",
jupyter_app.template_file_path,
)
if isinstance(_template_path, str):
_template_path = (_template_path,)
template_path = [os.path.expanduser(path) for path in _template_path]
jenv_opt: dict = {"autoescape": True}
jenv_opt.update(jinja_env_options if jinja_env_options else {})
env = Environment( # noqa[S701]
loader=FileSystemLoader(template_path), extensions=["jinja2.ext.i18n"], **jenv_opt
)
sys_info = get_sys_info()
base_dir = os.path.realpath(os.path.join(__file__, "..", ".."))
nbui = gettext.translation(
"nbui",
localedir=os.path.join(base_dir, "jupyter_server/i18n"),
fallback=True,
)
env.install_gettext_translations(nbui, newstyle=False) # type:ignore[attr-defined]
if sys_info["commit_source"] == "repository":
# don't cache (rely on 304) when working from master
version_hash = ""
else:
# reset the cache on server restart
utc = datetime.timezone.utc
version_hash = datetime.datetime.now(tz=utc).strftime("%Y%m%d%H%M%S")
now = utcnow()
root_dir = contents_manager.root_dir
home = os.path.expanduser("~")
if root_dir.startswith(home + os.path.sep):
# collapse $HOME to ~
root_dir = "~" + root_dir[len(home) :]
settings = {
# basics
"log_function": log_request,
"base_url": base_url,
"default_url": default_url,
"template_path": template_path,
"static_path": jupyter_app.static_file_path,
"static_custom_path": jupyter_app.static_custom_path,
"static_handler_class": FileFindHandler,
"static_url_prefix": url_path_join(base_url, "/static/"),
"static_handler_args": {
# don't cache custom.js
"no_cache_paths": [url_path_join(base_url, "static", "custom")],
},
"version_hash": version_hash,
# kernel message protocol over websocket
"kernel_ws_protocol": jupyter_app.kernel_ws_protocol,
# rate limits
"limit_rate": jupyter_app.limit_rate,
"iopub_msg_rate_limit": jupyter_app.iopub_msg_rate_limit,
"iopub_data_rate_limit": jupyter_app.iopub_data_rate_limit,
"rate_limit_window": jupyter_app.rate_limit_window,
# authentication
"cookie_secret": jupyter_app.cookie_secret,
"login_url": url_path_join(base_url, "/login"),
"xsrf_cookies": True,
"disable_check_xsrf": jupyter_app.disable_check_xsrf,
"allow_remote_access": jupyter_app.allow_remote_access,
"local_hostnames": jupyter_app.local_hostnames,
"authenticate_prometheus": jupyter_app.authenticate_prometheus,
# managers
"kernel_manager": kernel_manager,
"contents_manager": contents_manager,
"session_manager": session_manager,
"kernel_spec_manager": kernel_spec_manager,
"config_manager": config_manager,
"authorizer": authorizer,
"identity_provider": identity_provider,
"event_logger": event_logger,
"kernel_websocket_connection_class": kernel_websocket_connection_class,
# handlers
"extra_services": extra_services,
# Jupyter stuff
"started": now,
# place for extensions to register activity
# so that they can prevent idle-shutdown
"last_activity_times": {},
"jinja_template_vars": jupyter_app.jinja_template_vars,
"websocket_url": jupyter_app.websocket_url,
"shutdown_button": jupyter_app.quit_button,
"config": jupyter_app.config,
"config_dir": jupyter_app.config_dir,
"allow_password_change": jupyter_app.allow_password_change,
"server_root_dir": root_dir,
"jinja2_env": env,
"serverapp": jupyter_app,
}
# allow custom overrides for the tornado web app.
settings.update(settings_overrides)
if base_url and "xsrf_cookie_kwargs" not in settings:
# default: set xsrf cookie on base_url
settings["xsrf_cookie_kwargs"] = {"path": base_url}
return settings
def init_handlers(self, default_services, settings):
"""Load the (URL pattern, handler) tuples for each component."""
# Order matters. The first handler to match the URL will handle the request.
handlers = []
# load extra services specified by users before default handlers
for service in settings["extra_services"]:
handlers.extend(load_handlers(service))
# Load default services. Raise exception if service not
# found in JUPYTER_SERVICE_HANLDERS.
for service in default_services:
if service in JUPYTER_SERVICE_HANDLERS:
locations = JUPYTER_SERVICE_HANDLERS[service]
if locations is not None:
for loc in locations:
handlers.extend(load_handlers(loc))
else:
msg = (
f"{service} is not recognized as a jupyter_server "
"service. If this is a custom service, "
"try adding it to the "
"`extra_services` list."
)
raise Exception(msg)
# Add extra handlers from contents manager.
handlers.extend(settings["contents_manager"].get_extra_handlers())
# And from identity provider
handlers.extend(settings["identity_provider"].get_handlers())
# register base handlers last
handlers.extend(load_handlers("jupyter_server.base.handlers"))
if settings["default_url"] != settings["base_url"]:
# set the URL that will be redirected from `/`
handlers.append(
(
r"/?",
RedirectWithParams,
{
"url": settings["default_url"],
"permanent": False, # want 302, not 301
},
)
)
else:
handlers.append((r"/", MainHandler))
# prepend base_url onto the patterns that we match
new_handlers = []
for handler in handlers:
pattern = url_path_join(settings["base_url"], handler[0])
new_handler = (pattern, *list(handler[1:]))
new_handlers.append(new_handler)
# add 404 on the end, which will catch everything that falls through
new_handlers.append((r"(.*)", Template404))
return new_handlers
def last_activity(self):
"""Get a UTC timestamp for when the server last did something.
Includes: API activity, kernel activity, kernel shutdown, and terminal
activity.
"""
sources = [
self.settings["started"],
self.settings["kernel_manager"].last_kernel_activity,
]
# Any setting that ends with a key that ends with `_last_activity` is
# counted here. This provides a hook for extensions to add a last activity
# setting to the server.
sources.extend(
[val for key, val in self.settings.items() if key.endswith("_last_activity")]
)
sources.extend(self.settings["last_activity_times"].values())
return max(sources)
class JupyterPasswordApp(JupyterApp):
"""Set a password for the Jupyter server.
Setting a password secures the Jupyter server
and removes the need for token-based authentication.
"""
description: str = __doc__
def _config_file_default(self):
"""the default config file."""
return os.path.join(self.config_dir, "jupyter_server_config.json")
def start(self):
"""Start the password app."""
from jupyter_server.auth.security import set_password
set_password(config_file=self.config_file)
self.log.info("Wrote hashed password to %s" % self.config_file)
def shutdown_server(server_info, timeout=5, log=None):
"""Shutdown a Jupyter server in a separate process.
*server_info* should be a dictionary as produced by list_running_servers().
Will first try to request shutdown using /api/shutdown .
On Unix, if the server is still running after *timeout* seconds, it will
send SIGTERM. After another timeout, it escalates to SIGKILL.
Returns True if the server was stopped by any means, False if stopping it
failed (on Windows).
"""
url = server_info["url"]
pid = server_info["pid"]
try:
shutdown_url = urljoin(url, "api/shutdown")
if log:
log.debug("POST request to %s", shutdown_url)
fetch(
shutdown_url,
method="POST",
body=b"",
headers={"Authorization": "token " + server_info["token"]},
)
except Exception as ex:
if not str(ex) == "Unknown URL scheme.":
raise ex
if log:
log.debug("Was not a HTTP scheme. Treating as socket instead.")
log.debug("POST request to %s", url)
fetch(
url,
method="POST",
body=b"",
headers={"Authorization": "token " + server_info["token"]},
)
# Poll to see if it shut down.
for _ in range(timeout * 10):
if not check_pid(pid):
if log:
log.debug("Server PID %s is gone", pid)
return True
time.sleep(0.1)
if sys.platform.startswith("win"):
return False
if log:
log.debug("SIGTERM to PID %s", pid)
os.kill(pid, signal.SIGTERM)
# Poll to see if it shut down.
for _ in range(timeout * 10):
if not check_pid(pid):
if log:
log.debug("Server PID %s is gone", pid)
return True
time.sleep(0.1)
if log:
log.debug("SIGKILL to PID %s", pid)
os.kill(pid, signal.SIGKILL)
return True # SIGKILL cannot be caught
class JupyterServerStopApp(JupyterApp):
"""An application to stop a Jupyter server."""
version: str = __version__
description: str = "Stop currently running Jupyter server for a given port"
port = Integer(
DEFAULT_JUPYTER_SERVER_PORT,
config=True,
help="Port of the server to be killed. Default %s" % DEFAULT_JUPYTER_SERVER_PORT,
)
sock = Unicode("", config=True, help="UNIX socket of the server to be killed.")
def parse_command_line(self, argv=None):
"""Parse command line options."""
super().parse_command_line(argv)
if self.extra_args:
try:
self.port = int(self.extra_args[0])
except ValueError:
# self.extra_args[0] was not an int, so it must be a string (unix socket).
self.sock = self.extra_args[0]
def shutdown_server(self, server):
"""Shut down a server."""
return shutdown_server(server, log=self.log)
def _shutdown_or_exit(self, target_endpoint, server):
"""Handle a shutdown."""
self.log.info("Shutting down server on %s..." % target_endpoint)
if not self.shutdown_server(server):
sys.exit("Could not stop server on %s" % target_endpoint)
@staticmethod
def _maybe_remove_unix_socket(socket_path):
"""Try to remove a socket path."""
try:
os.unlink(socket_path)
except OSError:
pass
def start(self):
"""Start the server stop app."""
info = self.log.info
servers = list(list_running_servers(self.runtime_dir, log=self.log))
if not servers:
self.exit("There are no running servers (per %s)" % self.runtime_dir)
for server in servers:
if self.sock:
sock = server.get("sock", None)
if sock and sock == self.sock:
self._shutdown_or_exit(sock, server)
# Attempt to remove the UNIX socket after stopping.
self._maybe_remove_unix_socket(sock)
return
elif self.port:
port = server.get("port", None)
if port == self.port:
self._shutdown_or_exit(port, server)
return
current_endpoint = self.sock or self.port
info(f"There is currently no server running on {current_endpoint}")
info("Ports/sockets currently in use:")
for server in servers:
info(" - {}".format(server.get("sock") or server["port"]))
self.exit(1)
class JupyterServerListApp(JupyterApp):
"""An application to list running Jupyter servers."""
version: str = __version__
description: str = _i18n("List currently running Jupyter servers.")
flags = {
"jsonlist": (
{"JupyterServerListApp": {"jsonlist": True}},
_i18n("Produce machine-readable JSON list output."),
),
"json": (
{"JupyterServerListApp": {"json": True}},
_i18n("Produce machine-readable JSON object on each line of output."),
),
}
jsonlist = Bool(
False,
config=True,
help=_i18n(
"If True, the output will be a JSON list of objects, one per "
"active Jupyer server, each with the details from the "
"relevant server info file."
),
)
json = Bool(
False,
config=True,
help=_i18n(
"If True, each line of output will be a JSON object with the "
"details from the server info file. For a JSON list output, "
"see the JupyterServerListApp.jsonlist configuration value"
),
)
def start(self):
"""Start the server list application."""
serverinfo_list = list(list_running_servers(self.runtime_dir, log=self.log))
if self.jsonlist:
print(json.dumps(serverinfo_list, indent=2))
elif self.json:
for serverinfo in serverinfo_list:
print(json.dumps(serverinfo))
else:
print("Currently running servers:")
for serverinfo in serverinfo_list:
url = serverinfo["url"]
if serverinfo.get("token"):
url = url + "?token=%s" % serverinfo["token"]
print(url, "::", serverinfo["root_dir"])
# -----------------------------------------------------------------------------
# Aliases and Flags
# -----------------------------------------------------------------------------
flags = dict(base_flags)
flags["allow-root"] = (
{"ServerApp": {"allow_root": True}},
_i18n("Allow the server to be run from root user."),
)
flags["no-browser"] = (
{"ServerApp": {"open_browser": False}, "ExtensionApp": {"open_browser": False}},
_i18n("Prevent the opening of the default url in the browser."),
)
flags["debug"] = (
{"ServerApp": {"log_level": "DEBUG"}, "ExtensionApp": {"log_level": "DEBUG"}},
_i18n("Set debug level for the extension and underlying server applications."),
)
flags["autoreload"] = (
{"ServerApp": {"autoreload": True}},
"""Autoreload the webapp
Enable reloading of the tornado webapp and all imported Python packages
when any changes are made to any Python src files in server or
extensions.
""",
)
# Add notebook manager flags
flags.update(
boolean_flag(
"script",
"FileContentsManager.save_script",
"DEPRECATED, IGNORED",
"DEPRECATED, IGNORED",
)
)
aliases = dict(base_aliases)
aliases.update(
{
"ip": "ServerApp.ip",
"port": "ServerApp.port",
"port-retries": "ServerApp.port_retries",
"sock": "ServerApp.sock",
"sock-mode": "ServerApp.sock_mode",
"transport": "KernelManager.transport",
"keyfile": "ServerApp.keyfile",
"certfile": "ServerApp.certfile",
"client-ca": "ServerApp.client_ca",
"notebook-dir": "ServerApp.root_dir",
"preferred-dir": "ServerApp.preferred_dir",
"browser": "ServerApp.browser",
"pylab": "ServerApp.pylab",
"gateway-url": "GatewayClient.url",
}
)
# -----------------------------------------------------------------------------
# ServerApp
# -----------------------------------------------------------------------------
class ServerApp(JupyterApp):
"""The Jupyter Server application class."""
name = "jupyter-server"
version: str = __version__
description: str = _i18n(
"""The Jupyter Server.
This launches a Tornado-based Jupyter Server."""
)
examples = _examples
flags = Dict(flags) # type:ignore[assignment]
aliases = Dict(aliases) # type:ignore[assignment]
classes = [
KernelManager,
Session,
MappingKernelManager,
KernelSpecManager,
AsyncMappingKernelManager,
ContentsManager,
FileContentsManager,
AsyncContentsManager,
AsyncFileContentsManager,
NotebookNotary,
GatewayMappingKernelManager,
GatewayKernelSpecManager,
GatewaySessionManager,
GatewayWebSocketConnection,
GatewayClient,
Authorizer,
EventLogger,
ZMQChannelsWebsocketConnection,
]
subcommands: dict = {
"list": (
JupyterServerListApp,
JupyterServerListApp.description.splitlines()[0],
),
"stop": (
JupyterServerStopApp,
JupyterServerStopApp.description.splitlines()[0],
),
"password": (
JupyterPasswordApp,
JupyterPasswordApp.description.splitlines()[0],
),
"extension": (
ServerExtensionApp,
ServerExtensionApp.description.splitlines()[0],
),
}
# A list of services whose handlers will be exposed.
# Subclasses can override this list to
# expose a subset of these handlers.
default_services = (
"api",
"auth",
"config",
"contents",
"files",
"kernels",
"kernelspecs",
"nbconvert",
"security",
"sessions",
"shutdown",
"view",
"events",
)
_log_formatter_cls = LogFormatter # type:ignore[assignment]
@default("log_level")
def _default_log_level(self):
return logging.INFO
@default("log_format")
def _default_log_format(self):
"""override default log format to include date & time"""
return (
"%(color)s[%(levelname)1.1s %(asctime)s.%(msecs).03d %(name)s]%(end_color)s %(message)s"
)
# file to be opened in the Jupyter server
file_to_run = Unicode("", help="Open the named file when the application is launched.").tag(
config=True
)
file_url_prefix = Unicode(
"notebooks", help="The URL prefix where files are opened directly."
).tag(config=True)
# Network related information
allow_origin = Unicode(
"",
config=True,
help="""Set the Access-Control-Allow-Origin header
Use '*' to allow any origin to access your server.
Takes precedence over allow_origin_pat.
""",
)
allow_origin_pat = Unicode(
"",
config=True,
help="""Use a regular expression for the Access-Control-Allow-Origin header
Requests from an origin matching the expression will get replies with:
Access-Control-Allow-Origin: origin
where `origin` is the origin of the request.
Ignored if allow_origin is set.
""",
)
allow_credentials = Bool(
False,
config=True,
help=_i18n("Set the Access-Control-Allow-Credentials: true header"),
)
allow_root = Bool(
False,
config=True,
help=_i18n("Whether to allow the user to run the server as root."),
)
autoreload = Bool(
False,
config=True,
help=_i18n("Reload the webapp when changes are made to any Python src files."),
)
default_url = Unicode("/", config=True, help=_i18n("The default URL to redirect to from `/`"))
ip = Unicode(
"localhost",
config=True,
help=_i18n("The IP address the Jupyter server will listen on."),
)
@default("ip")
def _default_ip(self):
"""Return localhost if available, 127.0.0.1 otherwise.
On some (horribly broken) systems, localhost cannot be bound.
"""
s = socket.socket()
try:
s.bind(("localhost", 0))
except OSError as e:
self.log.warning(
_i18n("Cannot bind to localhost, using 127.0.0.1 as default ip\n%s"), e
)
return "127.0.0.1"
else:
s.close()
return "localhost"
@validate("ip")
def _validate_ip(self, proposal):
value = proposal["value"]
if value == "*":
value = ""
return value
custom_display_url = Unicode(
"",
config=True,
help=_i18n(
"""Override URL shown to users.
Replace actual URL, including protocol, address, port and base URL,
with the given value when displaying URL to the users. Do not change
the actual connection URL. If authentication token is enabled, the
token is added to the custom URL automatically.
This option is intended to be used when the URL to display to the user
cannot be determined reliably by the Jupyter server (proxified
or containerized setups for example)."""
),
)
port_env = "JUPYTER_PORT"
port_default_value = DEFAULT_JUPYTER_SERVER_PORT
port = Integer(
config=True,
help=_i18n("The port the server will listen on (env: JUPYTER_PORT)."),
)
@default("port")
def _port_default(self):
return int(os.getenv(self.port_env, self.port_default_value))
port_retries_env = "JUPYTER_PORT_RETRIES"
port_retries_default_value = 50
port_retries = Integer(
port_retries_default_value,
config=True,
help=_i18n(
"The number of additional ports to try if the specified port is not "
"available (env: JUPYTER_PORT_RETRIES)."
),
)
@default("port_retries")
def _port_retries_default(self):
return int(os.getenv(self.port_retries_env, self.port_retries_default_value))
sock = Unicode("", config=True, help="The UNIX socket the Jupyter server will listen on.")
sock_mode = Unicode(
"0600",
config=True,
help="The permissions mode for UNIX socket creation (default: 0600).",
)
@validate("sock_mode")
def _validate_sock_mode(self, proposal):
value = proposal["value"]
try:
converted_value = int(value.encode(), 8)
assert all(
(
# Ensure the mode is at least user readable/writable.
bool(converted_value & stat.S_IRUSR),
bool(converted_value & stat.S_IWUSR),
# And isn't out of bounds.
converted_value <= 2**12,
)
)
except ValueError as e:
raise TraitError(