mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
add support for dedicated forbid/permit permission
This commit is contained in:
parent
72e4c4fadd
commit
53bc6167d3
1 changed files with 15 additions and 11 deletions
|
@ -73,18 +73,22 @@ class ApplicationPartDelete(ApplicationBase):
|
||||||
hook_notification_item_list = []
|
hook_notification_item_list = []
|
||||||
if isinstance(item, storage.BaseCollection):
|
if isinstance(item, storage.BaseCollection):
|
||||||
if self._permit_delete_collection:
|
if self._permit_delete_collection:
|
||||||
for i in item.get_all():
|
if access.check("d", item):
|
||||||
hook_notification_item_list.append(
|
logger.info("delete of collection is permitted by config/option [rights] permit_delete_collection but explicit forbidden by permission 'd': %s", path)
|
||||||
HookNotificationItem(
|
return httputils.NOT_ALLOWED
|
||||||
HookNotificationItemTypes.DELETE,
|
|
||||||
access.path,
|
|
||||||
i.uid
|
|
||||||
)
|
|
||||||
)
|
|
||||||
xml_answer = xml_delete(base_prefix, path, item)
|
|
||||||
else:
|
else:
|
||||||
logger.info("delete of collection is prevented by config/option [rights] permit_delete_collection: %s", path)
|
if not access.check("D", item):
|
||||||
return httputils.NOT_ALLOWED
|
logger.info("delete of collection is prevented by config/option [rights] permit_delete_collection and not explicit allowed by permission 'D': %s", path)
|
||||||
|
return httputils.NOT_ALLOWED
|
||||||
|
for i in item.get_all():
|
||||||
|
hook_notification_item_list.append(
|
||||||
|
HookNotificationItem(
|
||||||
|
HookNotificationItemTypes.DELETE,
|
||||||
|
access.path,
|
||||||
|
i.uid
|
||||||
|
)
|
||||||
|
)
|
||||||
|
xml_answer = xml_delete(base_prefix, path, item)
|
||||||
else:
|
else:
|
||||||
assert item.collection is not None
|
assert item.collection is not None
|
||||||
assert item.href is not None
|
assert item.href is not None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue