3 require_once('include/socgraph.php');
4 require_once('include/Contact.php');
5 require_once('include/contact_selectors.php');
6 require_once('mod/contacts.php');
8 function common_content(App &$a) {
13 $uid = intval($a->argv[2]);
14 $cid = intval($a->argv[3]);
18 notice( t('Permission denied.') . EOL);
22 if($cmd !== 'loc' && $cmd != 'rem')
28 if($cmd === 'loc' && $cid) {
29 $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
33 $a->page['aside'] = "";
34 profile_load($a, "", 0, get_contact_details_by_url($c[0]["url"]));
36 $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
40 $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
41 '$name' => htmlentities($c[0]['name']),
42 '$photo' => $c[0]['photo'],
43 'url' => 'contacts/' . $cid
46 if(! x($a->page,'aside'))
47 $a->page['aside'] = '';
48 $a->page['aside'] .= $vcard_widget;
51 if (! dbm::is_result($c)) {
57 $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
58 dbesc(normalise_link(get_my_url())),
61 if (dbm::is_result($r))
64 $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
65 dbesc(normalise_link(get_my_url()))
67 if (dbm::is_result($r))
75 if($cid == 0 && $zcid == 0)
80 $t = count_common_friends($uid, $cid);
82 $t = count_common_friends_zcid($uid, $zcid);
85 $a->set_pager_total($t);
87 notice( t('No contacts in common.') . EOL);
93 $r = common_friends($uid, $cid, $a->pager['start'], $a->pager['itemspage']);
95 $r = common_friends_zcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']);
98 if (! dbm::is_result($r)) {
104 foreach ($r as $rr) {
106 //get further details of the contact
107 $contact_details = get_contact_details_by_url($rr['url'], $uid);
109 // $rr[id] is needed to use contact_photo_menu()
113 $photo_menu = contact_photo_menu($rr);
117 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
118 'name' => $contact_details['name'],
119 'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
120 'img_hover' => htmlentities($contact_details['name']),
121 'details' => $contact_details['location'],
122 'tags' => $contact_details['keywords'],
123 'about' => $contact_details['about'],
124 'account_type' => account_type($contact_details),
125 'network' => network_to_name($contact_details['network'], $contact_details['url']),
126 'photo_menu' => $photo_menu,
132 if($cmd === 'loc' && $cid && $uid == local_user()) {
133 $tab_str = contacts_tab($a, $cid, 4);
135 $title = t('Common Friends');
137 $tpl = get_markup_template('viewcontact_template.tpl');
139 $o .= replace_macros($tpl,array(
141 '$tab_str' => $tab_str,
142 '$contacts' => $entries,
143 '$paginate' => paginate($a),