2010-07-03 01:37:43 +00:00
|
|
|
<?php
|
2018-01-15 02:22:39 +00:00
|
|
|
/**
|
|
|
|
* @file mod/directory.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-15 19:51:56 +00:00
|
|
|
use Friendica\Content\Nav;
|
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;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 02:22:39 +00:00
|
|
|
use Friendica\Model\Profile;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-03-03 13:40:16 +00:00
|
|
|
function directory_init(App $a)
|
|
|
|
{
|
2010-07-10 07:45:18 +00:00
|
|
|
$a->set_pager_itemspage(60);
|
2011-10-12 02:27:58 +00:00
|
|
|
|
2018-03-03 13:40:16 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (x($_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)
|
|
|
|
{
|
2014-08-12 22:13:13 +00:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2018-03-03 13:40:16 +00:00
|
|
|
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-03-03 13:40:16 +00:00
|
|
|
if (x($a->data, 'search')) {
|
2010-12-13 02:43:32 +00:00
|
|
|
$search = notags(trim($a->data['search']));
|
2018-03-03 13:40:16 +00:00
|
|
|
} else {
|
|
|
|
$search = ((x($_GET, 'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
|
|
|
}
|
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) {
|
2010-07-10 05:47:32 +00:00
|
|
|
$search = dbesc($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%'))";
|
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-03-28 08:04:20 +00:00
|
|
|
$cnt = dba::fetch_first("SELECT COUNT(*) AS `total` FROM `profile`
|
2018-03-03 18:31:15 +00:00
|
|
|
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
2018-03-28 08:04:20 +00:00
|
|
|
WHERE `is-default` $publish AND NOT `user`.`blocked` $sql_extra");
|
2018-03-03 19:08:41 +00:00
|
|
|
if (DBM::is_result($cnt)) {
|
|
|
|
$a->set_pager_total($cnt['total']);
|
2018-03-03 13:40:16 +00:00
|
|
|
}
|
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-03-03 13:40:16 +00:00
|
|
|
$limit = intval($a->pager['start'])."," . intval($a->pager['itemspage']);
|
2010-07-10 07:45:18 +00:00
|
|
|
|
2018-03-03 13:06:42 +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-03-03 13:40:16 +00:00
|
|
|
WHERE `is-default` $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit
|
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($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-03-03 13:06:42 +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-01-21 18:33:59 +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-03-03 13:40:16 +00:00
|
|
|
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:');
|
|
|
|
}
|
2012-07-01 11:46:03 +00:00
|
|
|
|
2018-03-03 13:40:16 +00:00
|
|
|
$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);
|
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,
|
|
|
|
'thumb' => proxy_url($rr[$photo], false, PROXY_SIZE_THUMB),
|
|
|
|
'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-03-03 13:06:42 +00:00
|
|
|
dba::close($r);
|
2010-12-25 23:01:02 +00:00
|
|
|
|
2015-10-16 19:44:10 +00:00
|
|
|
$tpl = get_markup_template('directory_header.tpl');
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$o .= replace_macros($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'),
|
|
|
|
'$paginate' => paginate($a),
|
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
|
|
|
}
|