2020-08-11 11:08:10 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2020-08-11 11:08:10 -04:00
|
|
|
#
|
|
|
|
#
|
2023-09-25 11:19:08 -04:00
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Type, TypeVar
|
2020-08-11 11:08:10 -04:00
|
|
|
|
|
|
|
import jsonschema
|
2023-09-25 11:19:08 -04:00
|
|
|
|
|
|
|
from synapse._pydantic_compat import HAS_PYDANTIC_V2
|
|
|
|
|
|
|
|
if TYPE_CHECKING or HAS_PYDANTIC_V2:
|
|
|
|
from pydantic.v1 import BaseModel, ValidationError, parse_obj_as
|
|
|
|
else:
|
|
|
|
from pydantic import BaseModel, ValidationError, parse_obj_as
|
2020-08-11 11:08:10 -04:00
|
|
|
|
|
|
|
from synapse.config._base import ConfigError
|
2023-05-18 06:11:30 -04:00
|
|
|
from synapse.types import JsonDict, StrSequence
|
2020-08-11 11:08:10 -04:00
|
|
|
|
|
|
|
|
2020-10-01 06:09:12 -04:00
|
|
|
def validate_config(
|
2023-05-18 06:11:30 -04:00
|
|
|
json_schema: JsonDict, config: Any, config_path: StrSequence
|
2020-10-01 06:09:12 -04:00
|
|
|
) -> None:
|
2020-08-11 11:08:10 -04:00
|
|
|
"""Validates a config setting against a JsonSchema definition
|
|
|
|
|
|
|
|
This can be used to validate a section of the config file against a schema
|
|
|
|
definition. If the validation fails, a ConfigError is raised with a textual
|
|
|
|
description of the problem.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
json_schema: the schema to validate against
|
|
|
|
config: the configuration value to be validated
|
|
|
|
config_path: the path within the config file. This will be used as a basis
|
|
|
|
for the error message.
|
2022-12-12 19:54:46 -05:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
ConfigError, if validation fails.
|
2020-08-11 11:08:10 -04:00
|
|
|
"""
|
|
|
|
try:
|
|
|
|
jsonschema.validate(config, json_schema)
|
|
|
|
except jsonschema.ValidationError as e:
|
2020-12-08 09:04:35 -05:00
|
|
|
raise json_error_to_config_error(e, config_path)
|
|
|
|
|
|
|
|
|
|
|
|
def json_error_to_config_error(
|
2023-05-18 06:11:30 -04:00
|
|
|
e: jsonschema.ValidationError, config_path: StrSequence
|
2020-12-08 09:04:35 -05:00
|
|
|
) -> ConfigError:
|
|
|
|
"""Converts a json validation error to a user-readable ConfigError
|
|
|
|
|
|
|
|
Args:
|
|
|
|
e: the exception to be converted
|
|
|
|
config_path: the path within the config file. This will be used as a basis
|
|
|
|
for the error message.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
a ConfigError
|
|
|
|
"""
|
|
|
|
# copy `config_path` before modifying it.
|
|
|
|
path = list(config_path)
|
2021-01-08 09:23:04 -05:00
|
|
|
for p in list(e.absolute_path):
|
2020-12-08 09:04:35 -05:00
|
|
|
if isinstance(p, int):
|
|
|
|
path.append("<item %i>" % p)
|
|
|
|
else:
|
|
|
|
path.append(str(p))
|
|
|
|
return ConfigError(e.message, path)
|
2023-04-17 19:53:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
Model = TypeVar("Model", bound=BaseModel)
|
|
|
|
|
|
|
|
|
|
|
|
def parse_and_validate_mapping(
|
|
|
|
config: Any,
|
|
|
|
model_type: Type[Model],
|
|
|
|
) -> Dict[str, Model]:
|
|
|
|
"""Parse `config` as a mapping from strings to a given `Model` type.
|
|
|
|
Args:
|
|
|
|
config: The configuration data to check
|
|
|
|
model_type: The BaseModel to validate and parse against.
|
|
|
|
Returns:
|
|
|
|
Fully validated and parsed Dict[str, Model].
|
|
|
|
Raises:
|
|
|
|
ConfigError, if given improper input.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
# type-ignore: mypy doesn't like constructing `Dict[str, model_type]` because
|
|
|
|
# `model_type` is a runtime variable. Pydantic is fine with this.
|
|
|
|
instances = parse_obj_as(Dict[str, model_type], config) # type: ignore[valid-type]
|
|
|
|
except ValidationError as e:
|
|
|
|
raise ConfigError(str(e)) from e
|
|
|
|
return instances
|