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