2019-05-02 20:49:33 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00: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-02 20:49:33 +00:00
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Pager;
|
|
|
|
use Friendica\Content\Widget;
|
|
|
|
use Friendica\Core\Hook;
|
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;
|
2020-07-31 04:19:20 +00:00
|
|
|
use Friendica\Model;
|
2019-05-02 20:49:33 +00:00
|
|
|
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\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())) {
|
2020-01-18 19:52:34 +00:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
|
2019-06-15 12:44:36 +00:00
|
|
|
}
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
if (local_user()) {
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] .= Widget::findPeople();
|
|
|
|
DI::page()['aside'] .= Widget::follow();
|
2019-05-02 20:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2020-02-16 16:53:52 +00:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 60);
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
$profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
|
|
|
|
|
|
|
|
if ($profiles['total'] === 0) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('No entries (some entries may be hidden).'));
|
2019-05-02 20:49:33 +00:00
|
|
|
} else {
|
|
|
|
if (in_array('small', $app->argv)) {
|
|
|
|
$photo = 'thumb';
|
|
|
|
} else {
|
|
|
|
$photo = 'photo';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($profiles['entries'] as $entry) {
|
2020-07-31 04:19:20 +00:00
|
|
|
$contact = Model\Contact::getByURLForUser($entry['url'], local_user());
|
|
|
|
if (!empty($contact)) {
|
|
|
|
$entries[] = Contact::getContactTemplateVars($contact);
|
|
|
|
}
|
2019-05-02 20:49:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('directory_header.tpl');
|
|
|
|
|
|
|
|
$output .= Renderer::replaceMacros($tpl, [
|
2019-05-02 21:26:02 +00:00
|
|
|
'$search' => $search,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$globaldir' => DI::l10n()->t('Global Directory'),
|
2019-05-02 21:26:02 +00:00
|
|
|
'$gDirPath' => $gDirPath,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$desc' => DI::l10n()->t('Find on this site'),
|
2019-06-15 12:44:55 +00:00
|
|
|
'$contacts' => $entries,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$finding' => DI::l10n()->t('Results for:'),
|
2019-05-02 21:26:02 +00:00
|
|
|
'$findterm' => (strlen($search) ? $search : ""),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$title' => DI::l10n()->t('Site Directory'),
|
2019-05-02 20:49:33 +00:00
|
|
|
'$search_mod' => 'directory',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$submit' => DI::l10n()->t('Find'),
|
2019-05-02 21:26:02 +00:00
|
|
|
'$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')
|
|
|
|
{
|
2020-04-28 19:36:10 +00:00
|
|
|
$itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['url']);
|
2019-05-02 20:49:33 +00:00
|
|
|
|
2020-04-28 19:36:10 +00:00
|
|
|
$profile_link = $contact['url'];
|
2019-05-02 20:49:33 +00:00
|
|
|
|
2020-02-09 07:36:19 +00:00
|
|
|
$about = (($contact['about']) ? $contact['about'] . '<br />' : '');
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
$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'])
|
|
|
|
) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$location = DI::l10n()->t('Location:');
|
2019-05-02 20:49:33 +00:00
|
|
|
} else {
|
|
|
|
$location = '';
|
|
|
|
}
|
|
|
|
|
2020-01-18 19:52:34 +00:00
|
|
|
$homepage = (!empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false);
|
2019-05-02 20:49:33 +00:00
|
|
|
|
|
|
|
$location_e = $location;
|
|
|
|
|
|
|
|
$photo_menu = [
|
2020-07-31 04:19:20 +00:00
|
|
|
'profile' => [DI::l10n()->t("View Profile"), Model\Contact::magicLink($profile_link)]
|
2019-05-02 20:49:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$entry = [
|
|
|
|
'id' => $contact['id'],
|
2020-07-31 04:19:20 +00:00
|
|
|
'url' => Model\Contact::magicLink($profile_link),
|
2019-05-02 20:49:33 +00:00
|
|
|
'itemurl' => $itemurl,
|
2020-07-31 04:19:20 +00:00
|
|
|
'thumb' => Model\Contact::getThumb($contact),
|
2019-05-02 20:49:33 +00:00
|
|
|
'img_hover' => $contact['name'],
|
|
|
|
'name' => $contact['name'],
|
|
|
|
'details' => $details,
|
2020-07-31 04:19:20 +00:00
|
|
|
'account_type' => Model\Contact::getAccountType($contact),
|
2019-05-02 20:49:33 +00:00
|
|
|
'profile' => $profile,
|
|
|
|
'location' => $location_e,
|
|
|
|
'tags' => $contact['pub_keywords'],
|
2020-02-09 07:36:19 +00:00
|
|
|
'about' => $about,
|
2019-05-02 20:49:33 +00:00
|
|
|
'homepage' => $homepage,
|
|
|
|
'photo_menu' => $photo_menu,
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
$hook = ['contact' => $contact, 'entry' => $entry];
|
|
|
|
|
|
|
|
Hook::callAll('directory_item', $hook);
|
|
|
|
|
|
|
|
unset($profile);
|
|
|
|
unset($location);
|
|
|
|
|
|
|
|
return $hook['entry'];
|
|
|
|
}
|
|
|
|
}
|