aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/TimezoneService.php
blob: a7709bde0f9e4bd5e6836b76138ae34eb243053f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace OCA\DAV\CalDAV;

use OCA\DAV\Db\PropertyMapper;
use OCP\Calendar\ICalendar;
use OCP\Calendar\IManager;
use OCP\IConfig;
use Sabre\VObject\Component\VCalendar;
use Sabre\VObject\Component\VTimeZone;
use Sabre\VObject\Reader;
use function array_reduce;

class TimezoneService {

	public function __construct(
		private IConfig $config,
		private PropertyMapper $propertyMapper,
		private IManager $calendarManager,
	) {
	}

	public function getUserTimezone(string $userId): ?string {
		$fromConfig = $this->config->getUserValue(
			$userId,
			'core',
			'timezone',
		);
		if ($fromConfig !== '') {
			return $fromConfig;
		}

		$availabilityPropPath = 'calendars/' . $userId . '/inbox';
		$availabilityProp = '{' . Plugin::NS_CALDAV . '}calendar-availability';
		$availabilities = $this->propertyMapper->findPropertyByPathAndName($userId, $availabilityPropPath, $availabilityProp);
		if (!empty($availabilities)) {
			$availability = $availabilities[0]->getPropertyvalue();
			/** @var VCalendar $vCalendar */
			$vCalendar = Reader::read($availability);
			/** @var VTimeZone $vTimezone */
			$vTimezone = $vCalendar->VTIMEZONE;
			// Sabre has a fallback to date_default_timezone_get
			return $vTimezone->getTimeZone()->getName();
		}

		$principal = 'principals/users/' . $userId;
		$uri = $this->config->getUserValue($userId, 'dav', 'defaultCalendar', CalDavBackend::PERSONAL_CALENDAR_URI);
		$calendars = $this->calendarManager->getCalendarsForPrincipal($principal);

		/** @var ?VTimeZone $personalCalendarTimezone */
		$personalCalendarTimezone = array_reduce($calendars, function (?VTimeZone $acc, ICalendar $calendar) use ($uri) {
			if ($acc !== null) {
				return $acc;
			}
			if ($calendar->getUri() === $uri && !$calendar->isDeleted() && $calendar instanceof CalendarImpl) {
				return $calendar->getSchedulingTimezone();
			}
			return null;
		});
		if ($personalCalendarTimezone !== null) {
			return $personalCalendarTimezone->getTimeZone()->getName();
		}

		// No timezone in the personalCalendarTimezone calendar or no personalCalendarTimezone calendar
		// Loop through all calendars until we find a timezone.
		/** @var ?VTimeZone $firstTimezone */
		$firstTimezone = array_reduce($calendars, function (?VTimeZone $acc, ICalendar $calendar) {
			if ($acc !== null) {
				return $acc;
			}
			if (!$calendar->isDeleted() && $calendar instanceof CalendarImpl) {
				return $calendar->getSchedulingTimezone();
			}
			return null;
		});
		if ($firstTimezone !== null) {
			return $firstTimezone->getTimeZone()->getName();
		}
		return null;
	}

	public function getDefaultTimezone(): string {
		return $this->config->getSystemValueString('default_timezone', 'UTC');
	}

}