]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Hashtag.php
Replace `$parameters` argument per method with `static::$parameters`
[friendica.git] / src / Module / Hashtag.php
index 879b27ea7a73dcc219d991e739eb91f0286a59b3..aebe15dd0d0e325e8d3ffa979ec7751af8264fe6 100644 (file)
@@ -1,35 +1,50 @@
 <?php
 /**
- * @file src/Module/Hashtag.php
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @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/>.
+ *
  */
+
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
 use Friendica\Core\System;
-use dba;
+use Friendica\Database\DBA;
+use Friendica\Util\Strings;
 
 /**
  * Hashtag module.
  */
-class Hashtag extends BaseModule {
-
-       public static function init()
+class Hashtag extends BaseModule
 {
+       public static function content()
+       {
                $result = [];
 
-               $t = escape_tags($_REQUEST['t']);
+               $t = Strings::escapeHtml($_REQUEST['t']);
                if (empty($t)) {
                        System::jsonExit($result);
                }
 
-               $taglist = dba::p("SELECT DISTINCT(`term`) FROM `term` WHERE `term` LIKE ? AND `type` = ? ORDER BY `term`",
-                       $t . '%',
-                       intval(TERM_HASHTAG)
-               );
-               while ($tag = dba::fetch($taglist)) {
-                       $result[] = ['text' => strtolower($tag['term'])];
+               $taglist = DBA::select('tag', ['name'], ["`name` LIKE ?", $t . "%"], ['order' => ['name'], 'limit' => 100]);
+               while ($tag = DBA::fetch($taglist)) {
+                       $result[] = ['text' => $tag['name']];
                }
-               dba::close($taglist);
+               DBA::close($taglist);
 
                System::jsonExit($result);
        }