You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
"""Manager to read and modify frontend config data in JSON files."""
|
|
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import os.path
|
|
import typing as t
|
|
|
|
from jupyter_core.paths import jupyter_config_dir, jupyter_config_path
|
|
from traitlets import Instance, List, Unicode, default, observe
|
|
from traitlets.config import LoggingConfigurable
|
|
|
|
from jupyter_server.config_manager import BaseJSONConfigManager, recursive_update
|
|
|
|
|
|
class ConfigManager(LoggingConfigurable):
|
|
"""Config Manager used for storing frontend config"""
|
|
|
|
config_dir_name = Unicode("serverconfig", help="""Name of the config directory.""").tag(
|
|
config=True
|
|
)
|
|
|
|
# Public API
|
|
|
|
def get(self, section_name):
|
|
"""Get the config from all config sections."""
|
|
config: dict[str, t.Any] = {}
|
|
# step through back to front, to ensure front of the list is top priority
|
|
for p in self.read_config_path[::-1]:
|
|
cm = BaseJSONConfigManager(config_dir=p)
|
|
recursive_update(config, cm.get(section_name))
|
|
return config
|
|
|
|
def set(self, section_name, data):
|
|
"""Set the config only to the user's config."""
|
|
return self.write_config_manager.set(section_name, data)
|
|
|
|
def update(self, section_name, new_data):
|
|
"""Update the config only to the user's config."""
|
|
return self.write_config_manager.update(section_name, new_data)
|
|
|
|
# Private API
|
|
|
|
read_config_path = List(Unicode())
|
|
|
|
@default("read_config_path")
|
|
def _default_read_config_path(self):
|
|
return [os.path.join(p, self.config_dir_name) for p in jupyter_config_path()]
|
|
|
|
write_config_dir = Unicode()
|
|
|
|
@default("write_config_dir")
|
|
def _default_write_config_dir(self):
|
|
return os.path.join(jupyter_config_dir(), self.config_dir_name)
|
|
|
|
write_config_manager = Instance(BaseJSONConfigManager)
|
|
|
|
@default("write_config_manager")
|
|
def _default_write_config_manager(self):
|
|
return BaseJSONConfigManager(config_dir=self.write_config_dir)
|
|
|
|
@observe("write_config_dir")
|
|
def _update_write_config_dir(self, change):
|
|
self.write_config_manager = BaseJSONConfigManager(config_dir=self.write_config_dir)
|