X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FDirectory.php;h=8335fb0cd46c1e49365661b8ea3b0d1874741c59;hb=8632c903276c44d575076ac3167e3bc7ea64bd31;hp=b47bfd43e98a19d8576bb5d6910ecbaba864b1bd;hpb=2e9b2d72be585f329cce5f835fe4102687d45bb0;p=friendica.git diff --git a/src/Module/Directory.php b/src/Module/Directory.php index b47bfd43e9..8335fb0cd4 100644 --- a/src/Module/Directory.php +++ b/src/Module/Directory.php @@ -7,10 +7,12 @@ use Friendica\Content\Nav; use Friendica\Content\Pager; use Friendica\Content\Widget; use Friendica\Core\Hook; -use Friendica\Core\L10n; +use Friendica\Core\Session; use Friendica\Core\Renderer; +use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\Profile; +use Friendica\Network\HTTPException; use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Strings; @@ -19,35 +21,19 @@ use Friendica\Util\Strings; */ class Directory extends BaseModule { - public static function init() + public static function content(array $parameters = []) { - $app = self::getApp(); + $app = DI::app(); + $config = DI::config(); - if (local_user()) { - $app->page['aside'] .= Widget::findPeople(); - $app->page['aside'] .= Widget::follow(); - } else { - unset($_SESSION['theme']); - unset($_SESSION['mobile-theme']); - } - } - - public static function post() - { - if (!empty($_POST['search'])) { - self::getApp()->data['search'] = $_POST['search']; + if (($config->get('system', 'block_public') && !Session::isAuthenticated()) || + ($config->get('system', 'block_local_dir') && !Session::isAuthenticated())) { + throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.')); } - } - - public static function content() - { - $app = self::getApp(); - $config = $app->getConfig(); - if (($config->get('system', 'block_public') && !local_user() && !remote_user()) || - ($config->get('system', 'block_local_dir') && !local_user() && !remote_user())) { - notice(L10n::t('Public access denied.') . EOL); - return ''; + if (local_user()) { + DI::page()['aside'] .= Widget::findPeople(); + DI::page()['aside'] .= Widget::follow(); } $output = ''; @@ -55,11 +41,9 @@ class Directory extends BaseModule Nav::setSelected('directory'); - if (!empty($app->data['search'])) { - $search = Strings::escapeTags(trim($app->data['search'])); - } else { - $search = (!empty($_GET['search']) ? Strings::escapeTags(trim(rawurldecode($_GET['search']))) : ''); - } + $search = (!empty($_REQUEST['search']) ? + Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) : + ''); $gDirPath = ''; $dirURL = $config->get('system', 'directory'); @@ -67,12 +51,12 @@ class Directory extends BaseModule $gDirPath = Profile::zrl($dirURL, true); } - $pager = new Pager($app->query_string, 60); + $pager = new Pager(DI::args()->getQueryString(), 60); $profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search); if ($profiles['total'] === 0) { - info(L10n::t('No entries (some entries may be hidden).') . EOL); + info(DI::l10n()->t('No entries (some entries may be hidden).') . EOL); } else { if (in_array('small', $app->argv)) { $photo = 'thumb'; @@ -88,17 +72,17 @@ class Directory extends BaseModule $tpl = Renderer::getMarkupTemplate('directory_header.tpl'); $output .= Renderer::replaceMacros($tpl, [ - '$search' => $search, - '$globaldir' => L10n::t('Global Directory'), - '$gDirPath' => $gDirPath, - '$desc' => L10n::t('Find on this site'), - '$contacts' => $profiles['entries'], - '$finding' => L10n::t('Results for:'), - '$findterm' => (strlen($search) ? $search : ""), - '$title' => L10n::t('Site Directory'), + '$search' => $search, + '$globaldir' => DI::l10n()->t('Global Directory'), + '$gDirPath' => $gDirPath, + '$desc' => DI::l10n()->t('Find on this site'), + '$contacts' => $entries, + '$finding' => DI::l10n()->t('Results for:'), + '$findterm' => (strlen($search) ? $search : ""), + '$title' => DI::l10n()->t('Site Directory'), '$search_mod' => 'directory', - '$submit' => L10n::t('Find'), - '$paginate' => $pager->renderFull($profiles['total']), + '$submit' => DI::l10n()->t('Find'), + '$paginate' => $pager->renderFull($profiles['total']), ]); return $output; @@ -148,25 +132,22 @@ class Directory extends BaseModule || !empty($profile['postal-code']) || !empty($profile['country-name']) ) { - $location = L10n::t('Location:'); + $location = DI::l10n()->t('Location:'); } else { $location = ''; } - $gender = (!empty($profile['gender']) ? L10n::t('Gender:') : false); - $marital = (!empty($profile['marital']) ? L10n::t('Status:') : false); - $homepage = (!empty($profile['homepage']) ? L10n::t('Homepage:') : false); - $about = (!empty($profile['about']) ? L10n::t('About:') : false); + $homepage = (!empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false); $location_e = $location; $photo_menu = [ - 'profile' => [L10n::t("View Profile"), Contact::magicLink($profile_link)] + 'profile' => [DI::l10n()->t("View Profile"), Contact::magicLink($profile_link)] ]; $entry = [ 'id' => $contact['id'], - 'url' => Contact::magicLInk($profile_link), + 'url' => Contact::magicLink($profile_link), 'itemurl' => $itemurl, 'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB), 'img_hover' => $contact['name'], @@ -176,11 +157,8 @@ class Directory extends BaseModule 'profile' => $profile, 'location' => $location_e, 'tags' => $contact['pub_keywords'], - 'gender' => $gender, 'pdesc' => $pdesc, - 'marital' => $marital, 'homepage' => $homepage, - 'about' => $about, 'photo_menu' => $photo_menu, ];