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