Skip to content

Commit

Permalink
fix(caldav): duration handling in the event reader class
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Steinmetz <[email protected]>
  • Loading branch information
st3iny committed Nov 12, 2024
1 parent bcb8fa8 commit 87ff49e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions apps/dav/lib/CalDAV/EventReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace OCA\DAV\CalDAV;

use DateTime;
use DateTimeImmutable;
use DateTimeInterface;
use DateTimeZone;
use InvalidArgumentException;
Expand Down Expand Up @@ -109,7 +110,7 @@ public function __construct(VCalendar|VEvent|array|string $input, ?string $uid =
unset($events[$key]);
}
}

// No base event was found. CalDAV does allow cases where only
// overridden instances are stored.
//
Expand Down Expand Up @@ -173,15 +174,17 @@ public function __construct(VCalendar|VEvent|array|string $input, ?string $uid =
// evaluate if duration exists
// extract duration and calculate end date
elseif (isset($this->baseEvent->DURATION)) {
$this->baseEventDuration = $this->baseEvent->DURATION->getDateInterval();
$this->baseEventEndDate = ((clone $this->baseEventStartDate)->add($this->baseEventDuration));
$this->baseEventEndDate = DateTimeImmutable::createFromInterface($this->baseEventStartDate)
->add($this->baseEvent->DURATION->getDateInterval());

Check notice

Code scanning / Psalm

PossiblyUndefinedMethod Note

Method Sabre\VObject\Property::getDateInterval does not exist
$this->baseEventDuration = $this->baseEventEndDate->getTimestamp() - $this->baseEventStartDate->getTimestamp();
}
// evaluate if start date is floating
// set duration to 24 hours and calculate the end date
// according to the rfc any event without a end date or duration is a complete day
elseif ($this->baseEventStartDateFloating == true) {
$this->baseEventDuration = 86400;
$this->baseEventEndDate = ((clone $this->baseEventStartDate)->add($this->baseEventDuration));
$this->baseEventEndDate = DateTimeImmutable::createFromInterface($this->baseEventStartDate)
->setTimestamp($this->baseEventStartDate->getTimestamp() + $this->baseEventDuration);
}
// otherwise, set duration to zero this should never happen
else {
Expand Down Expand Up @@ -220,7 +223,7 @@ public function __construct(VCalendar|VEvent|array|string $input, ?string $uid =
foreach ($events as $vevent) {
$this->recurrenceModified[$vevent->{'RECURRENCE-ID'}->getDateTime($this->baseEventStartTimeZone)->getTimeStamp()] = $vevent;
}

$this->recurrenceCurrentDate = clone $this->baseEventStartDate;
}

Expand Down

0 comments on commit 87ff49e

Please sign in to comment.