mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 06:07:35 +03:00
Merge branch 'master' of https://github.com/hadleyrich/Radicale
This commit is contained in:
commit
44ba2c36a7
2 changed files with 15 additions and 10 deletions
|
@ -30,7 +30,7 @@ import xml.etree.ElementTree as ET
|
|||
from collections import OrderedDict
|
||||
from urllib.parse import unquote, urlparse
|
||||
|
||||
from . import client, config, ical, rights
|
||||
from . import client, config, ical
|
||||
|
||||
|
||||
NAMESPACES = {
|
||||
|
@ -187,7 +187,7 @@ def delete(path, collection):
|
|||
return _pretty_xml(multistatus)
|
||||
|
||||
|
||||
def propfind(path, xml_request, collections, user=None):
|
||||
def propfind(path, xml_request, read_collections, write_collections, user=None):
|
||||
"""Read and answer PROPFIND requests.
|
||||
|
||||
Read rfc4918-9.1 for info.
|
||||
|
@ -213,14 +213,21 @@ def propfind(path, xml_request, collections, user=None):
|
|||
# Writing answer
|
||||
multistatus = ET.Element(_tag("D", "multistatus"))
|
||||
|
||||
for collection in collections:
|
||||
response = _propfind_response(path, collection, props, user)
|
||||
collections = []
|
||||
for collection in write_collections:
|
||||
collections.append(collection)
|
||||
response = _propfind_response(path, collection, props, user, write=True)
|
||||
multistatus.append(response)
|
||||
for collection in read_collections:
|
||||
if collection in collections:
|
||||
continue
|
||||
response = _propfind_response(path, collection, props, user, write=False)
|
||||
multistatus.append(response)
|
||||
|
||||
return _pretty_xml(multistatus)
|
||||
|
||||
|
||||
def _propfind_response(path, item, props, user):
|
||||
def _propfind_response(path, item, props, user, write=False):
|
||||
"""Build and return a PROPFIND response."""
|
||||
is_collection = isinstance(item, ical.Collection)
|
||||
if is_collection:
|
||||
|
@ -280,13 +287,12 @@ def _propfind_response(path, item, props, user):
|
|||
element.append(tag)
|
||||
elif tag == _tag("D", "current-user-privilege-set"):
|
||||
privilege = ET.Element(_tag("D", "privilege"))
|
||||
if rights.authorized(user, item, "w"):
|
||||
if write:
|
||||
privilege.append(ET.Element(_tag("D", "all")))
|
||||
privilege.append(ET.Element(_tag("D", "read")))
|
||||
if rights.authorized(user, item, "w"):
|
||||
privilege.append(ET.Element(_tag("D", "write")))
|
||||
privilege.append(ET.Element(_tag("D", "write-properties")))
|
||||
privilege.append(ET.Element(_tag("D", "write-content")))
|
||||
privilege.append(ET.Element(_tag("D", "read")))
|
||||
element.append(privilege)
|
||||
elif tag == _tag("D", "supported-report-set"):
|
||||
for report_name in (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue