mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 22:57:36 +03:00
warn in case no user authentication is active
This commit is contained in:
parent
c7c3119267
commit
27dfaa8663
1 changed files with 3 additions and 0 deletions
|
@ -32,6 +32,7 @@ Take a look at the class ``BaseAuth`` if you want to implement your own.
|
||||||
from typing import Sequence, Tuple, Union
|
from typing import Sequence, Tuple, Union
|
||||||
|
|
||||||
from radicale import config, types, utils
|
from radicale import config, types, utils
|
||||||
|
from radicale.log import logger
|
||||||
|
|
||||||
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
||||||
"denyall",
|
"denyall",
|
||||||
|
@ -40,6 +41,8 @@ INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
||||||
|
|
||||||
def load(configuration: "config.Configuration") -> "BaseAuth":
|
def load(configuration: "config.Configuration") -> "BaseAuth":
|
||||||
"""Load the authentication module chosen in configuration."""
|
"""Load the authentication module chosen in configuration."""
|
||||||
|
if configuration.get("auth", "type") == "none":
|
||||||
|
logger.warn("No user authentication is selected (insecure)")
|
||||||
return utils.load_plugin(INTERNAL_TYPES, "auth", "Auth", BaseAuth,
|
return utils.load_plugin(INTERNAL_TYPES, "auth", "Auth", BaseAuth,
|
||||||
configuration)
|
configuration)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue