mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
add support for auth.type=denyall
This commit is contained in:
parent
eb577422f6
commit
5dd27d3c80
4 changed files with 40 additions and 1 deletions
2
config
2
config
|
@ -53,7 +53,7 @@
|
||||||
[auth]
|
[auth]
|
||||||
|
|
||||||
# Authentication method
|
# Authentication method
|
||||||
# Value: none | htpasswd | remote_user | http_x_remote_user
|
# Value: none | htpasswd | remote_user | http_x_remote_user | denyall
|
||||||
#type = none
|
#type = none
|
||||||
|
|
||||||
# Htpasswd filename
|
# Htpasswd filename
|
||||||
|
|
|
@ -33,6 +33,7 @@ from typing import Sequence, Tuple, Union
|
||||||
from radicale import config, types, utils
|
from radicale import config, types, utils
|
||||||
|
|
||||||
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
INTERNAL_TYPES: Sequence[str] = ("none", "remote_user", "http_x_remote_user",
|
||||||
|
"denyall",
|
||||||
"htpasswd")
|
"htpasswd")
|
||||||
|
|
||||||
|
|
||||||
|
|
30
radicale/auth/denyall.py
Normal file
30
radicale/auth/denyall.py
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# This file is part of Radicale - CalDAV and CardDAV server
|
||||||
|
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
"""
|
||||||
|
A dummy backend that denies any username and password.
|
||||||
|
|
||||||
|
Used as default for security reasons.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
from radicale import auth
|
||||||
|
|
||||||
|
|
||||||
|
class Auth(auth.BaseAuth):
|
||||||
|
|
||||||
|
def _login(self, login: str, password: str) -> str:
|
||||||
|
return ""
|
|
@ -152,3 +152,11 @@ class TestBaseAuthRequests(BaseTest):
|
||||||
"""Custom authentication."""
|
"""Custom authentication."""
|
||||||
self.configure({"auth": {"type": "radicale.tests.custom.auth"}})
|
self.configure({"auth": {"type": "radicale.tests.custom.auth"}})
|
||||||
self.propfind("/tmp/", login="tmp:")
|
self.propfind("/tmp/", login="tmp:")
|
||||||
|
|
||||||
|
def test_none(self) -> None:
|
||||||
|
self.configure({"auth": {"type": "none"}})
|
||||||
|
self.propfind("/tmp/", login="tmp:")
|
||||||
|
|
||||||
|
def test_denyall(self) -> None:
|
||||||
|
self.configure({"auth": {"type": "denyall"}})
|
||||||
|
self.propfind("/tmp/", login="tmp:", check=401)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue