]> git.mxchange.org Git - friendica.git/blob - src/Module/Calendar/Event/Get.php
spelling: does
[friendica.git] / src / Module / Calendar / Event / Get.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\Content\Feature;
26 use Friendica\Core\L10n;
27 use Friendica\Core\Session\Capability\IHandleUserSessions;
28 use Friendica\Core\System;
29 use Friendica\Model\Event;
30 use Friendica\Model\Item;
31 use Friendica\Model\Post;
32 use Friendica\Model\User;
33 use Friendica\Module\Response;
34 use Friendica\Network\HTTPException;
35 use Friendica\Util\DateTimeFormat;
36 use Friendica\Util\Profiler;
37 use Friendica\Util\Strings;
38 use Psr\Log\LoggerInterface;
39
40 /**
41  * GET-Controller for event
42  * returns the result as JSON
43  */
44 class Get extends \Friendica\BaseModule
45 {
46         /** @var IHandleUserSessions */
47         protected $session;
48
49         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 = [])
50         {
51                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
52
53                 $this->session = $session;
54                 $this->app     = $app;
55         }
56
57         protected function rawContent(array $request = [])
58         {
59                 $nickname = $this->parameters['nickname'] ?? $this->app->getLoggedInUserNickname();
60                 if (!$nickname) {
61                         throw new HTTPException\UnauthorizedException();
62                 }
63
64                 $owner = Event::getOwnerForNickname($nickname);
65
66                 if (!empty($request['id'])) {
67                         $events = [Event::getByIdAndUid($owner['uid'], $request['id'])];
68                 } else {
69                         $events = Event::getListByDate($owner['uid'], $request['start'] ?? '', $request['end'] ?? '');
70                 }
71
72                 System::jsonExit($events ? self::map($events) : []);
73         }
74
75         private static function map(array $events): array
76         {
77                 return array_map(function ($event) {
78                         $item = Post::selectFirst(['plink', 'author-name', 'author-avatar', 'author-link', 'private', 'uri-id'], ['id' => $event['itemid']]);
79                         if (empty($item)) {
80                                 // Using default values when no item had been found
81                                 $item = ['plink' => '', 'author-name' => '', 'author-avatar' => '', 'author-link' => '', 'private' => Item::PUBLIC, 'uri-id' => ($event['uri-id'] ?? 0)];
82                         }
83
84                         return [
85                                 'id'       => $event['id'],
86                                 'title'    => Strings::escapeHtml($event['summary']),
87                                 'start'    => DateTimeFormat::local($event['start']),
88                                 'end'      => DateTimeFormat::local($event['finish']),
89                                 'nofinish' => $event['nofinish'],
90                                 'desc'     => Strings::escapeHtml($event['desc']),
91                                 'location' => Strings::escapeHtml($event['location']),
92                                 'item'     => $item,
93                         ];
94                 }, $events);
95         }
96 }