"q" call is replaced

This commit is contained in:
Michael 2021-10-02 11:08:12 +00:00
parent ac49a02c36
commit 666cff7d55

View File

@ -49,7 +49,7 @@ class Security
return true; return true;
} }
if (!empty(Session::getRemoteContactID($owner))) { if (!empty($cid = Session::getRemoteContactID($owner))) {
// use remembered decision and avoid a DB lookup for each and every display item // use remembered decision and avoid a DB lookup for each and every display item
// DO NOT use this function if there are going to be multiple owners // DO NOT use this function if there are going to be multiple owners
// We have a contact-id for an authenticated remote user, this block determines if the contact // We have a contact-id for an authenticated remote user, this block determines if the contact
@ -60,22 +60,19 @@ class Security
} elseif ($verified === 1) { } elseif ($verified === 1) {
return false; return false;
} else { } else {
$cid = Session::getRemoteContactID($owner); $user = User::getById($owner);
if (!$cid) { if (!$user || $user['blockwall']) {
$verified = 1;
return false; return false;
} }
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `user`.`uid` = `contact`.`uid` $contact = Contact::getById($cid);
WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 if ($contact || $contact['blocked'] || $contact['readonly'] || $contact['pending']) {
AND `user`.`blockwall` = 0 AND `readonly` = 0 AND (`contact`.`rel` IN (%d , %d) OR `user`.`page-flags` = %d) LIMIT 1", $verified = 1;
intval($owner), return false;
intval($cid), }
intval(Contact::SHARING),
intval(Contact::FRIEND),
intval(User::PAGE_FLAGS_COMMUNITY)
);
if (DBA::isResult($r)) { if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) || ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
$verified = 2; $verified = 2;
return true; return true;
} else { } else {