]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Search/Directory.php
The GNU-Social import is removed
[friendica.git] / src / Module / Search / Directory.php
index b18847afe9b41edb629a292c2a635208b582a717..7eb11118c638a4ac598a9a5c4ee5307ed8baa7ca 100644 (file)
@@ -1,36 +1,52 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, 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\Search;
 
 use Friendica\Content\Widget;
-use Friendica\Core\L10n;
-use Friendica\Module\BaseSearchModule;
-use Friendica\Module\Login;
-use Friendica\Util\Strings;
+use Friendica\DI;
+use Friendica\Module\BaseSearch;
+use Friendica\Module\Security\Login;
 
 /**
  * Directory search module
  */
-class Directory extends BaseSearchModule
+class Directory extends BaseSearch
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               if (!local_user()) {
-                       notice(L10n::t('Permission denied.'));
+               if (!DI::userSession()->getLocalUserId()) {
+                       DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
                        return Login::form();
                }
 
-               $search = Strings::escapeTags(trim(rawurldecode($_REQUEST['search'] ?? '')));
-
-               $a = self::getApp();
+               $search = trim(rawurldecode($_REQUEST['search'] ?? ''));
 
-               if (empty($a->page['aside'])) {
-                       $a->page['aside'] = '';
+               if (empty(DI::page()['aside'])) {
+                       DI::page()['aside'] = '';
                }
 
-               $a->page['aside'] .= Widget::findPeople();
-               $a->page['aside'] .= Widget::follow();
+               DI::page()['aside'] .= Widget::findPeople();
+               DI::page()['aside'] .= Widget::follow();
 
-               return self::performSearch($search);
+               return self::performContactSearch($search);
        }
 }