X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flockview.php;h=a2301b4ccb7e73e20b47862cc62fe74929477152;hb=89eaf508f19be57a07971c5f40b4bb538e36e891;hp=38a308634e772467381468fe322dd76840cd980a;hpb=e67133ef5653448003ceac29147cda41a4c9e017;p=friendica.git diff --git a/mod/lockview.php b/mod/lockview.php index 38a308634e..a2301b4ccb 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -1,88 +1,113 @@ argc > 1) ? $a->argv[1] : 0); if (is_numeric($type)) { $item_id = intval($type); - $type='item'; + $type = 'item'; } else { $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0); } - if(! $item_id) - killme(); - - if (!in_array($type, array('item','photo','event'))) + if (!$item_id) { killme(); + } - $r = q("SELECT * FROM `%s` WHERE `id` = %d LIMIT 1", - dbesc($type), - intval($item_id) - ); - if (! dbm::is_result($r)) { + if (!in_array($type, ['item','photo','event'])) { killme(); } - $item = $r[0]; - call_hooks('lockview_content', $item); + $fields = ['uid', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid']; + $condition = ['id' => $item_id]; - if($item['uid'] != local_user()) { - echo t('Remote privacy information not available.') . '
'; + if ($type != 'item') { + $item = DBA::selectFirst($type, $fields, $condition); + } else { + $fields[] = 'private'; + $item = Item::selectFirst($fields, $condition); + } + + if (!DBA::isResult($item)) { killme(); } + Addon::callHooks('lockview_content', $item); - if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) - && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) { + if ($item['uid'] != local_user()) { + echo L10n::t('Remote privacy information not available.') . '
'; + killme(); + } - echo t('Remote privacy information not available.') . '
'; + if (isset($item['private']) + && $item['private'] == 1 + && empty($item['allow_cid']) + && empty($item['allow_gid']) + && empty($item['deny_cid']) + && empty($item['deny_gid'])) + { + echo L10n::t('Remote privacy information not available.') . '
'; killme(); } - $allowed_users = expand_acl($item['allow_cid']); + $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']); + $deny_users = expand_acl($item['deny_cid']); + $deny_groups = expand_acl($item['deny_gid']); - $o = t('Visible to:') . '
'; - $l = array(); + $o = L10n::t('Visible to:') . '
'; + $l = []; - if(count($allowed_groups)) { + if (count($allowed_groups)) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", - dbesc(implode(', ', $allowed_groups)) + DBA::escape(implode(', ', $allowed_groups)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBA::isResult($r)) { + foreach ($r as $rr) { $l[] = '' . $rr['name'] . ''; + } + } } - if(count($allowed_users)) { + + if (count($allowed_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", - dbesc(implode(', ',$allowed_users)) + DBA::escape(implode(', ', $allowed_users)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBA::isResult($r)) { + foreach ($r as $rr) { $l[] = $rr['name']; - + } + } } - if(count($deny_groups)) { + if (count($deny_groups)) { $r = q("SELECT `name` FROM `group` WHERE `id` IN ( %s )", - dbesc(implode(', ', $deny_groups)) + DBA::escape(implode(', ', $deny_groups)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBA::isResult($r)) { + foreach ($r as $rr) { $l[] = '' . $rr['name'] . ''; + } + } } - if(count($deny_users)) { + + if (count($deny_users)) { $r = q("SELECT `name` FROM `contact` WHERE `id` IN ( %s )", - dbesc(implode(', ',$deny_users)) + DBA::escape(implode(', ', $deny_users)) ); - if (dbm::is_result($r)) - foreach($r as $rr) + if (DBA::isResult($r)) { + foreach ($r as $rr) { $l[] = '' . $rr['name'] . ''; - + } + } } echo $o . implode(', ', $l);