mirror of
https://github.com/friendica/friendica
synced 2025-05-10 03:44:14 +02:00
58 lines
1.7 KiB
PHP
58 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Module\Item;
|
|
|
|
use Friendica\App;
|
|
use Friendica\BaseModule;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\Session\Capability\IHandleUserSessions;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\Model\Post;
|
|
use Friendica\Module\Api\ApiResponse;
|
|
use Friendica\Network\HTTPException;
|
|
use Friendica\Util\Profiler;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Return the search text of a given item id
|
|
*/
|
|
class Searchtext extends BaseModule
|
|
{
|
|
/** @var IHandleUserSessions */
|
|
private $session;
|
|
|
|
public function __construct(IHandleUserSessions $session, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
|
|
{
|
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
|
|
|
$this->session = $session;
|
|
}
|
|
|
|
protected function rawContent(array $request = [])
|
|
{
|
|
if (!$this->session->isAuthenticated()) {
|
|
throw new HttpException\ForbiddenException($this->l10n->t('Access denied.'));
|
|
}
|
|
|
|
if (empty($this->parameters['id'])) {
|
|
throw new HTTPException\BadRequestException();
|
|
}
|
|
|
|
$item = Post::selectFirstForUser($this->session->getLocalUserId(), ['uri-id'], ['uid' => [0, $this->session->getLocalUserId()], 'uri-id' => $this->parameters['id']]);
|
|
if (empty($item)) {
|
|
throw new HTTPException\NotFoundException();
|
|
}
|
|
|
|
$search = DBA::selectFirst('post-searchindex', [], ['uri-id' => $item['uri-id']]);
|
|
if (empty($search)) {
|
|
throw new HTTPException\NotFoundException();
|
|
}
|
|
|
|
$this->httpExit(Post\Engagement::unescapeKeywords($search['searchtext']));
|
|
}
|
|
}
|