]> git.mxchange.org Git - friendica.git/blob - mod/common.php
Merge remote-tracking branch 'friendica/develop' into develop
[friendica.git] / mod / common.php
1 <?php
2
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');
7
8 function common_content(&$a) {
9
10         $o = '';
11
12         $cmd = $a->argv[1];
13         $uid = intval($a->argv[2]);
14         $cid = intval($a->argv[3]);
15         $zcid = 0;
16
17         if (! local_user()) {
18                 notice( t('Permission denied.') . EOL);
19                 return;
20         }
21
22         if ($cmd !== 'loc' && $cmd != 'rem') {
23                 return;
24         }
25
26         if (! $uid) {
27                 return;
28         }
29
30         if ($cmd === 'loc' && $cid) {
31                 $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
32                         intval($cid),
33                         intval($uid)
34                 );
35                 /// @TODO Handle $c with dbm::is_result()
36                 $a->page['aside'] = "";
37                 profile_load($a, "", 0, get_contact_details_by_url($c[0]["url"]));
38         } else {
39                 $c = q("SELECT `name`, `url`, `photo` FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
40                         intval($uid)
41                 );
42                 /// @TODO Handle $c with dbm::is_result()
43
44                 $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
45                         '$name' => htmlentities($c[0]['name']),
46                         '$photo' => $c[0]['photo'],
47                         'url' => 'contacts/' . $cid
48                 ));
49
50                 if (! x($a->page,'aside')) {
51                         $a->page['aside'] = '';
52                 }
53                 $a->page['aside'] .= $vcard_widget;
54         }
55
56         if(! count($c))
57                 return;
58
59         if(! $cid) {
60                 if(get_my_url()) {
61                         $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
62                                 dbesc(normalise_link(get_my_url())),
63                                 intval($profile_uid)
64                         );
65                         if (dbm::is_result($r))
66                                 $cid = $r[0]['id'];
67                         else {
68                                 $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
69                                         dbesc(normalise_link(get_my_url()))
70                                 );
71                                 if (dbm::is_result($r))
72                                         $zcid = $r[0]['id'];
73                         }
74                 }
75         }
76
77         if ($cid == 0 && $zcid == 0) {
78                 return;
79         }
80
81         if ($cid) {
82                 $t = count_common_friends($uid, $cid);
83         } else {
84                 $t = count_common_friends_zcid($uid, $zcid);
85         }
86
87         if (count($t)) {
88                 $a->set_pager_total($t);
89         } else {
90                 notice( t('No contacts in common.') . EOL);
91                 return $o;
92         }
93
94
95         if ($cid) {
96                 $r = common_friends($uid, $cid, $a->pager['start'], $a->pager['itemspage']);
97         } else {
98                 $r = common_friends_zcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']);
99         }
100
101
102         if (! dbm::is_result($r)) {
103                 return $o;
104         }
105
106         $id = 0;
107
108         foreach ($r as $rr) {
109
110                 //get further details of the contact
111                 $contact_details = get_contact_details_by_url($rr['url'], $uid);
112
113                 // $rr['id'] is needed to use contact_photo_menu()
114                 /// @TODO Adding '/" here avoids E_NOTICE on missing constants
115                 $rr['id'] = $rr['cid'];
116
117                 $photo_menu = '';
118                 $photo_menu = contact_photo_menu($rr);
119
120                 $entry = array(
121                         'url'          => $rr['url'],
122                         'itemurl'      => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
123                         'name'         => $contact_details['name'],
124                         'thumb'        => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
125                         'img_hover'    => htmlentities($contact_details['name']),
126                         'details'      => $contact_details['location'],
127                         'tags'         => $contact_details['keywords'],
128                         'about'        => $contact_details['about'],
129                         'account_type' => account_type($contact_details),
130                         'network'      => network_to_name($contact_details['network'], $contact_details['url']),
131                         'photo_menu'   => $photo_menu,
132                         'id'           => ++$id,
133                 );
134                 $entries[] = $entry;
135         }
136
137         if ($cmd === 'loc' && $cid && $uid == local_user()) {
138                 $tab_str = contacts_tab($a, $cid, 4);
139         } else {
140                 $title = t('Common Friends');
141         }
142
143         $tpl = get_markup_template('viewcontact_template.tpl');
144
145         $o .= replace_macros($tpl,array(
146                 '$title'    => $title,
147                 '$tab_str'  => $tab_str,
148                 '$contacts' => $entries,
149                 '$paginate' => paginate($a),
150         ));
151
152         return $o;
153 }