mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Allow callable in configuration for plugin.type
Example: ```python3 \# Load default configuration my_config = config.load() \# Pass a class directly my_config.update({"auth": {"type": MyAuth}}) \# Pass an object directly my_rights = MyRights() my_config.update({"rights": {"type": lambda config: my_rights}}) app = Application(my_config) ````
This commit is contained in:
parent
72f8b29190
commit
9c622b57d5
3 changed files with 20 additions and 4 deletions
|
@ -23,6 +23,9 @@ from radicale.log import logger
|
|||
|
||||
def load_plugin(internal_types, module_name, class_name, configuration):
|
||||
type_ = configuration.get(module_name, "type")
|
||||
if callable(type_):
|
||||
logger.info("%s type is %r", module_name, type_)
|
||||
return type_(configuration)
|
||||
if type_ in internal_types:
|
||||
module = "radicale.%s.%s" % (module_name, type_)
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue