Timezones
TimezonesController.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of the package thucke/timezones.
5 *
6 * For the full copyright and license information, please read the
7 * LICENSE file that was distributed with this source code.
8 */
9
11
13use TYPO3\CMS\Core\Log\LogLevel;
14use TYPO3\CMS\Extbase\Annotation as Extbase;
15use TYPO3\CMS\Extbase\Object\ObjectManager;
16use TYPO3\CMS\Extbase\Utility\LocalizationUtility;
17
23class TimezonesController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController
24{
28 protected $cookieLifetime;
29
33 protected $logger;
34
38 protected $cookieService;
39
43 private $prefixId;
44
48 public function injectCookieService(\Thucke\Timezones\Service\CookieService $cookieService): void
49 {
50 $this->cookieService = $cookieService;
51 }
52
57
61 public function injectTimezoneService(\Thucke\Timezones\Service\TimezoneService $timezoneService): void
62 {
63 $this->timezoneService = $timezoneService;
64 }
65
70
75 {
76 $this->extensionHelperService = $extensionHelperService;
77 }
78
85 public function initializeAction(): void
86 {
87 //instantiate the logger
88 $this->logger = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(ObjectManager::class)
89 ->get(ExtensionHelperService::class)
90 ->getLogger(__CLASS__);
91 $this->logger->log(LogLevel::DEBUG, 'Entry initializeAction');
92
93 $this->checkIntlModule();
94
95 $this->prefixId = strtolower(
96 'tx_' . $this->request->getControllerExtensionName()
97 );
98
99 //set expire time to 10 years in the future
100 $this->cookieLifetime = (new \DateTime())->add(new \DateInterval('P10Y'))->getTimestamp();
101
102 // backward compatibility of changing cookie name - deprecated
103 if ($this->cookieService->hasCookie($this->prefixId . '_pi1')) {
104 $this->timezoneService->setCurrentTimezone($this->cookieService->getCookie($this->prefixId . '_pi1'));
105 $this->cookieService->clearCookie($this->prefixId . '_pi1');
106 } else {
107 $this->timezoneService->setCurrentTimezone($this->cookieService->getCookie($this->prefixId));
108 }
109 $this->logger->log(LogLevel::DEBUG, 'Exit initializeAction');
110 }
111
117 public function indexAction()
118 {
119 $this->logger->log(LogLevel::DEBUG, 'Entry indexAction');
120 $this->view->assign('tz_name', $this->timezoneService->getCurrentTimezoneAbbreviation());
121 $pluginPage = abs((int)$this->settings['pluginPage']);
122 //only generate link if a uid is configured
123 if ($pluginPage > 0) {
124 //generate URI to this page
125 $selfUri = $this->controllerContext->getUriBuilder()->reset()
126 ->setTargetPageUid($pluginPage)
127 ->setCreateAbsoluteUri(true)
128 ->buildFrontendUri();
129 $this->view->assign('change_url', $selfUri);
130 } else {
131 $this->logger->log(
132 LogLevel::WARNING,
133 'No pluginPage set - skipping hyperlink generation',
134 ['errorCode' => 1507388375]
135 );
136 }
137 $this->logger->log(LogLevel::DEBUG, 'Exit indexAction');
138 }
139
145 public function showAction()
146 {
147 $this->logger->log(LogLevel::DEBUG, 'Entry showAction');
148 $this->logger->log(
149 LogLevel::DEBUG,
150 'Timezone',
151 [$this->timezoneService->getOffsetInSeconds(), date('Y-m-d H:i')]
152 );
153 $this->view->assign('tz_name', $this->timezoneService->getCurrentTimezoneAbbreviation());
154 $this->view->assign('curdatetime', $this->formatDateTime(time()));
155 $this->logger->log(LogLevel::DEBUG, 'Exit showAction');
156 }
157
163 public function selectAction()
164 {
165 $this->logger->log(LogLevel::DEBUG, 'Entry selectAction');
166 $this->view->assign('selector', $this->timezoneService->getTimezoneArray());
167 $this->view->assign('selected', $this->timezoneService->getCurrentTimezone()->getName());
168 //generate URI to this page
169 $selfUri = $this->controllerContext->getUriBuilder()->reset()
170 ->setTargetPageUid($GLOBALS['TSFE']->id)
171 ->setCreateAbsoluteUri(true)
172 ->buildFrontendUri();
173 $this->view->assign('action', $selfUri);
174 $this->logger->log(LogLevel::DEBUG, 'Exit selectAction');
175 }
176
185 public function tzsetAction($timezone = null): void
186 {
187 $this->logger->log(LogLevel::DEBUG, 'Entry tzsetAction', ['Timezone' => $timezone]);
188 //\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($signalSlotMessage,'signalSlotMessage');
189
190 $this->timezoneService->setCurrentTimezone($timezone);
191 $timezone = $this->timezoneService->getCurrentTimezone()->getName();
192 $this->cookieService->setCookie($this->prefixId, $timezone, $this->cookieLifetime);
193
194 $referrer = $this->request->getInternalArgument('__referrer');
195
196 $this->logger->log(
197 LogLevel::DEBUG,
198 'Exit tzsetAction - forwarding request',
199 [
200 'action' => $referrer['@action'],
201 'controller' => $referrer['@controller'],
202 'extension' => $referrer['@extension'],
203 'arguments' => null,
204 ]
205 );
206 $this->controllerContext->getFlashMessageQueue()->clear();
207 $this->redirectToUri($_SERVER['HTTP_REFERER']);
208 }
209
215 private function checkIntlModule(): void
216 {
217 if (!extension_loaded('intl')) {
218 throw new \Thucke\Timezones\Exception\ModuleNotLoadedException(
219 LocalizationUtility::translate('error.phpModuleIntlNotLoaded', 'Timezones'),
220 1508270706
221 );
222 }
223 }
224
234 private function formatDateTime($tstamp): string
235 {
236 if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('timezones')) {
237 $rc = \Thucke\Timezones\Utility\TimezonesUtility::convertToTimezone($tstamp);
238 } else {
239 $rc = date(DATE_RFC850, $tstamp);
240 }
241 return $rc;
242 }
243}
injectTimezoneService(\Thucke\Timezones\Service\TimezoneService $timezoneService)
injectCookieService(\Thucke\Timezones\Service\CookieService $cookieService)
injectExtensionHelperService(ExtensionHelperService $extensionHelperService)