2010-07-29 03:24:07 +02:00
|
|
|
<?php
|
2015-11-06 00:47:54 +01:00
|
|
|
require_once('include/Contact.php');
|
2012-02-23 11:22:32 +01:00
|
|
|
require_once('include/contact_selectors.php');
|
2010-07-29 03:24:07 +02:00
|
|
|
|
|
|
|
function viewcontacts_init(&$a) {
|
|
|
|
|
2011-04-22 04:12:22 +02:00
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
return;
|
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2015-11-30 03:25:23 +01:00
|
|
|
nav_set_selected('home');
|
|
|
|
|
|
|
|
if($a->argc > 1) {
|
|
|
|
$nick = $a->argv[1];
|
|
|
|
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
|
|
|
|
dbesc($nick)
|
|
|
|
);
|
|
|
|
|
|
|
|
if(! count($r))
|
|
|
|
return;
|
|
|
|
|
|
|
|
$a->data['user'] = $r[0];
|
|
|
|
$a->profile_uid = $r[0]['uid'];
|
|
|
|
$is_owner = (local_user() && (local_user() == $a->profile_uid));
|
|
|
|
|
|
|
|
profile_load($a,$a->argv[1]);
|
|
|
|
}
|
2010-07-29 03:24:07 +02:00
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2010-07-29 03:24:07 +02:00
|
|
|
function viewcontacts_content(&$a) {
|
2015-01-28 10:09:16 +01:00
|
|
|
require_once("mod/proxy.php");
|
|
|
|
|
2011-04-22 04:12:22 +02:00
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
notice( t('Public access denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-30 03:25:23 +01:00
|
|
|
$o = "";
|
|
|
|
|
|
|
|
// tabs
|
|
|
|
$o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']);
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2016-06-25 16:20:44 +02:00
|
|
|
if(((! count($a->profile)) || ($a->profile['hide-friends']))) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
2016-06-28 12:32:09 +02:00
|
|
|
return $o;
|
2016-06-25 16:20:44 +02:00
|
|
|
}
|
|
|
|
|
2015-11-29 09:56:34 +01:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
|
|
|
|
WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
|
|
|
|
AND `network` IN ('%s', '%s', '%s')",
|
|
|
|
intval($a->profile['uid']),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS)
|
2010-07-29 03:24:07 +02:00
|
|
|
);
|
|
|
|
if(count($r))
|
2010-07-30 15:09:20 +02:00
|
|
|
$a->set_pager_total($r[0]['total']);
|
2010-07-29 03:24:07 +02:00
|
|
|
|
2015-11-29 09:56:34 +01:00
|
|
|
$r = q("SELECT * FROM `contact`
|
|
|
|
WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
|
|
|
|
AND `network` IN ('%s', '%s', '%s')
|
|
|
|
ORDER BY `name` ASC LIMIT %d, %d",
|
2010-07-29 03:24:07 +02:00
|
|
|
intval($a->profile['uid']),
|
2015-11-29 09:56:34 +01:00
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS),
|
2010-07-29 03:24:07 +02:00
|
|
|
intval($a->pager['start']),
|
|
|
|
intval($a->pager['itemspage'])
|
|
|
|
);
|
2015-11-29 09:56:34 +01:00
|
|
|
if(!count($r)) {
|
|
|
|
info(t('No contacts.').EOL);
|
2010-07-29 03:24:07 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2012-02-23 11:22:32 +01:00
|
|
|
$contacts = array();
|
2010-07-29 03:24:07 +02:00
|
|
|
|
|
|
|
foreach($r as $rr) {
|
|
|
|
if($rr['self'])
|
|
|
|
continue;
|
|
|
|
|
2015-10-18 17:12:48 +02:00
|
|
|
$url = $rr['url'];
|
2011-06-06 06:05:55 +02:00
|
|
|
|
|
|
|
// route DFRN profiles through the redirect
|
|
|
|
|
|
|
|
$is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false);
|
|
|
|
|
|
|
|
if($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel']))
|
|
|
|
$url = 'redir/' . $rr['id'];
|
2012-03-30 05:58:32 +02:00
|
|
|
else
|
|
|
|
$url = zrl($url);
|
2011-06-06 06:05:55 +02:00
|
|
|
|
2016-06-05 13:57:11 +02:00
|
|
|
$contact_details = get_contact_details_by_url($rr['url'], $a->profile['uid'], $rr);
|
2015-11-06 00:47:54 +01:00
|
|
|
|
2012-02-23 11:22:32 +01:00
|
|
|
$contacts[] = array(
|
|
|
|
'id' => $rr['id'],
|
2016-06-05 13:57:11 +02:00
|
|
|
'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $contact_details['name'], $rr['url']),
|
2015-11-28 18:49:37 +01:00
|
|
|
'photo_menu' => contact_photo_menu($rr),
|
2016-06-05 13:57:11 +02:00
|
|
|
'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
|
|
|
|
'name' => htmlentities(substr($contact_details['name'],0,20)),
|
|
|
|
'username' => htmlentities($contact_details['name']),
|
2015-11-06 00:47:54 +01:00
|
|
|
'details' => $contact_details['location'],
|
2015-11-28 03:50:45 +01:00
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
|
|
|
'account_type' => (($contact_details['community']) ? t('Forum') : ''),
|
2012-02-23 11:22:32 +01:00
|
|
|
'url' => $url,
|
|
|
|
'sparkle' => '',
|
2015-11-06 00:47:54 +01:00
|
|
|
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
|
2015-07-16 10:09:59 +02:00
|
|
|
'network' => network_to_name($rr['network'], $rr['url']),
|
2012-02-23 11:22:32 +01:00
|
|
|
);
|
2010-07-29 03:24:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-23 11:22:32 +01:00
|
|
|
$tpl = get_markup_template("viewcontact_template.tpl");
|
2012-12-25 19:48:02 +01:00
|
|
|
$o .= replace_macros($tpl, array(
|
2015-11-30 03:25:23 +01:00
|
|
|
'$title' => t('Contacts'),
|
2012-02-23 11:22:32 +01:00
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$paginate' => paginate($a),
|
|
|
|
));
|
|
|
|
|
2010-07-29 03:24:07 +02:00
|
|
|
|
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|