friendica/src/Module/Hashtag.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2018-03-16 13:55:26 +01:00
<?php
/**
* @copyright Copyright (C) 2020, Friendica
*
* @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/>.
*
2018-03-16 13:55:26 +01:00
*/
2018-03-16 13:55:26 +01:00
namespace Friendica\Module;
use Friendica\BaseModule;
use Friendica\Core\System;
use Friendica\Database\DBA;
use Friendica\Util\Strings;
2018-03-16 13:55:26 +01:00
/**
* Hashtag module.
*/
2018-03-16 14:27:04 +01:00
class Hashtag extends BaseModule
2018-03-16 13:55:26 +01:00
{
public static function content(array $parameters = [])
2018-03-16 14:27:04 +01:00
{
2018-03-16 13:55:26 +01:00
$result = [];
$t = Strings::escapeHtml($_REQUEST['t']);
2018-03-16 13:55:26 +01:00
if (empty($t)) {
System::jsonExit($result);
}
2020-04-28 13:52:51 +02:00
$taglist = DBA::select('tag', ['name'], ["`name` LIKE ?", $t . "%"], ['order' => ['name'], 'limit' => 100]);
while ($tag = DBA::fetch($taglist)) {
2020-04-28 13:52:51 +02:00
$result[] = ['text' => $tag['name']];
2018-03-16 13:55:26 +01:00
}
DBA::close($taglist);
2018-03-16 13:55:26 +01:00
System::jsonExit($result);
}
}