]> git.mxchange.org Git - friendica.git/blob - mod/viewcontacts.php
Issue 1925 - display nickname@hostname.com
[friendica.git] / mod / viewcontacts.php
1 <?php
2 require_once('include/Contact.php');
3 require_once('include/contact_selectors.php');
4
5 function viewcontacts_init(&$a) {
6
7         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
8                 return;
9         }
10
11         profile_load($a,$a->argv[1]);
12 }
13
14
15 function viewcontacts_content(&$a) {
16         require_once("mod/proxy.php");
17
18         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
19                 notice( t('Public access denied.') . EOL);
20                 return;
21         }
22
23         if(((! count($a->profile)) || ($a->profile['hide-friends']))) {
24                 notice( t('Permission denied.') . EOL);
25                 return;
26         }
27
28
29         $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ",
30                 intval($a->profile['uid'])
31         );
32         if(count($r))
33                 $a->set_pager_total($r[0]['total']);
34
35         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY `name` ASC LIMIT %d , %d ",
36                 intval($a->profile['uid']),
37                 intval($a->pager['start']),
38                 intval($a->pager['itemspage'])
39         );
40         if(! count($r)) {
41                 info( t('No contacts.') . EOL );
42                 return $o;
43         }
44
45         $contacts = array();
46
47         foreach($r as $rr) {
48                 if($rr['self'])
49                         continue;
50
51                 $url = $rr['url'];
52
53                 // route DFRN profiles through the redirect
54
55                 $is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false);
56
57                 if($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel']))
58                         $url = 'redir/' . $rr['id'];
59                 else
60                         $url = zrl($url);
61
62                 $contact_details = get_contact_details_by_url($rr['url'], $a->profile['uid']);
63
64                 $contacts[] = array(
65                         'id' => $rr['id'],
66                         'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']),
67                         'photo_menu' => contact_photo_menu($rr),
68                         'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB),
69                         'name' => htmlentities(substr($rr['name'],0,20)),
70                         'username' => htmlentities($rr['name']),
71                         'details'       => $contact_details['location'],
72                         'tags'          => $contact_details['keywords'],
73                         'about'         => $contact_details['about'],
74                         'account_type'  => (($contact_details['community']) ? t('Forum') : ''),
75                         'url' => $url,
76                         'sparkle' => '',
77                         'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
78                         'network' => network_to_name($rr['network'], $rr['url']),
79                 );
80         }
81
82
83         $tpl = get_markup_template("viewcontact_template.tpl");
84         $o .= replace_macros($tpl, array(
85                 '$title' => t('View Contacts'),
86                 '$contacts' => $contacts,
87                 '$paginate' => paginate($a),
88         ));
89
90
91         return $o;
92 }