forked from jupyterlab/jupyterlab-module-federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_handler.py
371 lines (292 loc) · 12.3 KB
/
settings_handler.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
"""Tornado handlers for frontend config storage."""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import json
import os
from glob import glob
import json5
from jsonschema import ValidationError
from jsonschema import Draft4Validator as Validator
from tornado import web
from jupyterlab_server.server import APIHandler, json_errors
# The JupyterLab settings file extension.
SETTINGS_EXTENSION = '.jupyterlab-settings'
def _get_schema(schemas_dir, schema_name, overrides, labextensions_path):
"""Returns a dict containing a parsed and validated JSON schema."""
notfound_error = 'Schema not found: %s'
parse_error = 'Failed parsing schema (%s): %s'
validation_error = 'Failed validating schema (%s): %s'
path = None
# Look for the setting in all of the labextension paths first
# Use the first one
if labextensions_path is not None:
ext_name, _, plugin_name = schema_name.partition(':')
for ext_path in labextensions_path:
target = os.path.join(ext_path, ext_name, 'schemas', ext_name, plugin_name + '.json')
if os.path.exists(target):
schemas_dir = os.path.join(ext_path, ext_name, 'schemas')
path = target
break
# Fall back on the default location
if path is None:
path = _path(schemas_dir, schema_name)
if not os.path.exists(path):
raise web.HTTPError(404, notfound_error % path)
with open(path) as fid:
# Attempt to load the schema file.
try:
schema = json.load(fid)
except Exception as e:
name = schema_name
raise web.HTTPError(500, parse_error % (name, str(e)))
schema = _override(schema_name, schema, overrides)
# Validate the schema.
try:
Validator.check_schema(schema)
except Exception as e:
name = schema_name
raise web.HTTPError(500, validation_error % (name, str(e)))
version = _get_version(schemas_dir, schema_name)
return schema, version
def _get_user_settings(settings_dir, schema_name, schema):
"""
Returns a dictionary containing the raw user settings, the parsed user
settings, a validation warning for a schema, and file times.
"""
path = _path(settings_dir, schema_name, False, SETTINGS_EXTENSION)
raw = '{}'
settings = {}
warning = ''
validation_warning = 'Failed validating settings (%s): %s'
parse_error = 'Failed loading settings (%s): %s'
last_modified = None
created = None
if os.path.exists(path):
stat = os.stat(path)
with open(path) as fid:
try: # to load and parse the settings file.
raw = fid.read() or raw
settings = json5.loads(raw)
except Exception as e:
raise web.HTTPError(500, parse_error % (schema_name, str(e)))
# Validate the parsed data against the schema.
if len(settings):
validator = Validator(schema)
try:
validator.validate(settings)
except ValidationError as e:
warning = validation_warning % (schema_name, str(e))
raw = '{}'
return dict(
raw=raw,
settings=settings,
warning=warning
)
def _get_version(schemas_dir, schema_name):
"""Returns the package version for a given schema or 'N/A' if not found."""
path = _path(schemas_dir, schema_name)
package_path = os.path.join(os.path.split(path)[0], 'package.json.orig')
try: # to load and parse the package.json.orig file.
with open(package_path) as fid:
package = json.load(fid)
return package['version']
except Exception:
return 'N/A'
def _list_settings(schemas_dir, settings_dir, overrides, extension='.json', labextensions_path=None):
"""
Returns a tuple containing:
- the list of plugins, schemas, and their settings,
respecting any defaults that may have been overridden.
- the list of warnings that were generated when
validating the user overrides against the schemas.
"""
settings = {}
dynamic_settings = {}
warnings = []
if not os.path.exists(schemas_dir):
return (settings_list, warnings)
schema_pattern = schemas_dir + '/**/*' + extension
schema_paths = [path for path in glob(schema_pattern, recursive=True)]
schema_paths.sort()
for schema_path in schema_paths:
# Generate the schema_name used to request individual settings.
rel_path = os.path.relpath(schema_path, schemas_dir)
rel_schema_dir, schema_base = os.path.split(rel_path)
id = schema_name = ':'.join([
rel_schema_dir,
schema_base[:-len(extension)] # Remove file extension.
]).replace('\\', '/') # Normalize slashes.
schema, version = _get_schema(schemas_dir, schema_name, overrides, None)
user_settings = _get_user_settings(settings_dir, schema_name, schema)
if 'warning' in user_settings:
warnings.append(user_settings.pop('warning'))
# Add the plugin to the list of settings.
settings[id] = dict(
id=id,
version=version,
**user_settings
)
if labextensions_path is not None:
schema_paths = []
for ext_dir in labextensions_path:
schema_pattern = ext_dir + '/**/schemas/**/*' + extension
schema_paths.extend([path for path in glob(schema_pattern, recursive=True)])
schema_paths.sort()
for schema_path in schema_paths:
schema_path = schema_path.replace(os.sep, '/')
base_dir, rel_path = schema_path.split('schemas/')
# Generate the schema_name used to request individual settings.
rel_schema_dir, schema_base = os.path.split(rel_path)
id = schema_name = ':'.join([
rel_schema_dir,
schema_base[:-len(extension)] # Remove file extension.
]).replace('\\', '/') # Normalize slashes.
# bail if we've already handled the highest dynamic setting
if id in dynamic_settings:
continue
schema, version = _get_schema(schemas_dir, schema_name, overrides, labextensions_path=labextensions_path)
user_settings = _get_user_settings(settings_dir, schema_name, schema)
if 'warning' in user_settings:
warnings.append(user_settings.pop('warning'))
# Add the plugin to the list of settings.
dynamic_settings[id] = dict(
id=id,
version=version,
**user_settings
)
settings.update(dynamic_settings)
settings_list = [settings[key] for key in sorted(settings.keys(), reverse=True)]
return (settings_list, warnings)
def _override(schema_name, schema, overrides):
"""Override default values in the schema if necessary."""
if schema_name in overrides:
defaults = overrides[schema_name]
for key in defaults:
if key in schema['properties']:
schema['properties'][key]['default'] = defaults[key]
else:
schema['properties'][key] = dict(default=defaults[key])
return schema
def _path(root_dir, schema_name, make_dirs=False, extension='.json'):
"""
Returns the local file system path for a schema name in the given root
directory. This function can be used to filed user overrides in addition to
schema files. If the `make_dirs` flag is set to `True` it will create the
parent directory for the calculated path if it does not exist.
"""
parent_dir = root_dir
notfound_error = 'Settings not found (%s)'
write_error = 'Failed writing settings (%s): %s'
try: # to parse path, e.g. @jupyterlab/apputils-extension:themes.
package_dir, plugin = schema_name.split(':')
parent_dir = os.path.join(root_dir, package_dir)
path = os.path.join(parent_dir, plugin + extension)
except Exception:
raise web.HTTPError(404, notfound_error % schema_name)
if make_dirs and not os.path.exists(parent_dir):
try:
os.makedirs(parent_dir)
except Exception as e:
raise web.HTTPError(500, write_error % (schema_name, str(e)))
return path
def _get_overrides(app_settings_dir):
"""Get overrides settings from `app_settings_dir`."""
overrides, error = {}, ""
overrides_path = os.path.join(app_settings_dir, 'overrides.json')
if os.path.exists(overrides_path):
with open(overrides_path) as fid:
try:
overrides = json.load(fid)
except Exception as e:
error = e
return overrides, error
def get_settings(app_settings_dir, schemas_dir, settings_dir, schema_name="", overrides=None, labextensions_path=None):
"""
Get setttings.
Parameters
----------
app_settings_dir:
Path to applications settings.
schemas_dir: str
Path to schemas.
settings_dir:
Path to settings.
schema_name str, optional
Schema name. Default is "".
overrides: dict, optional
Settings overrides. If not provided, the overrides will be loaded
from the `app_settings_dir`. Default is None.
labextensions_path: list, optional
List of paths to dynamic labextensions containing their own schema files.
Returns
-------
tuple
The first item is a dictionary with a list of setting if no `schema_name`
was provided, otherwise it is a dictionary with id, raw, scheme, settings
and version keys. The second item is a list of warnings.
"""
result = {}
warnings = []
if overrides is None:
overrides, _error = _get_overrides(app_settings_dir)
if schema_name:
schema, version = _get_schema(schemas_dir, schema_name, overrides, labextensions_path)
user_settings = _get_user_settings(settings_dir, schema_name, schema)
warnings = [user_settings.pop('warning', None)]
result = {
"id": schema_name,
"schema": schema,
"version": version,
**user_settings
}
else:
settings_list, warnings = _list_settings(schemas_dir, settings_dir, overrides, labextensions_path=labextensions_path)
result = {
"settings": settings_list,
}
return result, warnings
class SettingsHandler(APIHandler):
def initialize(self, app_settings_dir, schemas_dir, settings_dir, labextensions_path):
self.overrides, error = _get_overrides(app_settings_dir)
self.app_settings_dir = app_settings_dir
self.schemas_dir = schemas_dir
self.settings_dir = settings_dir
self.labextensions_path = labextensions_path
if error:
overrides_warning = 'Failed loading overrides: %s'
self.log.warn(overrides_warning % str(error))
@web.authenticated
def get(self, schema_name=""):
result, warnings = get_settings(
self.app_settings_dir,
self.schemas_dir,
self.settings_dir,
labextensions_path=self.labextensions_path,
schema_name=schema_name,
overrides=self.overrides,
)
if warnings:
self.log.warn('\n'.join(warnings))
return self.finish(json.dumps(result))
@web.authenticated
def put(self, schema_name):
overrides = self.overrides
schemas_dir = self.schemas_dir
settings_dir = self.settings_dir
settings_error = 'No current settings directory'
validation_error = 'Failed validating input: %s'
if not settings_dir:
raise web.HTTPError(500, settings_error)
raw = self.request.body.strip().decode(u'utf-8')
# Validate the data against the schema.
schema, _ = _get_schema(schemas_dir, schema_name, overrides, labextensions_path=self.labextensions_path)
validator = Validator(schema)
try:
validator.validate(json5.loads(raw))
except ValidationError as e:
raise web.HTTPError(400, validation_error % str(e))
# Write the raw data (comments included) to a file.
path = _path(settings_dir, schema_name, True, SETTINGS_EXTENSION)
with open(path, 'w') as fid:
fid.write(raw)
self.set_status(204)