friendica/mod/common.php

118 lines
2.1 KiB
PHP
Raw Normal View History

2011-11-02 03:16:33 +01:00
<?php
require_once('include/socgraph.php');
function common_content(&$a) {
$o = '';
2012-05-04 10:46:36 +02:00
$cmd = $a->argv[1];
$uid = intval($a->argv[2]);
$cid = intval($a->argv[3]);
$zcid = 0;
if($cmd !== 'loc' && $cmd != 'rem')
return;
if(! $uid)
2011-11-02 03:16:33 +01:00
return;
if($cmd === 'loc' && $cid) {
$c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2012-05-04 10:46:36 +02:00
intval($cid),
intval($uid)
);
}
else {
$c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
2012-05-04 10:46:36 +02:00
intval($uid)
);
}
2011-11-02 03:16:33 +01:00
2015-05-27 12:44:40 +02:00
$vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
'$name' => htmlentities($c[0]['name']),
2015-05-30 02:21:30 +02:00
'$photo' => $c[0]['photo'],
'url' => z_root() . '/contacts/' . $cid
));
2015-05-27 12:44:40 +02:00
2015-05-30 02:21:30 +02:00
if(! x($a->page,'aside'))
$a->page['aside'] = '';
$a->page['aside'] .= $vcard_widget;
2011-11-02 03:16:33 +01:00
if(! count($c))
return;
2012-05-04 10:46:36 +02:00
if(! $cid) {
if(get_my_url()) {
$r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
2012-05-04 10:46:36 +02:00
dbesc(normalise_link(get_my_url())),
intval($profile_uid)
);
if(count($r))
$cid = $r[0]['id'];
else {
$r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
2012-05-04 10:46:36 +02:00
dbesc(normalise_link(get_my_url()))
);
if(count($r))
$zcid = $r[0]['id'];
}
}
}
if($cid == 0 && $zcid == 0)
return;
if($cid)
$t = count_common_friends($uid,$cid);
else
$t = count_common_friends_zcid($uid,$zcid);
$a->set_pager_total($t);
if(! $t) {
notice( t('No contacts in common.') . EOL);
return $o;
}
if($cid)
$r = common_friends($uid,$cid);
else
$r = common_friends_zcid($uid,$zcid);
2011-11-02 03:16:33 +01:00
if(! count($r)) {
return $o;
}
$id = 0;
2011-11-02 03:16:33 +01:00
foreach($r as $rr) {
$entry = array(
'url' => $rr['url'],
'itemurl' => $rr['url'],
'name' => htmlentities($rr['name']),
'thumb' => $rr['photo'],
'img_hover' => htmlentities($rr['name']),
'tags' => '',
'id' => ++$id,
);
$entries[] = $entry;
2011-11-02 03:16:33 +01:00
}
$tpl = get_markup_template('viewcontact_template.tpl');
$o .= replace_macros($tpl,array(
'$title' => t('Common Friends'),
'$contacts' => $entries,
));
2011-11-02 03:16:33 +01:00
// $o .= paginate($a);
return $o;
}