]> git.mxchange.org Git - friendica.git/blob - src/Module/Calendar/Event/Show.php
spelling: does
[friendica.git] / src / Module / Calendar / Event / Show.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Calendar\Event;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Content\Feature;
27 use Friendica\Core\L10n;
28 use Friendica\Core\Renderer;
29 use Friendica\Core\Session\Capability\IHandleUserSessions;
30 use Friendica\Core\System;
31 use Friendica\Model\Event;
32 use Friendica\Model\User;
33 use Friendica\Module\Response;
34 use Friendica\Network\HTTPException;
35 use Friendica\Util\Profiler;
36 use Psr\Log\LoggerInterface;
37
38 /**
39  * Displays one specific event in a <div> container
40  */
41 class Show extends BaseModule
42 {
43         /** @var IHandleUserSessions */
44         protected $session;
45         /** @var App */
46         private $app;
47
48         public function __construct(App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IHandleUserSessions $session, array $server, array $parameters = [])
49         {
50                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
51
52                 $this->session = $session;
53                 $this->app     = $app;
54         }
55
56         protected function rawContent(array $request = [])
57         {
58                 $nickname = $this->parameters['nickname'] ?? $this->app->getLoggedInUserNickname();
59                 if (!$nickname) {
60                         throw new HTTPException\UnauthorizedException();
61                 }
62
63                 $owner = Event::getOwnerForNickname($nickname);
64
65                 $event = Event::getByIdAndUid($owner['uid'], (int)$this->parameters['id'] ?? 0);
66                 if (empty($event)) {
67                         throw new HTTPException\NotFoundException($this->t('Event not found.'));
68                 }
69
70                 $tplEvent = Event::prepareForItem($event);
71
72                 $event_item = [];
73                 foreach ($tplEvent['item'] as $k => $v) {
74                         $event_item[str_replace('-', '_', $k)] = $v;
75                 }
76                 $tplEvent['item'] = $event_item;
77
78                 $tpl = Renderer::getMarkupTemplate('calendar/event.tpl');
79
80                 $o = Renderer::replaceMacros($tpl, [
81                         '$event' => $tplEvent,
82                 ]);
83
84                 System::httpExit($o);
85         }
86 }