mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 06:37:36 +03:00
Merge pull request #1554 from henning-schild/henning/staging0
hook: gracefully ignore non functional hooks and fall back to none
This commit is contained in:
commit
2d0496b888
1 changed files with 11 additions and 2 deletions
|
@ -3,14 +3,23 @@ from enum import Enum
|
||||||
from typing import Sequence
|
from typing import Sequence
|
||||||
|
|
||||||
from radicale import pathutils, utils
|
from radicale import pathutils, utils
|
||||||
|
from radicale.log import logger
|
||||||
|
|
||||||
INTERNAL_TYPES: Sequence[str] = ("none", "rabbitmq")
|
INTERNAL_TYPES: Sequence[str] = ("none", "rabbitmq")
|
||||||
|
|
||||||
|
|
||||||
def load(configuration):
|
def load(configuration):
|
||||||
"""Load the storage module chosen in configuration."""
|
"""Load the storage module chosen in configuration."""
|
||||||
return utils.load_plugin(
|
try:
|
||||||
INTERNAL_TYPES, "hook", "Hook", BaseHook, configuration)
|
return utils.load_plugin(
|
||||||
|
INTERNAL_TYPES, "hook", "Hook", BaseHook, configuration)
|
||||||
|
except Exception as e:
|
||||||
|
logger.warn(e)
|
||||||
|
logger.warn("Hook \"%s\" failed to load, falling back to \"none\"." % configuration.get("hook", "type"))
|
||||||
|
configuration = configuration.copy()
|
||||||
|
configuration.update({"hook": {"type": "none"}}, "hook", privileged=True)
|
||||||
|
return utils.load_plugin(
|
||||||
|
INTERNAL_TYPES, "hook", "Hook", BaseHook, configuration)
|
||||||
|
|
||||||
|
|
||||||
class BaseHook:
|
class BaseHook:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue