mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Fix for free-busy fbtype
statuses
This commit is contained in:
parent
204623d656
commit
29b7cd8d54
5 changed files with 50 additions and 6 deletions
|
@ -53,6 +53,10 @@
|
||||||
* Dependency: limit typegard version < 3
|
* Dependency: limit typegard version < 3
|
||||||
* General: code cosmetics
|
* General: code cosmetics
|
||||||
|
|
||||||
|
## 3.2.0.a2
|
||||||
|
|
||||||
|
* Fix for free-busy `fbtype` statuses
|
||||||
|
|
||||||
## 3.2.0.a1
|
## 3.2.0.a1
|
||||||
|
|
||||||
* Added free-busy report
|
* Added free-busy report
|
||||||
|
|
|
@ -94,11 +94,11 @@ def free_busy_report(base_prefix: str, path: str, xml_request: Optional[ET.Eleme
|
||||||
|
|
||||||
fbtype = None
|
fbtype = None
|
||||||
if item.component_name == 'VEVENT':
|
if item.component_name == 'VEVENT':
|
||||||
transp = getattr(item.vobject_item, 'transp', None)
|
transp = getattr(item.vobject_item.vevent, 'transp', None)
|
||||||
if transp and transp.value != 'OPAQUE':
|
if transp and transp.value != 'OPAQUE':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
status = getattr(item.vobject_item, 'status', None)
|
status = getattr(item.vobject_item.vevent, 'status', None)
|
||||||
if not status or status.value == 'CONFIRMED':
|
if not status or status.value == 'CONFIRMED':
|
||||||
fbtype = 'BUSY'
|
fbtype = 'BUSY'
|
||||||
elif status.value == 'CANCELLED':
|
elif status.value == 'CANCELLED':
|
||||||
|
|
36
radicale/tests/static/event10.ics
Normal file
36
radicale/tests/static/event10.ics
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
BEGIN:VCALENDAR
|
||||||
|
PRODID:-//Mozilla.org/NONSGML Mozilla Calendar V1.1//EN
|
||||||
|
VERSION:2.0
|
||||||
|
BEGIN:VTIMEZONE
|
||||||
|
TZID:Europe/Paris
|
||||||
|
X-LIC-LOCATION:Europe/Paris
|
||||||
|
BEGIN:DAYLIGHT
|
||||||
|
TZOFFSETFROM:+0100
|
||||||
|
TZOFFSETTO:+0200
|
||||||
|
TZNAME:CEST
|
||||||
|
DTSTART:19700329T020000
|
||||||
|
RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3
|
||||||
|
END:DAYLIGHT
|
||||||
|
BEGIN:STANDARD
|
||||||
|
TZOFFSETFROM:+0200
|
||||||
|
TZOFFSETTO:+0100
|
||||||
|
TZNAME:CET
|
||||||
|
DTSTART:19701025T030000
|
||||||
|
RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10
|
||||||
|
END:STANDARD
|
||||||
|
END:VTIMEZONE
|
||||||
|
BEGIN:VEVENT
|
||||||
|
CREATED:20130902T150157Z
|
||||||
|
LAST-MODIFIED:20130902T150158Z
|
||||||
|
DTSTAMP:20130902T150158Z
|
||||||
|
UID:event10
|
||||||
|
SUMMARY:Event
|
||||||
|
CATEGORIES:some_category1,another_category2
|
||||||
|
ORGANIZER:mailto:unclesam@example.com
|
||||||
|
ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=TENTATIVE;CN=Jane Doe:MAILTO:janedoe@example.com
|
||||||
|
ATTENDEE;ROLE=REQ-PARTICIPANT;DELEGATED-FROM="MAILTO:bob@host.com";PARTSTAT=ACCEPTED;CN=John Doe:MAILTO:johndoe@example.com
|
||||||
|
DTSTART;TZID=Europe/Paris:20130901T180000
|
||||||
|
DTEND;TZID=Europe/Paris:20130901T190000
|
||||||
|
STATUS:CANCELLED
|
||||||
|
END:VEVENT
|
||||||
|
END:VCALENDAR
|
|
@ -1369,7 +1369,7 @@ permissions: RrWw""")
|
||||||
"""Test free busy report on a few items"""
|
"""Test free busy report on a few items"""
|
||||||
calendar_path = "/calendar.ics/"
|
calendar_path = "/calendar.ics/"
|
||||||
self.mkcalendar(calendar_path)
|
self.mkcalendar(calendar_path)
|
||||||
for i in (1,2):
|
for i in (1,2,10):
|
||||||
filename = "event{}.ics".format(i)
|
filename = "event{}.ics".format(i)
|
||||||
event = get_file_content(filename)
|
event = get_file_content(filename)
|
||||||
self.put(posixpath.join(calendar_path, filename), event)
|
self.put(posixpath.join(calendar_path, filename), event)
|
||||||
|
@ -1382,9 +1382,13 @@ permissions: RrWw""")
|
||||||
assert isinstance(response, vobject.base.Component)
|
assert isinstance(response, vobject.base.Component)
|
||||||
assert len(responses) == 1
|
assert len(responses) == 1
|
||||||
vcalendar = list(responses.values())[0]
|
vcalendar = list(responses.values())[0]
|
||||||
assert len(vcalendar.vfreebusy_list) == 2
|
assert len(vcalendar.vfreebusy_list) == 3
|
||||||
|
types = {}
|
||||||
for vfb in vcalendar.vfreebusy_list:
|
for vfb in vcalendar.vfreebusy_list:
|
||||||
assert vfb.fbtype.value == 'BUSY'
|
if vfb.fbtype.value not in types:
|
||||||
|
types[vfb.fbtype.value] = 0
|
||||||
|
types[vfb.fbtype.value] += 1
|
||||||
|
assert types == {'BUSY':2, 'FREE':1}
|
||||||
|
|
||||||
def _report_sync_token(
|
def _report_sync_token(
|
||||||
self, calendar_path: str, sync_token: Optional[str] = None
|
self, calendar_path: str, sync_token: Optional[str] = None
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -19,7 +19,7 @@ from setuptools import find_packages, setup
|
||||||
|
|
||||||
# When the version is updated, a new section in the CHANGELOG.md file must be
|
# When the version is updated, a new section in the CHANGELOG.md file must be
|
||||||
# added too.
|
# added too.
|
||||||
VERSION = "3.2.0.a1"
|
VERSION = "3.2.0.a2"
|
||||||
|
|
||||||
with open("README.md", encoding="utf-8") as f:
|
with open("README.md", encoding="utf-8") as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue