2019-05-19 05:01:46 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-19 05:01:46 +02:00
|
|
|
|
|
|
|
namespace Friendica\Module\Search;
|
|
|
|
|
|
|
|
use Friendica\Content\Widget;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2020-01-22 23:14:14 -05:00
|
|
|
use Friendica\Module\BaseSearch;
|
2019-12-27 22:19:28 +01:00
|
|
|
use Friendica\Module\Security\Login;
|
2019-05-19 05:01:46 +02:00
|
|
|
|
|
|
|
/**
|
2019-05-19 05:06:02 +02:00
|
|
|
* Directory search module
|
2019-05-19 05:01:46 +02:00
|
|
|
*/
|
2020-01-22 23:14:14 -05:00
|
|
|
class Directory extends BaseSearch
|
2019-05-19 05:01:46 +02:00
|
|
|
{
|
2021-11-14 20:46:25 +01:00
|
|
|
public static function content()
|
2019-05-19 05:01:46 +02:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-05-19 05:01:46 +02:00
|
|
|
return Login::form();
|
|
|
|
}
|
|
|
|
|
2021-11-07 09:18:25 +00:00
|
|
|
$search = trim(rawurldecode($_REQUEST['search'] ?? ''));
|
2019-10-07 14:27:20 -04:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
if (empty(DI::page()['aside'])) {
|
|
|
|
DI::page()['aside'] = '';
|
2019-05-19 05:01:46 +02:00
|
|
|
}
|
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2019-05-19 05:01:46 +02:00
|
|
|
|
2019-12-24 17:15:41 -05:00
|
|
|
return self::performContactSearch($search);
|
2019-05-19 05:01:46 +02:00
|
|
|
}
|
|
|
|
}
|