2010-09-30 01:11:26 -04:00
|
|
|
<?php
|
2018-01-22 09:16:25 -05:00
|
|
|
/**
|
|
|
|
* @file mod/lockview.php
|
|
|
|
*/
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2019-10-22 18:40:14 -04:00
|
|
|
use Friendica\BaseObject;
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-22 09:16:25 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-07-14 21:48:35 -04:00
|
|
|
use Friendica\Model\Group;
|
2018-07-25 19:14:55 -04:00
|
|
|
use Friendica\Model\Item;
|
2019-10-22 18:40:14 -04:00
|
|
|
use Friendica\Util\ACLFormatter;
|
2016-02-05 15:52:39 -05:00
|
|
|
|
2018-09-05 08:24:51 -04:00
|
|
|
function lockview_content(App $a)
|
|
|
|
{
|
2011-02-03 11:20:40 -05:00
|
|
|
$type = (($a->argc > 1) ? $a->argv[1] : 0);
|
2011-02-03 11:25:10 -05:00
|
|
|
if (is_numeric($type)) {
|
|
|
|
$item_id = intval($type);
|
2018-09-05 08:24:51 -04:00
|
|
|
$type = 'item';
|
2011-02-03 11:25:10 -05:00
|
|
|
} else {
|
|
|
|
$item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
|
|
|
|
}
|
2017-01-09 07:14:25 -05:00
|
|
|
|
2018-09-05 08:24:51 -04:00
|
|
|
if (!$item_id) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
|
2018-09-05 08:24:51 -04:00
|
|
|
if (!in_array($type, ['item','photo','event'])) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
2017-01-09 07:14:25 -05:00
|
|
|
|
2018-09-05 08:12:56 -04:00
|
|
|
$fields = ['uid', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'];
|
2018-07-25 19:14:55 -04:00
|
|
|
$condition = ['id' => $item_id];
|
2018-09-05 08:24:51 -04:00
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if ($type != 'item') {
|
|
|
|
$item = DBA::selectFirst($type, $fields, $condition);
|
|
|
|
} else {
|
2018-09-05 08:12:56 -04:00
|
|
|
$fields[] = 'private';
|
2018-07-25 19:14:55 -04:00
|
|
|
$item = Item::selectFirst($fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::isResult($item)) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2016-12-20 04:10:33 -05:00
|
|
|
}
|
2012-10-09 11:45:54 -04:00
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('lockview_content', $item);
|
2012-10-09 11:45:54 -04:00
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if ($item['uid'] != local_user()) {
|
2018-01-22 09:16:25 -05:00
|
|
|
echo L10n::t('Remote privacy information not available.') . '<br />';
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2012-10-09 11:45:54 -04:00
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
|
2018-09-05 12:44:47 -04:00
|
|
|
if (isset($item['private'])
|
|
|
|
&& $item['private'] == 1
|
2018-09-05 08:24:51 -04:00
|
|
|
&& empty($item['allow_cid'])
|
|
|
|
&& empty($item['allow_gid'])
|
|
|
|
&& empty($item['deny_cid'])
|
|
|
|
&& empty($item['deny_gid']))
|
|
|
|
{
|
2018-01-22 09:16:25 -05:00
|
|
|
echo L10n::t('Remote privacy information not available.') . '<br />';
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2010-12-07 23:47:53 -05:00
|
|
|
}
|
|
|
|
|
2019-10-22 18:40:14 -04:00
|
|
|
/** @var ACLFormatter $aclFormatter */
|
|
|
|
$aclFormatter = BaseObject::getClass(ACLFormatter::class);
|
|
|
|
|
2019-11-01 09:13:29 -04:00
|
|
|
$allowed_users = $aclFormatter->expand($item['allow_cid']);
|
|
|
|
$allowed_groups = $aclFormatter->expand($item['allow_gid']);
|
|
|
|
$deny_users = $aclFormatter->expand($item['deny_cid']);
|
|
|
|
$deny_groups = $aclFormatter->expand($item['deny_gid']);
|
2012-09-29 19:56:50 -04:00
|
|
|
|
2018-01-22 09:16:25 -05:00
|
|
|
$o = L10n::t('Visible to:') . '<br />';
|
2018-01-15 08:05:12 -05:00
|
|
|
$l = [];
|
2010-09-30 01:11:26 -04:00
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if (count($allowed_groups)) {
|
2019-07-14 21:48:35 -04:00
|
|
|
$key = array_search(Group::FOLLOWERS, $allowed_groups);
|
|
|
|
if ($key !== false) {
|
|
|
|
$l[] = '<b>' . L10n::t('Followers') . '</b>';
|
|
|
|
unset($allowed_groups[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = array_search(Group::MUTUALS, $allowed_groups);
|
|
|
|
if ($key !== false) {
|
|
|
|
$l[] = '<b>' . L10n::t('Mutuals') . '</b>';
|
|
|
|
unset($allowed_groups[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-30 01:11:26 -04:00
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
|
2018-07-21 09:10:13 -04:00
|
|
|
DBA::escape(implode(', ', $allowed_groups))
|
2010-09-30 01:11:26 -04:00
|
|
|
);
|
2018-09-05 08:24:51 -04:00
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
foreach ($r as $rr) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$l[] = '<b>' . $rr['name'] . '</b>';
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
}
|
2018-09-05 08:24:51 -04:00
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if (count($allowed_users)) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
|
2018-09-05 08:24:51 -04:00
|
|
|
DBA::escape(implode(', ', $allowed_users))
|
2010-09-30 01:11:26 -04:00
|
|
|
);
|
2018-09-05 08:24:51 -04:00
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
foreach ($r as $rr) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$l[] = $rr['name'];
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
}
|
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if (count($deny_groups)) {
|
2019-07-14 21:48:35 -04:00
|
|
|
$key = array_search(Group::FOLLOWERS, $deny_groups);
|
|
|
|
if ($key !== false) {
|
|
|
|
$l[] = '<b><strike>' . L10n::t('Followers') . '</strike></b>';
|
|
|
|
unset($deny_groups[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$key = array_search(Group::MUTUALS, $deny_groups);
|
|
|
|
if ($key !== false) {
|
|
|
|
$l[] = '<b><strike>' . L10n::t('Mutuals') . '</strike></b>';
|
|
|
|
unset($deny_groups[$key]);
|
|
|
|
}
|
|
|
|
|
2010-09-30 01:11:26 -04:00
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )",
|
2018-07-21 09:10:13 -04:00
|
|
|
DBA::escape(implode(', ', $deny_groups))
|
2010-09-30 01:11:26 -04:00
|
|
|
);
|
2018-09-05 08:24:51 -04:00
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
foreach ($r as $rr) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$l[] = '<b><strike>' . $rr['name'] . '</strike></b>';
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
}
|
2018-09-05 08:24:51 -04:00
|
|
|
|
2018-07-25 19:14:55 -04:00
|
|
|
if (count($deny_users)) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )",
|
2018-09-05 08:24:51 -04:00
|
|
|
DBA::escape(implode(', ', $deny_users))
|
2010-09-30 01:11:26 -04:00
|
|
|
);
|
2018-09-05 08:24:51 -04:00
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
foreach ($r as $rr) {
|
2010-09-30 01:11:26 -04:00
|
|
|
$l[] = '<strike>' . $rr['name'] . '</strike>';
|
2018-09-05 08:24:51 -04:00
|
|
|
}
|
|
|
|
}
|
2010-09-30 01:11:26 -04:00
|
|
|
}
|
|
|
|
|
2011-02-03 13:42:32 -05:00
|
|
|
echo $o . implode(', ', $l);
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2010-09-30 01:11:26 -04:00
|
|
|
}
|