[COMPONENT][Search][LeftPanel] Add way of adding a search result as a left panel feed

This commit is contained in:
2021-12-11 10:48:08 +00:00
parent 9afe6ecfac
commit dbc8bf2ae1
3 changed files with 80 additions and 11 deletions

View File

@@ -21,9 +21,16 @@ declare(strict_types = 1);
namespace Component\LeftPanel;
use App\Core\Cache;
use App\Core\DB\DB;
use App\Core\Event;
use function App\Core\I18n\_m;
use App\Core\Modules\Component;
use App\Core\Router\RouteLoader;
use App\Core\Router\Router;
use App\Entity\Actor;
use App\Entity\Feed;
use App\Util\Exception\ClientException;
use Component\LeftPanel\Controller as C;
class LeftPanel extends Component
@@ -34,6 +41,27 @@ class LeftPanel extends Component
return Event::next;
}
public function onAppendFeed(Actor $actor, string $title, string $route, array $route_params)
{
$cache_key = Feed::cacheKey($actor);
$feeds = Feed::getFeeds($actor);
$ordering = end($feeds)->getOrdering();
$url = Router::url($route, $route_params);
if (DB::count('feed', ['actor_id' => $actor->getId(), 'url' => $url]) === 0) {
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;
}
throw new ClientException(_m('Cannot add feed with url "{url}" because it already exists', ['{url}' => $url]));
}
/**
* Output our dedicated stylesheet
*