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