2021-10-03 17:29:28 +00:00
|
|
|
<?php
|
2022-01-02 09:49:50 +00:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
namespace Friendica\Module\Calendar\Event;
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
2022-04-09 11:58:01 +00:00
|
|
|
use Friendica\Core\System;
|
2021-10-03 17:29:28 +00:00
|
|
|
use Friendica\Model\Event;
|
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\Post;
|
2022-11-06 01:35:09 +00:00
|
|
|
use Friendica\Module\Response;
|
2021-10-03 17:29:28 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Util\DateTimeFormat;
|
2022-11-06 01:35:09 +00:00
|
|
|
use Friendica\Util\Profiler;
|
|
|
|
use Psr\Log\LoggerInterface;
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
/**
|
|
|
|
* GET-Controller for event
|
|
|
|
* returns the result as JSON
|
|
|
|
*/
|
|
|
|
class Get extends \Friendica\BaseModule
|
2021-10-03 17:29:28 +00:00
|
|
|
{
|
2022-11-06 01:35:09 +00:00
|
|
|
/** @var IHandleUserSessions */
|
|
|
|
protected $session;
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, IHandleUserSessions $session, array $server, array $parameters = [])
|
|
|
|
{
|
|
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
$this->session = $session;
|
|
|
|
}
|
2021-10-03 17:29:28 +00:00
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
protected function rawContent(array $request = [])
|
|
|
|
{
|
|
|
|
if (!$this->session->getLocalUserId()) {
|
|
|
|
throw new HTTPException\UnauthorizedException();
|
2021-10-03 17:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get events by id or by date
|
2022-11-06 01:35:09 +00:00
|
|
|
if (!empty($request['id'])) {
|
|
|
|
$events = [Event::getByIdAndUid($this->session->getLocalUserId(), $request['id'], $this->parameters['nickname'] ?? null)];
|
2021-10-03 17:29:28 +00:00
|
|
|
} else {
|
2022-11-06 01:35:09 +00:00
|
|
|
$events = Event::getListByDate($this->session->getLocalUserId(), $request['start'] ?? '', $request['end'] ?? '', false, $this->parameters['nickname'] ?? null);
|
2021-10-03 17:29:28 +00:00
|
|
|
}
|
|
|
|
|
2022-11-06 01:35:09 +00:00
|
|
|
System::jsonExit($events ? self::map($events) : []);
|
2021-10-03 17:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function map(array $events): array
|
|
|
|
{
|
|
|
|
return array_map(function ($event) {
|
|
|
|
$item = Post::selectFirst(['plink', 'author-name', 'author-avatar', 'author-link', 'private', 'uri-id'], ['id' => $event['itemid']]);
|
2022-11-06 01:35:09 +00:00
|
|
|
if (empty($item)) {
|
2021-10-03 17:29:28 +00:00
|
|
|
// Using default values when no item had been found
|
|
|
|
$item = ['plink' => '', 'author-name' => '', 'author-avatar' => '', 'author-link' => '', 'private' => Item::PUBLIC, 'uri-id' => ($event['uri-id'] ?? 0)];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'id' => $event['id'],
|
|
|
|
'title' => $event['summary'],
|
|
|
|
'start' => DateTimeFormat::local($event['start']),
|
|
|
|
'end' => DateTimeFormat::local($event['finish']),
|
|
|
|
'nofinish' => $event['nofinish'],
|
|
|
|
'desc' => $event['desc'],
|
|
|
|
'location' => $event['location'],
|
|
|
|
'item' => $item,
|
|
|
|
];
|
|
|
|
}, $events);
|
|
|
|
}
|
|
|
|
}
|