. * */ namespace Friendica\Module\Api\Mastodon; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\DI; use Friendica\Module\BaseApi; /** * @see https://docs.joinmastodon.org/methods/tags/ */ class Tags extends BaseApi { /** * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ protected function rawContent(array $request = []) { self::checkAllowedScope(self::SCOPE_READ); $uid = self::getCurrentUserID(); if (empty($this->parameters['hashtag'])) { DI::mstdnError()->UnprocessableEntity(); } $tag = ltrim($this->parameters['hashtag'], '#'); $following = DBA::exists('search', ['uid' => $uid, 'term' => '#' . $tag]); $hashtag = new \Friendica\Object\Api\Mastodon\Tag($this->baseUrl, ['name' => $tag], [], $following); System::jsonExit($hashtag->toArray()); } }