friendica/mod/directory.php

225 lines
6.3 KiB
PHP
Raw Normal View History

<?php
/**
* @file mod/directory.php
*/
use Friendica\App;
use Friendica\Content\Nav;
use Friendica\Content\Pager;
use Friendica\Content\Widget;
use Friendica\Core\Addon;
use Friendica\Core\Config;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
2017-12-07 15:04:24 +01:00
use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Util\Proxy as ProxyUtils;
function directory_init(App $a)
{
if (local_user()) {
$a->page['aside'] .= Widget::findPeople();
$a->page['aside'] .= Widget::follow();
} else {
unset($_SESSION['theme']);
unset($_SESSION['mobile-theme']);
}
2010-07-10 09:45:18 +02:00
}
function directory_post(App $a)
{
if (x($_POST, 'search')) {
$a->data['search'] = $_POST['search'];
}
}
function directory_content(App $a)
{
if ((Config::get('system', 'block_public') && !local_user() && !remote_user())
|| (Config::get('system', 'block_local_dir') && !local_user() && !remote_user())
) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Public access denied.') . EOL);
return;
}
2010-11-01 00:38:22 +01:00
$o = '';
Nav::setSelected('directory');
2010-07-10 12:26:21 +02:00
if (x($a->data, 'search')) {
$search = notags(trim($a->data['search']));
} else {
$search = ((x($_GET, 'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
}
2015-10-16 21:44:10 +02:00
$gdirpath = '';
$dirurl = Config::get('system', 'directory');
if (strlen($dirurl)) {
$gdirpath = Profile::zrl($dirurl, true);
}
if ($search) {
2018-07-21 15:10:13 +02:00
$search = DBA::escape($search);
2015-06-10 22:54:41 +02:00
$sql_extra = " AND ((`profile`.`name` LIKE '%$search%') OR
(`user`.`nickname` LIKE '%$search%') OR
2015-12-12 01:27:31 +01:00
(`profile`.`pdesc` LIKE '%$search%') OR
(`profile`.`locality` LIKE '%$search%') OR
(`profile`.`region` LIKE '%$search%') OR
(`profile`.`country-name` LIKE '%$search%') OR
(`profile`.`gender` LIKE '%$search%') OR
(`profile`.`marital` LIKE '%$search%') OR
(`profile`.`sexual` LIKE '%$search%') OR
(`profile`.`about` LIKE '%$search%') OR
(`profile`.`romance` LIKE '%$search%') OR
(`profile`.`work` LIKE '%$search%') OR
(`profile`.`education` LIKE '%$search%') OR
(`profile`.`pub_keywords` LIKE '%$search%') OR
(`profile`.`prv_keywords` LIKE '%$search%'))";
} else {
$sql_extra = '';
2015-06-10 22:54:41 +02:00
}
2010-07-10 07:47:32 +02:00
2018-03-28 10:04:20 +02:00
$publish = (Config::get('system', 'publish_all') ? '' : " AND `publish` = 1 " );
2010-07-10 09:45:18 +02:00
$total = 0;
$cnt = DBA::fetchFirst("SELECT COUNT(*) AS `total` FROM `profile`
2018-03-03 19:31:15 +01:00
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
2018-06-20 17:59:13 +02:00
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` $sql_extra");
2018-07-21 14:46:04 +02:00
if (DBA::isResult($cnt)) {
$total = $cnt['total'];
}
$pager = new Pager($a->query_string, 60);
2010-07-10 09:45:18 +02:00
2015-06-10 22:54:41 +02:00
$order = " ORDER BY `name` ASC ";
2010-07-10 09:45:18 +02:00
$limit = $pager->getStart()."," . $pager->getItemsPerPage();
2010-07-10 09:45:18 +02:00
$r = DBA::p("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
2015-12-01 18:31:08 +01:00
`contact`.`addr`, `contact`.`url` AS profile_url FROM `profile`
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
2018-06-20 17:59:13 +02:00
WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `contact`.`self`
2018-06-20 17:50:09 +02:00
$sql_extra $order LIMIT $limit"
);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r)) {
if (in_array('small', $a->argv)) {
2010-07-10 02:39:55 +02:00
$photo = 'thumb';
} else {
2010-07-10 02:39:55 +02:00
$photo = 'photo';
}
2010-07-10 02:39:55 +02:00
while ($rr = DBA::fetch($r)) {
$itemurl= '';
2010-07-31 11:18:37 +02:00
2015-12-01 18:31:08 +01:00
$itemurl = (($rr['addr'] != "") ? $rr['addr'] : $rr['profile_url']);
$profile_link = 'profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
2011-01-19 04:25:28 +01:00
$pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
2010-07-10 02:39:55 +02:00
$details = '';
if (strlen($rr['locality'])) {
2010-07-10 02:39:55 +02:00
$details .= $rr['locality'];
}
if (strlen($rr['region'])) {
if (strlen($rr['locality'])) {
2010-07-10 02:39:55 +02:00
$details .= ', ';
}
2010-07-10 02:39:55 +02:00
$details .= $rr['region'];
}
if (strlen($rr['country-name'])) {
if (strlen($details)) {
2010-07-10 02:39:55 +02:00
$details .= ', ';
}
2010-07-10 02:39:55 +02:00
$details .= $rr['country-name'];
}
// if(strlen($rr['dob'])) {
// if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
2018-01-21 19:33:59 +01:00
// $details .= '<br />' . L10n::t('Age: ') . $years ;
// }
// if(strlen($rr['gender']))
2018-01-21 19:33:59 +01:00
// $details .= '<br />' . L10n::t('Gender: ') . $rr['gender'];
$profile = $rr;
if ((x($profile, 'address') == 1)
|| (x($profile, 'locality') == 1)
|| (x($profile, 'region') == 1)
|| (x($profile, 'postal-code') == 1)
|| (x($profile, 'country-name') == 1)
) {
$location = L10n::t('Location:');
} else {
$location = '';
}
$gender = ((x($profile, 'gender') == 1) ? L10n::t('Gender:') : false);
$marital = ((x($profile, 'marital') == 1) ? L10n::t('Status:') : false);
$homepage = ((x($profile, 'homepage') == 1) ? L10n::t('Homepage:') : false);
$about = ((x($profile, 'about') == 1) ? L10n::t('About:') : false);
$location_e = $location;
2016-02-17 08:08:28 +01:00
$photo_menu = [
2018-06-02 10:05:06 +02:00
'profile' => [L10n::t("View Profile"), Contact::magicLink($profile_link)]
];
2012-12-22 20:57:29 +01:00
$entry = [
'id' => $rr['id'],
'url' => $profile_link,
'itemurl' => $itemurl,
'thumb' => ProxyUtils::proxifyUrl($rr[$photo], false, ProxyUtils::SIZE_THUMB),
'img_hover' => $rr['name'],
'name' => $rr['name'],
'details' => $details,
'account_type' => Contact::getAccountType($rr),
'profile' => $profile,
'location' => $location_e,
'tags' => $rr['pub_keywords'],
'gender' => $gender,
'pdesc' => $pdesc,
'marital' => $marital,
'homepage' => $homepage,
'about' => $about,
'photo_menu' => $photo_menu,
2015-10-16 21:44:10 +02:00
];
$arr = ['contact' => $rr, 'entry' => $entry];
2010-12-26 00:01:02 +01:00
Addon::callHooks('directory_item', $arr);
unset($profile);
unset($location);
2010-12-26 00:01:02 +01:00
2018-01-21 19:33:59 +01:00
if (!$arr['entry']) {
2015-10-16 21:44:10 +02:00
continue;
2018-01-21 19:33:59 +01:00
}
2015-10-16 21:44:10 +02:00
$entries[] = $arr['entry'];
}
DBA::close($r);
2010-12-26 00:01:02 +01:00
2015-10-16 21:44:10 +02:00
$tpl = get_markup_template('directory_header.tpl');
$o .= Renderer::replaceMacros($tpl, [
'$search' => $search,
2018-01-21 19:33:59 +01:00
'$globaldir' => L10n::t('Global Directory'),
'$gdirpath' => $gdirpath,
'$desc' => L10n::t('Find on this site'),
'$contacts' => $entries,
'$finding' => L10n::t('Results for:'),
'$findterm' => (strlen($search) ? $search : ""),
'$title' => L10n::t('Site Directory'),
'$submit' => L10n::t('Find'),
'$paginate' => $pager->renderFull($total),
]);
2018-01-21 19:33:59 +01:00
} else {
info(L10n::t("No entries \x28some entries may be hidden\x29.") . EOL);
}
2010-07-09 12:10:28 +02:00
return $o;
}