Timezones
TimezoneService.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/*
6 * This file is part of the package thucke/timezones.
7 *
8 * For the full copyright and license information, please read the
9 * LICENSE file that was distributed with this source code.
10 */
11
13
14use DateTime;
15use DateTimeZone;
16use Exception;
17use IntlDateFormatter;
18use TYPO3\CMS\Core\Log\LogLevel;
19use TYPO3\CMS\Core\Utility\GeneralUtility;
20use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
21
30{
36 protected $timezoneArray = [];
37
44
51
57 protected $locale;
58
67 {
68 $this->extensionHelperService = $extensionHelperService;
69 }
70
76 public function initializeObject(): void
77 {
78 //$this->logger = $this->extensionHelperService->getLogger(__CLASS__);
79 $this->logger->log(LogLevel::DEBUG, 'Entry point');
80 $this->locale = LocalizationUtility::translate('locale', 'Timezones');
81 $this->setCurrentTimezone(date_default_timezone_get());
82 //create instance of IntlDateFormatter for best localized date conversions
83 //TODO: make format settings configurable
84 $this->intlDateFormatter = GeneralUtility::makeInstance(
85 'IntlDateFormatter',
86 $this->locale,
87 IntlDateFormatter::MEDIUM,
88 IntlDateFormatter::SHORT
89 );
90 $this->setTimezoneArray();
91 }
92
98 public function setCurrentTimezone($timezone = null): void
99 {
100 $this->logger->log(LogLevel::DEBUG, 'Entry setCurrentTimezone', ['timezoneName' => $timezone]);
101 if (!$timezone) {
102 $timezone = $this->getCurrentTimezone()->getName();
103 } elseif ($timezone instanceof DateTimeZone) {
104 $timezone = $timezone->getName();
105 }
106 $result = date_default_timezone_set($timezone);
107 $this->logger->log(LogLevel::DEBUG, 'date_default_timezone_set', [
108 'result' => $result,
109 'timezone' => $timezone, ]);
110 $this->currentTimezone = new DateTimeZone($timezone);
111 $this->logger->log(LogLevel::DEBUG, 'Exit setCurrentTimezone');
112 }
113
119 public function getCurrentTimezone(): DateTimeZone
120 {
122 }
123
130 public function getIntlDateFormatter(): IntlDateFormatter
131 {
132 $this->logger->log(LogLevel::DEBUG, 'Entry getIntlDateFormatter');
133 $this->intlDateFormatter->setTimeZone($this->getIcuTimezoneString());
134 $this->logger->log(LogLevel::DEBUG, 'Exit getIntlDateFormatter', [$this->intlDateFormatter]);
135
137 }
138
145 public function getCurrentTimezoneAbbreviation(): string
146 {
147 return $this->intlDateFormatter::formatObject(
148 new DateTime('now', $this->getCurrentTimezone()),
149 'zzzz',
150 $this->locale
151 );
152 }
153
161 public function getTimezoneArray(): array
162 {
163 if (!$this->timezoneArray) {
164 $this->setTimezoneArray();
165 }
166
168 }
169
175 public function setTimezoneArray(): void
176 {
177 $timezone_identifiers_list = DateTimeZone::listIdentifiers();
178 foreach ($timezone_identifiers_list as $timezone_identifier) {
179 $dateTimeZone = new DateTimeZone($timezone_identifier);
180 $dateTime = new DateTime('now', $dateTimeZone);
181 //$abbreviation = $this->intlDateFormatter::formatObject($dateTime,'zzzz', $this->locale);
182 $hours = floor($dateTimeZone->getOffset($dateTime) / 3600);
183 $mins = floor(($dateTimeZone->getOffset($dateTime) - ($hours * 3600)) / 60);
184 $hours = 'GMT' . ($hours < 0 ? $hours : '+' . $hours);
185 $mins = ($mins > 0 ? $mins : '0' . $mins);
186 $text = str_replace('_', ' ', $timezone_identifier);
187 $this->timezoneArray[$timezone_identifier] = $text . ' (' . $hours . ':' . $mins . ')';
188 }
189 }
190
198 public function getOffsetInSeconds(): int
199 {
200 return $this->currentTimezone->getOffset(new DateTime('now', new DateTimeZone('GMT')));
201 }
202
210 public function getIcuTimezoneString(): string
211 {
212 $this->logger->log(LogLevel::DEBUG, 'Entry getIcuTimezoneString');
213 $timezone = $this->currentTimezone->getName();
214 $dt = new DateTime('now', new DateTimeZone($timezone));
215 $icuTimezoneString = 'GMT';
216 if ($this->getOffsetInSeconds() !== 0) {
217 //$icuTimezoneString .= $dt->format('O');
218 $icuTimezoneString .= $dt->format('P');
219 }
220 $this->logger->log(LogLevel::DEBUG, 'Exit getIcuTimezoneString', [$icuTimezoneString]);
221
222 return $icuTimezoneString;
223 }
224
232 public function isDst($time='now'): ?bool
233 {
234 $dateTime = new DateTime($time, $this->currentTimezone);
235 return $dateTime->format('I') === '1';
236 }
237}
injectExtensionHelperService(ExtensionHelperService $extensionHelperService)