2019-03-23 12:06:57 +01:00
|
|
|
import asyncio
|
2019-01-06 16:22:33 +01:00
|
|
|
from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
from asgiref.sync import async_to_sync
|
2018-09-10 08:15:31 +02:00
|
|
|
from django.apps import apps
|
2015-06-17 18:32:05 +02:00
|
|
|
from django.core.exceptions import ValidationError as DjangoValidationError
|
2017-08-22 14:17:20 +02:00
|
|
|
from mypy_extensions import TypedDict
|
2015-06-17 18:32:05 +02:00
|
|
|
|
2019-03-06 14:53:24 +01:00
|
|
|
from ..utils.cache import element_cache
|
2013-03-01 17:13:12 +01:00
|
|
|
from .exceptions import ConfigError, ConfigNotFound
|
2013-09-25 10:01:01 +02:00
|
|
|
from .models import ConfigStore
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
INPUT_TYPE_MAPPING = {
|
2019-01-06 16:22:33 +01:00
|
|
|
"string": str,
|
|
|
|
"text": str,
|
|
|
|
"markupText": str,
|
|
|
|
"integer": int,
|
|
|
|
"boolean": bool,
|
|
|
|
"choice": str,
|
|
|
|
"colorpicker": str,
|
|
|
|
"datetimepicker": int,
|
|
|
|
"static": dict,
|
|
|
|
"translations": list,
|
2016-10-15 18:16:22 +02:00
|
|
|
}
|
2015-06-17 18:32:05 +02:00
|
|
|
|
2019-03-23 12:06:57 +01:00
|
|
|
build_key_to_id_lock = asyncio.Lock()
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
class ConfigHandler:
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2015-06-17 18:32:05 +02:00
|
|
|
A simple object class to wrap the config variables. It is a container
|
2013-03-01 17:13:12 +01:00
|
|
|
object. To get a config variable use x = config[...], to set it use
|
|
|
|
config[...] = x.
|
|
|
|
"""
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
def __init__(self) -> None:
|
2016-06-02 12:47:01 +02:00
|
|
|
# Dict, that keeps all ConfigVariable objects. Has to be set at statup.
|
2017-08-22 14:17:20 +02:00
|
|
|
# See the ready() method in openslides.core.apps.
|
2018-08-22 22:00:08 +02:00
|
|
|
self.config_variables: Dict[str, ConfigVariable] = {}
|
2017-08-22 14:17:20 +02:00
|
|
|
|
|
|
|
# Index to get the database id from a given config key
|
2018-08-22 22:00:08 +02:00
|
|
|
self.key_to_id: Optional[Dict[str, int]] = None
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
def __getitem__(self, key: str) -> Any:
|
2015-06-17 18:32:05 +02:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
Returns the value of the config variable.
|
2015-06-17 18:32:05 +02:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
if not self.exists(key):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigNotFound(f"The config variable {key} was not found.")
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
return async_to_sync(element_cache.get_element_full_data)(
|
|
|
|
self.get_collection_string(), self.get_key_to_id()[key]
|
|
|
|
)["value"]
|
2018-07-09 23:22:26 +02:00
|
|
|
|
|
|
|
def get_key_to_id(self) -> Dict[str, int]:
|
|
|
|
"""
|
|
|
|
Returns the key_to_id dict. Builds it, if it does not exist.
|
|
|
|
"""
|
|
|
|
if self.key_to_id is None:
|
|
|
|
async_to_sync(self.build_key_to_id)()
|
|
|
|
self.key_to_id = cast(Dict[str, int], self.key_to_id)
|
|
|
|
return self.key_to_id
|
|
|
|
|
2019-03-23 12:06:57 +01:00
|
|
|
async def async_get_key_to_id(self) -> Dict[str, int]:
|
|
|
|
"""
|
|
|
|
Like get_key_to_id but in an async context.
|
|
|
|
"""
|
|
|
|
if self.key_to_id is None:
|
|
|
|
await self.build_key_to_id()
|
|
|
|
self.key_to_id = cast(Dict[str, int], self.key_to_id)
|
|
|
|
return self.key_to_id
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
async def build_key_to_id(self) -> None:
|
|
|
|
"""
|
|
|
|
Build the key_to_id dict.
|
|
|
|
|
|
|
|
Recreates it, if it does not exists.
|
|
|
|
|
|
|
|
This uses the element_cache. It expects, that the config values are in the database
|
|
|
|
before this is called.
|
|
|
|
"""
|
2019-03-23 12:06:57 +01:00
|
|
|
async with build_key_to_id_lock:
|
|
|
|
# Another cliend could have build the key_to_id_dict, check and return early
|
|
|
|
if self.key_to_id is not None:
|
|
|
|
return
|
|
|
|
|
2019-03-29 20:54:56 +01:00
|
|
|
config_full_data = await element_cache.get_collection_full_data(
|
|
|
|
self.get_collection_string()
|
|
|
|
)
|
|
|
|
elements = config_full_data.values()
|
2019-03-09 18:55:58 +01:00
|
|
|
self.key_to_id = {}
|
2018-07-09 23:22:26 +02:00
|
|
|
for element in elements:
|
2019-01-06 16:22:33 +01:00
|
|
|
self.key_to_id[element["key"]] = element["id"]
|
2015-06-17 18:32:05 +02:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
def exists(self, key: str) -> bool:
|
2016-06-02 12:47:01 +02:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
Returns True, if the config varialbe was defined.
|
2016-06-02 12:47:01 +02:00
|
|
|
"""
|
2015-06-17 18:32:05 +02:00
|
|
|
try:
|
2016-06-02 12:47:01 +02:00
|
|
|
self.config_variables[key]
|
|
|
|
except KeyError:
|
2015-06-17 18:32:05 +02:00
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
# TODO: Remove the any by using right types in INPUT_TYPE_MAPPING
|
|
|
|
def __setitem__(self, key: str, value: Any) -> None:
|
2015-06-17 18:32:05 +02:00
|
|
|
"""
|
|
|
|
Sets the new value. First it validates the input.
|
|
|
|
"""
|
2015-06-16 14:03:42 +02:00
|
|
|
# Check if the variable is defined.
|
2015-06-17 18:32:05 +02:00
|
|
|
try:
|
2016-06-02 12:47:01 +02:00
|
|
|
config_variable = self.config_variables[key]
|
2015-06-17 18:32:05 +02:00
|
|
|
except KeyError:
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigNotFound(f"The config variable {key} was not found.")
|
2015-06-17 18:32:05 +02:00
|
|
|
|
|
|
|
# Validate datatype and run validators.
|
|
|
|
expected_type = INPUT_TYPE_MAPPING[config_variable.input_type]
|
2015-06-29 14:17:05 +02:00
|
|
|
|
|
|
|
# Try to convert value into the expected datatype
|
|
|
|
try:
|
|
|
|
value = expected_type(value)
|
|
|
|
except ValueError:
|
2019-01-06 16:22:33 +01:00
|
|
|
raise ConfigError(
|
2019-01-12 23:01:42 +01:00
|
|
|
f"Wrong datatype. Expected {expected_type}, got {type(value)}."
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
if config_variable.input_type == "choice":
|
2016-06-02 12:47:01 +02:00
|
|
|
# Choices can be a callable. In this case call it at this place
|
|
|
|
if callable(config_variable.choices):
|
|
|
|
choices = config_variable.choices()
|
|
|
|
else:
|
|
|
|
choices = config_variable.choices
|
2019-01-06 16:22:33 +01:00
|
|
|
if choices is None or value not in map(
|
|
|
|
lambda choice: choice["value"], choices
|
|
|
|
):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError("Invalid input. Choice does not match.")
|
2017-08-22 14:17:20 +02:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
for validator in config_variable.validators:
|
|
|
|
try:
|
|
|
|
validator(value)
|
2019-01-12 23:01:42 +01:00
|
|
|
except DjangoValidationError as err:
|
|
|
|
raise ConfigError(err.messages[0])
|
2015-06-16 14:03:42 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
if config_variable.input_type == "static":
|
2017-03-31 13:48:41 +02:00
|
|
|
if not isinstance(value, dict):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError("This has to be a dict.")
|
2019-01-06 16:22:33 +01:00
|
|
|
whitelist = ("path", "display_name")
|
2017-03-31 13:48:41 +02:00
|
|
|
for required_entry in whitelist:
|
|
|
|
if required_entry not in value:
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError(f"{required_entry} has to be given.")
|
2017-03-31 13:48:41 +02:00
|
|
|
if not isinstance(value[required_entry], str):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError(f"{required_entry} has to be a string.")
|
2017-03-31 13:48:41 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
if config_variable.input_type == "translations":
|
2017-08-30 12:17:07 +02:00
|
|
|
if not isinstance(value, list):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError("Translations has to be a list.")
|
2017-08-30 12:17:07 +02:00
|
|
|
for entry in value:
|
|
|
|
if not isinstance(entry, dict):
|
2019-01-06 16:22:33 +01:00
|
|
|
raise ConfigError(
|
2019-01-12 23:01:42 +01:00
|
|
|
f"Every value has to be a dict, not {type(entry)}."
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
|
|
|
whitelist = ("original", "translation")
|
2017-08-30 12:17:07 +02:00
|
|
|
for required_entry in whitelist:
|
|
|
|
if required_entry not in entry:
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError(f"{required_entry} has to be given.")
|
2017-08-30 12:17:07 +02:00
|
|
|
if not isinstance(entry[required_entry], str):
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ConfigError(f"{required_entry} has to be a string.")
|
2017-08-30 12:17:07 +02:00
|
|
|
|
2015-06-16 14:03:42 +02:00
|
|
|
# Save the new value to the database.
|
2017-08-22 14:17:20 +02:00
|
|
|
db_value = ConfigStore.objects.get(key=key)
|
2016-10-01 12:58:49 +02:00
|
|
|
db_value.value = value
|
2018-08-22 07:59:22 +02:00
|
|
|
db_value.save()
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-16 14:03:42 +02:00
|
|
|
# Call on_change callback.
|
2015-06-17 18:32:05 +02:00
|
|
|
if config_variable.on_change:
|
|
|
|
config_variable.on_change()
|
2013-09-08 10:26:51 +02:00
|
|
|
|
2018-09-10 08:15:31 +02:00
|
|
|
def collect_config_variables_from_apps(self) -> None:
|
|
|
|
for app in apps.get_app_configs():
|
|
|
|
try:
|
|
|
|
# Each app can deliver config variables when implementing the
|
|
|
|
# get_config_variables method.
|
|
|
|
get_config_variables = app.get_config_variables
|
|
|
|
except AttributeError:
|
|
|
|
# The app doesn't have this method. Continue to next app.
|
|
|
|
continue
|
|
|
|
self.update_config_variables(get_config_variables())
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
def update_config_variables(self, items: Iterable["ConfigVariable"]) -> None:
|
2015-01-24 16:35:50 +01:00
|
|
|
"""
|
2016-06-02 12:47:01 +02:00
|
|
|
Updates the config_variables dict.
|
2015-01-24 16:35:50 +01:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
# build an index from variable name to the variable
|
|
|
|
item_index = dict((variable.name, variable) for variable in items)
|
|
|
|
|
2016-06-02 12:47:01 +02:00
|
|
|
# Check that all ConfigVariables are unique. So no key from items can
|
|
|
|
# be in already in self.config_variables
|
2017-08-22 14:17:20 +02:00
|
|
|
intersection = set(item_index.keys()).intersection(self.config_variables.keys())
|
|
|
|
if intersection:
|
2019-01-06 16:22:33 +01:00
|
|
|
raise ConfigError(
|
2019-01-12 23:01:42 +01:00
|
|
|
f"Too many values for config variables {intersection} found."
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2015-01-24 16:35:50 +01:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
self.config_variables.update(item_index)
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
def save_default_values(self) -> None:
|
2015-06-16 14:03:42 +02:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
Saves the default values to the database.
|
2016-06-02 12:47:01 +02:00
|
|
|
|
2017-08-22 14:17:20 +02:00
|
|
|
Does also build the dictonary key_to_id.
|
2014-01-31 01:54:41 +01:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
self.key_to_id = {}
|
|
|
|
for item in self.config_variables.values():
|
|
|
|
try:
|
|
|
|
db_value = ConfigStore.objects.get(key=item.name)
|
|
|
|
except ConfigStore.DoesNotExist:
|
|
|
|
db_value = ConfigStore()
|
|
|
|
db_value.key = item.name
|
|
|
|
db_value.value = item.default_value
|
|
|
|
db_value.save(skip_autoupdate=True)
|
|
|
|
self.key_to_id[db_value.key] = db_value.id
|
2017-08-22 14:17:20 +02:00
|
|
|
|
|
|
|
def get_collection_string(self) -> str:
|
2016-09-17 22:26:23 +02:00
|
|
|
"""
|
|
|
|
Returns the collection_string from the CollectionStore.
|
|
|
|
"""
|
|
|
|
return ConfigStore.get_collection_string()
|
|
|
|
|
2016-11-09 22:18:44 +01:00
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
config = ConfigHandler()
|
|
|
|
"""
|
|
|
|
Final entry point to get an set config variables. To get a config variable
|
|
|
|
use x = config[...], to set it use config[...] = x.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
T = TypeVar("T")
|
2017-08-24 12:26:55 +02:00
|
|
|
ChoiceType = Optional[Iterable[Dict[str, str]]]
|
2017-08-22 14:17:20 +02:00
|
|
|
ChoiceCallableType = Union[ChoiceType, Callable[[], ChoiceType]]
|
2017-08-24 12:26:55 +02:00
|
|
|
ValidatorsType = Iterable[Callable[[T], None]]
|
2017-08-22 14:17:20 +02:00
|
|
|
OnChangeType = Callable[[], None]
|
2019-01-06 16:22:33 +01:00
|
|
|
ConfigVariableDict = TypedDict(
|
|
|
|
"ConfigVariableDict",
|
|
|
|
{
|
|
|
|
"key": str,
|
|
|
|
"default_value": Any,
|
|
|
|
"input_type": str,
|
|
|
|
"label": str,
|
|
|
|
"help_text": str,
|
|
|
|
"choices": ChoiceType,
|
|
|
|
},
|
|
|
|
)
|
2017-08-22 14:17:20 +02:00
|
|
|
|
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
class ConfigVariable:
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2015-06-17 18:32:05 +02:00
|
|
|
A simple object class to wrap new config variables.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
The keyword arguments 'name' and 'default_value' are required.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2016-02-14 21:38:26 +01:00
|
|
|
The keyword arguments 'input_type', 'label', 'help_text' and 'hidden'
|
|
|
|
are for rendering a HTML form element. The 'input_type is also used for
|
|
|
|
validation. If you set 'input_type' to 'choice' you have to provide
|
|
|
|
'choices', which is a list of dictionaries containing a value and a
|
|
|
|
display_name of every possible choice.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
The keyword arguments 'weight', 'group' and 'subgroup' are for sorting
|
|
|
|
and grouping.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
The keyword argument validators expects an interable of validator
|
|
|
|
functions. Such a function gets the value and raises Django's
|
|
|
|
ValidationError if the value is invalid.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
The keyword argument 'on_change' can be a callback which is called
|
|
|
|
every time, the variable is changed.
|
2013-03-01 17:13:12 +01:00
|
|
|
|
2015-06-17 18:32:05 +02:00
|
|
|
If the argument 'translatable' is set, OpenSlides is able to translate
|
|
|
|
the value during setup of the database if the admin uses the respective
|
|
|
|
command line option.
|
2013-03-01 17:13:12 +01:00
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
name: str,
|
|
|
|
default_value: T,
|
|
|
|
input_type: str = "string",
|
|
|
|
label: str = None,
|
|
|
|
help_text: str = None,
|
|
|
|
choices: ChoiceCallableType = None,
|
|
|
|
hidden: bool = False,
|
|
|
|
weight: int = 0,
|
|
|
|
group: str = None,
|
|
|
|
subgroup: str = None,
|
|
|
|
validators: ValidatorsType = None,
|
|
|
|
on_change: OnChangeType = None,
|
|
|
|
) -> None:
|
2015-06-17 18:32:05 +02:00
|
|
|
if input_type not in INPUT_TYPE_MAPPING:
|
2019-01-12 23:01:42 +01:00
|
|
|
raise ValueError("Invalid value for config attribute input_type.")
|
2019-01-06 16:22:33 +01:00
|
|
|
if input_type == "choice" and choices is None:
|
|
|
|
raise ConfigError(
|
2019-01-12 23:01:42 +01:00
|
|
|
"Either config attribute 'choices' must not be None or "
|
|
|
|
"'input_type' must not be 'choice'."
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
|
|
|
elif input_type != "choice" and choices is not None:
|
|
|
|
raise ConfigError(
|
2019-01-12 23:01:42 +01:00
|
|
|
"Either config attribute 'choices' must be None or "
|
|
|
|
"'input_type' must be 'choice'."
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2013-03-01 17:13:12 +01:00
|
|
|
self.name = name
|
|
|
|
self.default_value = default_value
|
2015-06-17 18:32:05 +02:00
|
|
|
self.input_type = input_type
|
|
|
|
self.label = label or name
|
2019-01-06 16:22:33 +01:00
|
|
|
self.help_text = help_text or ""
|
2015-06-17 18:32:05 +02:00
|
|
|
self.choices = choices
|
2016-02-14 21:38:26 +01:00
|
|
|
self.hidden = hidden
|
2015-06-17 18:32:05 +02:00
|
|
|
self.weight = weight
|
2019-01-12 23:01:42 +01:00
|
|
|
self.group = group or "General"
|
2015-06-17 18:32:05 +02:00
|
|
|
self.subgroup = subgroup
|
|
|
|
self.validators = validators or ()
|
2013-09-08 10:26:51 +02:00
|
|
|
self.on_change = on_change
|
2015-06-17 18:32:05 +02:00
|
|
|
|
|
|
|
@property
|
2017-08-22 14:17:20 +02:00
|
|
|
def data(self) -> ConfigVariableDict:
|
2015-06-17 18:32:05 +02:00
|
|
|
"""
|
2018-01-20 15:58:36 +01:00
|
|
|
Property with all data for AngularJS variable on startup.
|
2015-06-17 18:32:05 +02:00
|
|
|
"""
|
2017-08-22 14:17:20 +02:00
|
|
|
return ConfigVariableDict(
|
|
|
|
key=self.name,
|
|
|
|
default_value=self.default_value,
|
|
|
|
input_type=self.input_type,
|
|
|
|
label=self.label,
|
|
|
|
help_text=self.help_text,
|
2019-01-06 16:22:33 +01:00
|
|
|
choices=self.choices() if callable(self.choices) else self.choices,
|
2017-08-22 14:17:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def is_hidden(self) -> bool:
|
2016-02-14 21:38:26 +01:00
|
|
|
"""
|
|
|
|
Returns True if the config variable is hidden so it can be removed
|
|
|
|
from response of OPTIONS request.
|
|
|
|
"""
|
|
|
|
return self.hidden
|