]> git.mxchange.org Git - friendica.git/blob - mod/lockview.php
Merge branch 'omigeot-master'
[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         if($item['uid'] != local_user())
28                 killme();
29
30
31         $allowed_users = expand_acl($item['allow_cid']);
32         $allowed_groups = expand_acl($item['allow_gid']);
33         $deny_users = expand_acl($item['deny_cid']);
34         $deny_groups = expand_acl($item['deny_gid']);
35
36         if(($item['private']) && (! 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         $o = t('Visible to:') . '<br />';
44         $l = array();
45
46         if(count($allowed_groups)) {
47                 $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
48                         dbesc(implode(', ', $allowed_groups))
49                 );
50                 if(count($r))
51                         foreach($r as $rr) 
52                                 $l[] = '<b>' . $rr['name'] . '</b>';
53         }
54         if(count($allowed_users)) {
55                 $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
56                         dbesc(implode(', ',$allowed_users))
57                 );
58                 if(count($r))
59                         foreach($r as $rr) 
60                                 $l[] = $rr['name'];
61
62         }
63
64         if(count($deny_groups)) {
65                 $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
66                         dbesc(implode(', ', $deny_groups))
67                 );
68                 if(count($r))
69                         foreach($r as $rr) 
70                                 $l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
71         }
72         if(count($deny_users)) {
73                 $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
74                         dbesc(implode(', ',$deny_users))
75                 );
76                 if(count($r))
77                         foreach($r as $rr) 
78                                 $l[] = '<strike>' . $rr['name'] . '</strike>';
79
80         }
81
82         echo $o . implode(', ', $l);
83         killme();
84
85 }