2010-07-03 03:37:43 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
|
|
|
* @file mod/directory.php
|
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
function directory_init(App $a)
|
|
|
|
{
|
2010-07-10 09:45:18 +02:00
|
|
|
$a->set_pager_itemspage(60);
|
2011-10-12 04:27:58 +02:00
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
if (local_user()) {
|
2018-01-15 15:50:06 +01:00
|
|
|
$a->page['aside'] .= Widget::findPeople();
|
|
|
|
$a->page['aside'] .= Widget::follow();
|
|
|
|
} else {
|
2011-10-12 04:27:58 +02:00
|
|
|
unset($_SESSION['theme']);
|
2012-09-07 01:24:34 +02:00
|
|
|
unset($_SESSION['mobile-theme']);
|
|
|
|
}
|
2010-07-10 09:45:18 +02:00
|
|
|
}
|
2010-07-03 03:37:43 +02:00
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
function directory_post(App $a)
|
|
|
|
{
|
|
|
|
if (x($_POST, 'search')) {
|
2010-12-13 03:43:32 +01:00
|
|
|
$a->data['search'] = $_POST['search'];
|
2018-03-03 14:40:16 +01:00
|
|
|
}
|
2010-12-13 03:43:32 +01:00
|
|
|
}
|
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
function directory_content(App $a)
|
|
|
|
{
|
2014-08-13 00:13:13 +02:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
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);
|
2011-04-22 02:29:47 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-01 00:38:22 +01:00
|
|
|
$o = '';
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('directory');
|
2010-07-10 12:26:21 +02:00
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
if (x($a->data, 'search')) {
|
2010-12-13 03:43:32 +01:00
|
|
|
$search = notags(trim($a->data['search']));
|
2018-03-03 14:40:16 +01:00
|
|
|
} else {
|
|
|
|
$search = ((x($_GET, 'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
|
|
|
}
|
2010-07-03 03:37:43 +02:00
|
|
|
|
2015-10-16 21:44:10 +02:00
|
|
|
$gdirpath = '';
|
2018-03-03 14:40:16 +01:00
|
|
|
$dirurl = Config::get('system', 'directory');
|
|
|
|
if (strlen($dirurl)) {
|
|
|
|
$gdirpath = Profile::zrl($dirurl, true);
|
2010-09-24 03:33:07 +02:00
|
|
|
}
|
2010-08-19 13:59:31 +02:00
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
if ($search) {
|
2010-07-10 07:47:32 +02:00
|
|
|
$search = dbesc($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%'))";
|
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
|
|
|
|
2011-01-03 06:01:07 +01:00
|
|
|
|
2018-07-21 04:01:53 +02:00
|
|
|
$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-03-03 20:08:41 +01:00
|
|
|
if (DBM::is_result($cnt)) {
|
|
|
|
$a->set_pager_total($cnt['total']);
|
2018-03-03 14:40:16 +01:00
|
|
|
}
|
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
|
|
|
|
2018-03-03 14:40:16 +01:00
|
|
|
$limit = intval($a->pager['start'])."," . intval($a->pager['itemspage']);
|
2010-07-10 09:45:18 +02:00
|
|
|
|
2018-07-20 14:19:26 +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`
|
2015-11-28 02:56:36 +01:00
|
|
|
LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
|
2015-11-29 00:09:09 +01:00
|
|
|
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-03-03 14:40:16 +01:00
|
|
|
);
|
2017-11-08 04:57:46 +01:00
|
|
|
if (DBM::is_result($r)) {
|
2016-12-20 21:15:53 +01:00
|
|
|
if (in_array('small', $a->argv)) {
|
2010-07-10 02:39:55 +02:00
|
|
|
$photo = 'thumb';
|
2018-03-03 14:40:16 +01:00
|
|
|
} else {
|
2010-07-10 02:39:55 +02:00
|
|
|
$photo = 'photo';
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2010-07-10 02:39:55 +02:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($rr = DBA::fetch($r)) {
|
2015-11-28 21:12:44 +01:00
|
|
|
$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']);
|
2015-11-28 02:56:36 +01:00
|
|
|
|
2016-02-17 23:47:32 +01:00
|
|
|
$profile_link = 'profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
|
2014-08-13 00:13:13 +02:00
|
|
|
|
2011-01-19 04:25:28 +01:00
|
|
|
$pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
|
|
|
|
|
2010-07-10 02:39:55 +02:00
|
|
|
$details = '';
|
2018-03-03 14:40:16 +01:00
|
|
|
if (strlen($rr['locality'])) {
|
2010-07-10 02:39:55 +02:00
|
|
|
$details .= $rr['locality'];
|
2018-03-03 14:40:16 +01:00
|
|
|
}
|
|
|
|
if (strlen($rr['region'])) {
|
|
|
|
if (strlen($rr['locality'])) {
|
2010-07-10 02:39:55 +02:00
|
|
|
$details .= ', ';
|
2018-03-03 14:40:16 +01:00
|
|
|
}
|
2010-07-10 02:39:55 +02:00
|
|
|
$details .= $rr['region'];
|
|
|
|
}
|
2018-03-03 14:40:16 +01:00
|
|
|
if (strlen($rr['country-name'])) {
|
|
|
|
if (strlen($details)) {
|
2010-07-10 02:39:55 +02:00
|
|
|
$details .= ', ';
|
2018-03-03 14:40:16 +01:00
|
|
|
}
|
2010-07-10 02:39:55 +02:00
|
|
|
$details .= $rr['country-name'];
|
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
// 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 ;
|
2015-11-28 02:56:36 +01:00
|
|
|
// }
|
2017-03-21 17:02:59 +01:00
|
|
|
// if(strlen($rr['gender']))
|
2018-01-21 19:33:59 +01:00
|
|
|
// $details .= '<br />' . L10n::t('Gender: ') . $rr['gender'];
|
2015-11-28 02:56:36 +01:00
|
|
|
|
2012-07-01 13:46:03 +02:00
|
|
|
$profile = $rr;
|
|
|
|
|
2018-03-03 14:40:16 +01: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 13:46:03 +02:00
|
|
|
|
2018-03-03 14:40:16 +01: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-13 00:13:13 +02:00
|
|
|
|
2017-11-27 07:44:49 +01:00
|
|
|
$location_e = $location;
|
2016-02-17 08:08:28 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$photo_menu = [
|
2018-06-02 10:05:06 +02:00
|
|
|
'profile' => [L10n::t("View Profile"), Contact::magicLink($profile_link)]
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$entry = [
|
2018-03-03 14:40:16 +01: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 23:03:39 +01:00
|
|
|
'account_type' => Contact::getAccountType($rr),
|
2018-03-03 14:40:16 +01: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 21:44:10 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2010-07-03 03:37:43 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$arr = ['contact' => $rr, 'entry' => $entry];
|
2010-12-26 00:01:02 +01:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('directory_item', $arr);
|
2014-08-13 00:13:13 +02:00
|
|
|
|
2012-07-01 13:46:03 +02:00
|
|
|
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'];
|
2010-07-03 03:37:43 +02:00
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
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');
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros($tpl, [
|
2018-03-03 14:40:16 +01:00
|
|
|
'$search' => $search,
|
2018-01-21 19:33:59 +01:00
|
|
|
'$globaldir' => L10n::t('Global Directory'),
|
2018-03-03 14:40:16 +01: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 14:05:12 +01:00
|
|
|
]);
|
2018-01-21 19:33:59 +01:00
|
|
|
} else {
|
|
|
|
info(L10n::t("No entries \x28some entries may be hidden\x29.") . EOL);
|
2010-07-03 03:37:43 +02:00
|
|
|
}
|
2010-07-09 12:10:28 +02:00
|
|
|
|
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|