friendica/mod/directory.php

157 lines
4.3 KiB
PHP
Raw Normal View History

<?php
2010-07-10 09:45:18 +02:00
function directory_init(&$a) {
$a->set_pager_itemspage(60);
if(local_user()) {
require_once('include/contact_widgets.php');
$a->page['aside'] .= findpeople_widget();
}
else
unset($_SESSION['theme']);
2010-07-10 09:45:18 +02:00
}
function directory_post(&$a) {
if(x($_POST,'search'))
$a->data['search'] = $_POST['search'];
}
function directory_content(&$a) {
2011-05-17 03:52:27 +02:00
$everything = (($a->argc > 1 && $a->argv[1] === 'all' && is_site_admin()) ? true : false);
if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
$everything = false;
2011-05-17 03:52:27 +02:00
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
notice( t('Public access denied.') . EOL);
return;
}
2010-11-01 00:38:22 +01:00
$o = '';
nav_set_selected('directory');
2010-07-10 12:26:21 +02:00
if(x($a->data,'search'))
$search = notags(trim($a->data['search']));
else
2010-12-20 04:55:03 +01:00
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template('directory_header.tpl');
$globaldir = '';
$gdirpath = dirname(get_config('system','directory_submit_url'));
if(strlen($gdirpath)) {
$globaldir = '<ul><li><div id="global-directory-link"><a href="'
. $gdirpath . '">' . t('Global Directory') . '</a></div></li></ul>';
}
2011-05-17 03:52:27 +02:00
$admin = '';
if(is_site_admin()) {
if($everything)
$admin = '<ul><li><div id="directory-admin-link"><a href="' . $a->get_baseurl() . '/directory' . '">' . t('Normal site view') . '</a></div></li></ul>';
else
$admin = '<ul><li><div id="directory-admin-link"><a href="' . $a->get_baseurl() . '/directory/all' . '">' . t('Admin - View all site entries') . '</a></div></li></ul>';
2011-05-17 03:52:27 +02:00
}
2010-07-09 12:10:28 +02:00
$o .= replace_macros($tpl, array(
2010-07-13 05:16:27 +02:00
'$search' => $search,
'$globaldir' => $globaldir,
'$desc' => t('Find on this site'),
2011-05-17 03:52:27 +02:00
'$admin' => $admin,
'$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""),
'$sitedir' => t('Site Directory'),
'$submit' => t('Find')
2010-07-09 12:10:28 +02:00
));
2010-07-10 07:47:32 +02:00
if($search)
$search = dbesc($search);
$sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `pdesc`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`work`,`education`,`pub_keywords`,`prv_keywords` ) AGAINST ('$search' IN BOOLEAN MODE) " : "");
2010-07-10 07:47:32 +02:00
2011-05-17 03:52:27 +02:00
$publish = ((get_config('system','publish_all') || $everything) ? '' : " AND `publish` = 1 " );
2010-07-10 09:45:18 +02:00
$r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra ");
2010-07-10 09:45:18 +02:00
if(count($r))
$a->set_pager_total($r[0]['total']);
2011-05-17 03:52:27 +02:00
if($everything)
$order = " ORDER BY `register_date` DESC ";
else
$order = " ORDER BY `name` ASC ";
2010-07-10 09:45:18 +02:00
2011-05-17 03:52:27 +02:00
$r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ",
2010-07-10 09:45:18 +02:00
intval($a->pager['start']),
intval($a->pager['itemspage'])
);
if(count($r)) {
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template('directory_item.tpl');
2010-07-10 02:39:55 +02:00
if(in_array('small', $a->argv))
$photo = 'thumb';
else
$photo = 'photo';
foreach($r as $rr) {
2010-07-31 11:18:37 +02:00
2010-07-10 02:39:55 +02:00
$profile_link = $a->get_baseurl() . '/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']))
$details .= $rr['locality'];
if(strlen($rr['region'])) {
if(strlen($rr['locality']))
$details .= ', ';
$details .= $rr['region'];
}
if(strlen($rr['country-name'])) {
if(strlen($details))
$details .= ', ';
$details .= $rr['country-name'];
}
2010-07-10 07:47:32 +02:00
if(strlen($rr['dob'])) {
if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
$details .= '<br />' . t('Age: ') . $years ;
2010-07-10 07:47:32 +02:00
}
2010-07-10 02:39:55 +02:00
if(strlen($rr['gender']))
$details .= '<br />' . t('Gender: ') . $rr['gender'];
2010-07-09 10:17:20 +02:00
2010-12-26 00:01:02 +01:00
$entry = replace_macros($tpl,array(
2010-07-09 12:10:28 +02:00
'$id' => $rr['id'],
'$profile-link' => $profile_link,
2010-07-10 02:39:55 +02:00
'$photo' => $rr[$photo],
2010-07-09 12:10:28 +02:00
'$alt-text' => $rr['name'],
'$name' => $rr['name'],
2011-01-19 04:25:28 +01:00
'$details' => $pdesc . $details
2010-07-09 10:17:20 +02:00
));
2010-12-26 00:01:02 +01:00
$arr = array('contact' => $rr, 'entry' => $entry);
call_hooks('directory_item', $arr);
$o .= $entry;
}
2010-12-26 00:01:02 +01:00
2010-07-09 12:10:28 +02:00
$o .= "<div class=\"directory-end\" ></div>\r\n";
2010-07-10 09:45:18 +02:00
$o .= paginate($a);
}
else
info( t("No entries \x28some entries may be hidden\x29.") . EOL);
2010-07-09 12:10:28 +02:00
return $o;
}