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