2019-05-02 20:49:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Pager;
|
|
|
|
use Friendica\Content\Widget;
|
|
|
|
use Friendica\Core\Hook;
|
|
|
|
use Friendica\Core\L10n;
|
2019-09-28 18:09:11 +00:00
|
|
|
use Friendica\Core\Session;
|
2019-05-02 20:49:33 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2019-05-02 20:49:33 +00:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\Profile;
|
2019-05-02 21:26:02 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2019-05-02 20:49:33 +00:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the local directory of this node
|
|
|
|
*/
|
|
|
|
class Directory extends BaseModule
|
|
|
|
{
|
2019-11-05 21:48:54 +00:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-02 20:49:33 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$app = DI::app();
|
2019-12-15 22:44:33 +00:00
|
|
|
$config = DI::config();
|
2019-06-15 12:44:36 +00:00
|
|
|
|
2019-09-28 18:09:11 +00:00
|
|
|
if (($config->get('system', 'block_public') && !Session::isAuthenticated()) ||
|
|
|
|
($config->get('system', 'block_local_dir') && !Session::isAuthenticated())) {
|
2019-06-15 12:44:36 +00:00
|
|
|
throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
|
|
|
|
}
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
if (local_user()) {
|
|
|
|
$app->page['aside'] .= Widget::findPeople();
|
|
|
|
$app->page['aside'] .= Widget::follow();
|
|
|
|
}
|
|
|
|
|
|
|
|
$output = '';
|
|
|
|
$entries = [];
|
|
|
|
|
|
|
|
Nav::setSelected('directory');
|
|
|
|
|
2019-05-02 21:26:02 +00:00
|
|
|
$search = (!empty($_REQUEST['search']) ?
|
|
|
|
Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) :
|
|
|
|
'');
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
$gDirPath = '';
|
|
|
|
$dirURL = $config->get('system', 'directory');
|
|
|
|
if (strlen($dirURL)) {
|
|
|
|
$gDirPath = Profile::zrl($dirURL, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$pager = new Pager($app->query_string, 60);
|
|
|
|
|
|
|
|
$profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
|
|
|
|
|
|
|
|
if ($profiles['total'] === 0) {
|
|
|
|
info(L10n::t('No entries (some entries may be hidden).') . EOL);
|
|
|
|
} else {
|
|
|
|
if (in_array('small', $app->argv)) {
|
|
|
|
$photo = 'thumb';
|
|
|
|
} else {
|
|
|
|
$photo = 'photo';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($profiles['entries'] as $entry) {
|
|
|
|
$entries[] = self::formatEntry($entry, $photo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('directory_header.tpl');
|
|
|
|
|
|
|
|
$output .= Renderer::replaceMacros($tpl, [
|
2019-05-02 21:26:02 +00:00
|
|
|
'$search' => $search,
|
|
|
|
'$globaldir' => L10n::t('Global Directory'),
|
|
|
|
'$gDirPath' => $gDirPath,
|
|
|
|
'$desc' => L10n::t('Find on this site'),
|
2019-06-15 12:44:55 +00:00
|
|
|
'$contacts' => $entries,
|
2019-05-02 21:26:02 +00:00
|
|
|
'$finding' => L10n::t('Results for:'),
|
|
|
|
'$findterm' => (strlen($search) ? $search : ""),
|
|
|
|
'$title' => L10n::t('Site Directory'),
|
2019-05-02 20:49:33 +00:00
|
|
|
'$search_mod' => 'directory',
|
2019-05-02 21:26:02 +00:00
|
|
|
'$submit' => L10n::t('Find'),
|
|
|
|
'$paginate' => $pager->renderFull($profiles['total']),
|
2019-05-02 20:49:33 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format contact/profile/user data from the database into an usable
|
|
|
|
* array for displaying directory entries.
|
|
|
|
*
|
|
|
|
* @param array $contact The directory entry from the database.
|
|
|
|
* @param string $photo_size Avatar size (thumb, photo or micro).
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function formatEntry(array $contact, $photo_size = 'photo')
|
|
|
|
{
|
|
|
|
$itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['profile_url']);
|
|
|
|
|
|
|
|
$profile_link = $contact['profile_url'];
|
|
|
|
|
|
|
|
$pdesc = (($contact['pdesc']) ? $contact['pdesc'] . '<br />' : '');
|
|
|
|
|
|
|
|
$details = '';
|
|
|
|
if (strlen($contact['locality'])) {
|
|
|
|
$details .= $contact['locality'];
|
|
|
|
}
|
|
|
|
if (strlen($contact['region'])) {
|
|
|
|
if (strlen($contact['locality'])) {
|
|
|
|
$details .= ', ';
|
|
|
|
}
|
|
|
|
$details .= $contact['region'];
|
|
|
|
}
|
|
|
|
if (strlen($contact['country-name'])) {
|
|
|
|
if (strlen($details)) {
|
|
|
|
$details .= ', ';
|
|
|
|
}
|
|
|
|
$details .= $contact['country-name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = $contact;
|
|
|
|
|
|
|
|
if (!empty($profile['address'])
|
|
|
|
|| !empty($profile['locality'])
|
|
|
|
|| !empty($profile['region'])
|
|
|
|
|| !empty($profile['postal-code'])
|
|
|
|
|| !empty($profile['country-name'])
|
|
|
|
) {
|
|
|
|
$location = L10n::t('Location:');
|
|
|
|
} else {
|
|
|
|
$location = '';
|
|
|
|
}
|
|
|
|
|
2019-05-02 21:34:33 +00:00
|
|
|
$gender = (!empty($profile['gender']) ? L10n::t('Gender:') : false);
|
|
|
|
$marital = (!empty($profile['marital']) ? L10n::t('Status:') : false);
|
2019-05-02 20:49:33 +00:00
|
|
|
$homepage = (!empty($profile['homepage']) ? L10n::t('Homepage:') : false);
|
2019-05-02 21:34:33 +00:00
|
|
|
$about = (!empty($profile['about']) ? L10n::t('About:') : false);
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
$location_e = $location;
|
|
|
|
|
|
|
|
$photo_menu = [
|
|
|
|
'profile' => [L10n::t("View Profile"), Contact::magicLink($profile_link)]
|
|
|
|
];
|
|
|
|
|
|
|
|
$entry = [
|
|
|
|
'id' => $contact['id'],
|
2019-06-15 12:44:36 +00:00
|
|
|
'url' => Contact::magicLink($profile_link),
|
2019-05-02 20:49:33 +00:00
|
|
|
'itemurl' => $itemurl,
|
|
|
|
'thumb' => ProxyUtils::proxifyUrl($contact[$photo_size], false, ProxyUtils::SIZE_THUMB),
|
|
|
|
'img_hover' => $contact['name'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'details' => $details,
|
|
|
|
'account_type' => Contact::getAccountType($contact),
|
|
|
|
'profile' => $profile,
|
|
|
|
'location' => $location_e,
|
|
|
|
'tags' => $contact['pub_keywords'],
|
|
|
|
'gender' => $gender,
|
|
|
|
'pdesc' => $pdesc,
|
|
|
|
'marital' => $marital,
|
|
|
|
'homepage' => $homepage,
|
|
|
|
'about' => $about,
|
|
|
|
'photo_menu' => $photo_menu,
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
$hook = ['contact' => $contact, 'entry' => $entry];
|
|
|
|
|
|
|
|
Hook::callAll('directory_item', $hook);
|
|
|
|
|
|
|
|
unset($profile);
|
|
|
|
unset($location);
|
|
|
|
|
|
|
|
return $hook['entry'];
|
|
|
|
}
|
|
|
|
}
|