2010-09-30 07:11:26 +02:00
|
|
|
<?php
|
|
|
|
|
2016-02-05 21:52:39 +01:00
|
|
|
|
2016-12-20 10:58:55 +01:00
|
|
|
function lockview_content(App &$a) {
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-02-03 17:20:40 +01:00
|
|
|
$type = (($a->argc > 1) ? $a->argv[1] : 0);
|
2011-02-03 17:25:10 +01:00
|
|
|
if (is_numeric($type)) {
|
|
|
|
$item_id = intval($type);
|
|
|
|
$type='item';
|
|
|
|
} else {
|
|
|
|
$item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
|
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2010-09-30 07:11:26 +02:00
|
|
|
if(! $item_id)
|
|
|
|
killme();
|
|
|
|
|
2011-02-03 17:25:10 +01:00
|
|
|
if (!in_array($type, array('item','photo','event')))
|
|
|
|
killme();
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-02-03 17:20:40 +01:00
|
|
|
$r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1",
|
2011-02-03 17:25:10 +01:00
|
|
|
dbesc($type),
|
2010-09-30 07:11:26 +02:00
|
|
|
intval($item_id)
|
|
|
|
);
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2010-09-30 07:11:26 +02:00
|
|
|
killme();
|
2016-12-20 10:10:33 +01:00
|
|
|
}
|
2010-09-30 07:11:26 +02:00
|
|
|
$item = $r[0];
|
2012-10-09 17:45:54 +02:00
|
|
|
|
|
|
|
call_hooks('lockview_content', $item);
|
|
|
|
|
|
|
|
if($item['uid'] != local_user()) {
|
|
|
|
echo t('Remote privacy information not available.') . '<br />';
|
2010-09-30 07:11:26 +02:00
|
|
|
killme();
|
2012-10-09 17:45:54 +02:00
|
|
|
}
|
2010-09-30 07:11:26 +02:00
|
|
|
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
|
2010-12-08 05:47:53 +01:00
|
|
|
&& (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
|
|
|
|
|
|
|
|
echo t('Remote privacy information not available.') . '<br />';
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2012-09-30 01:56:50 +02:00
|
|
|
$allowed_users = expand_acl($item['allow_cid']);
|
|
|
|
$allowed_groups = expand_acl($item['allow_gid']);
|
|
|
|
$deny_users = expand_acl($item['deny_cid']);
|
|
|
|
$deny_groups = expand_acl($item['deny_gid']);
|
|
|
|
|
2010-09-30 07:11:26 +02:00
|
|
|
$o = t('Visible to:') . '<br />';
|
|
|
|
$l = array();
|
|
|
|
|
|
|
|
if(count($allowed_groups)) {
|
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
|
|
|
|
dbesc(implode(', ', $allowed_groups))
|
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r))
|
2016-02-07 15:11:34 +01:00
|
|
|
foreach($r as $rr)
|
2010-09-30 07:11:26 +02:00
|
|
|
$l[] = '<b>' . $rr['name'] . '</b>';
|
|
|
|
}
|
|
|
|
if(count($allowed_users)) {
|
|
|
|
$r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
|
|
|
|
dbesc(implode(', ',$allowed_users))
|
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r))
|
2016-02-07 15:11:34 +01:00
|
|
|
foreach($r as $rr)
|
2010-09-30 07:11:26 +02:00
|
|
|
$l[] = $rr['name'];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count($deny_groups)) {
|
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
|
|
|
|
dbesc(implode(', ', $deny_groups))
|
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r))
|
2016-02-07 15:11:34 +01:00
|
|
|
foreach($r as $rr)
|
2010-09-30 07:11:26 +02:00
|
|
|
$l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
|
|
|
|
}
|
|
|
|
if(count($deny_users)) {
|
|
|
|
$r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
|
|
|
|
dbesc(implode(', ',$deny_users))
|
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r))
|
2016-02-07 15:11:34 +01:00
|
|
|
foreach($r as $rr)
|
2010-09-30 07:11:26 +02:00
|
|
|
$l[] = '<strike>' . $rr['name'] . '</strike>';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-02-03 19:42:32 +01:00
|
|
|
echo $o . implode(', ', $l);
|
2010-09-30 07:11:26 +02:00
|
|
|
killme();
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2010-09-30 07:11:26 +02:00
|
|
|
}
|