]> git.mxchange.org Git - friendica.git/blob - mod/lockview.php
Merge pull request #2148 from annando/issue-1871
[friendica.git] / mod / lockview.php
1 <?php
2
3
4 function lockview_content(&$a) {
5   
6         $type = (($a->argc > 1) ? $a->argv[1] : 0);
7         if (is_numeric($type)) {
8                 $item_id = intval($type);
9                 $type='item';
10         } else {
11                 $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
12         }
13   
14         if(! $item_id)
15                 killme();
16
17         if (!in_array($type, array('item','photo','event')))
18                 killme();
19      
20         $r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1",
21                 dbesc($type),
22                 intval($item_id)
23         );
24         if(! count($r))
25                 killme();
26         $item = $r[0];
27
28         call_hooks('lockview_content', $item);
29
30         if($item['uid'] != local_user()) {
31                 echo t('Remote privacy information not available.') . '<br />';
32                 killme();
33         }
34
35
36         if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) 
37                 && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
38
39                 echo t('Remote privacy information not available.') . '<br />';
40                 killme();
41         }
42
43         $allowed_users = expand_acl($item['allow_cid']);
44         $allowed_groups = expand_acl($item['allow_gid']);
45         $deny_users = expand_acl($item['deny_cid']);
46         $deny_groups = expand_acl($item['deny_gid']);
47
48         $o = t('Visible to:') . '<br />';
49         $l = array();
50
51         if(count($allowed_groups)) {
52                 $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
53                         dbesc(implode(', ', $allowed_groups))
54                 );
55                 if(count($r))
56                         foreach($r as $rr) 
57                                 $l[] = '<b>' . $rr['name'] . '</b>';
58         }
59         if(count($allowed_users)) {
60                 $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
61                         dbesc(implode(', ',$allowed_users))
62                 );
63                 if(count($r))
64                         foreach($r as $rr) 
65                                 $l[] = $rr['name'];
66
67         }
68
69         if(count($deny_groups)) {
70                 $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
71                         dbesc(implode(', ', $deny_groups))
72                 );
73                 if(count($r))
74                         foreach($r as $rr) 
75                                 $l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
76         }
77         if(count($deny_users)) {
78                 $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
79                         dbesc(implode(', ',$deny_users))
80                 );
81                 if(count($r))
82                         foreach($r as $rr) 
83                                 $l[] = '<strike>' . $rr['name'] . '</strike>';
84
85         }
86
87         echo $o . implode(', ', $l);
88         killme();
89
90 }