2020-08-15 07:08:52 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2020-08-15 07:08:52 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
2021-12-01 20:13:24 +00:00
|
|
|
namespace Component\LeftPanel;
|
2020-08-15 07:08:52 +01:00
|
|
|
|
2021-12-11 10:48:08 +00:00
|
|
|
use App\Core\Cache;
|
|
|
|
use App\Core\DB\DB;
|
2021-10-01 17:25:51 +01:00
|
|
|
use App\Core\Event;
|
2021-12-11 10:48:08 +00:00
|
|
|
use function App\Core\I18n\_m;
|
2021-04-18 02:17:57 +01:00
|
|
|
use App\Core\Modules\Component;
|
2021-12-01 01:36:46 +00:00
|
|
|
use App\Core\Router\RouteLoader;
|
2021-12-11 10:48:08 +00:00
|
|
|
use App\Core\Router\Router;
|
|
|
|
use App\Entity\Actor;
|
|
|
|
use App\Entity\Feed;
|
|
|
|
use App\Util\Exception\ClientException;
|
2021-12-11 16:50:52 +00:00
|
|
|
use App\Util\Exception\NotFoundException;
|
2021-12-01 20:13:24 +00:00
|
|
|
use Component\LeftPanel\Controller as C;
|
2020-08-15 07:08:52 +01:00
|
|
|
|
2021-12-01 20:13:24 +00:00
|
|
|
class LeftPanel extends Component
|
2020-08-15 07:08:52 +01:00
|
|
|
{
|
2021-12-01 01:36:46 +00:00
|
|
|
public function onAddRoute(RouteLoader $r): bool
|
|
|
|
{
|
|
|
|
$r->connect('edit_feeds', '/edit-feeds', C\EditFeeds::class);
|
|
|
|
return Event::next;
|
|
|
|
}
|
|
|
|
|
2022-01-27 00:54:27 +00:00
|
|
|
/**
|
|
|
|
* @throws \App\Util\Exception\DuplicateFoundException
|
|
|
|
* @throws \App\Util\Exception\ServerException
|
|
|
|
* @throws ClientException
|
|
|
|
*/
|
|
|
|
public function onAppendFeed(Actor $actor, string $title, string $route, array $route_params): bool
|
2021-12-11 10:48:08 +00:00
|
|
|
{
|
|
|
|
$cache_key = Feed::cacheKey($actor);
|
|
|
|
$feeds = Feed::getFeeds($actor);
|
|
|
|
$ordering = end($feeds)->getOrdering();
|
|
|
|
$url = Router::url($route, $route_params);
|
2021-12-11 16:50:52 +00:00
|
|
|
try {
|
|
|
|
$feed = DB::findOneBy('feed', ['actor_id' => $actor->getId(), 'url' => $url]);
|
|
|
|
throw new ClientException(_m(
|
|
|
|
'Cannot add feed with url "{url}" because it already exists with title "{title}"',
|
|
|
|
['{url}' => $url, '{title}' => $feed->getTitle()],
|
|
|
|
));
|
|
|
|
} catch (NotFoundException) {
|
2021-12-11 10:48:08 +00:00
|
|
|
DB::persist(Feed::create([
|
|
|
|
'actor_id' => $actor->getId(),
|
|
|
|
'url' => $url,
|
|
|
|
'route' => $route,
|
|
|
|
'title' => $title,
|
|
|
|
'ordering' => $ordering + 1,
|
|
|
|
]));
|
|
|
|
DB::flush();
|
|
|
|
Cache::delete($cache_key);
|
|
|
|
return Event::stop;
|
|
|
|
}
|
|
|
|
}
|
2020-08-15 07:08:52 +01:00
|
|
|
}
|