2018-10-17 12:19:58 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-10-17 12:19:58 +00:00
|
|
|
*/
|
|
|
|
|
2020-09-30 09:14:01 +00:00
|
|
|
namespace Friendica\Security;
|
2018-10-17 12:19:58 +00:00
|
|
|
|
|
|
|
use Friendica\Database\DBA;
|
2022-10-20 19:22:47 +00:00
|
|
|
use Friendica\DI;
|
2018-10-17 12:19:58 +00:00
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Model\Group;
|
2019-01-06 17:37:48 +00:00
|
|
|
use Friendica\Model\User;
|
2018-10-17 12:19:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Secures that User is allow to do requests
|
|
|
|
*/
|
2019-12-15 22:28:01 +00:00
|
|
|
class Security
|
2018-10-17 12:19:58 +00:00
|
|
|
{
|
2018-10-17 19:30:41 +00:00
|
|
|
public static function canWriteToUserWall($owner)
|
2018-10-17 12:19:58 +00:00
|
|
|
{
|
|
|
|
static $verified = 0;
|
|
|
|
|
2022-10-20 19:22:47 +00:00
|
|
|
if (!DI::userSession()->isAuthenticated()) {
|
2018-10-17 12:19:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:47 +00:00
|
|
|
$uid = DI::userSession()->getLocalUserId();
|
2018-10-17 12:19:58 +00:00
|
|
|
if ($uid == $owner) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:47 +00:00
|
|
|
if (DI::userSession()->getLocalUserId() && ($owner == 0)) {
|
2018-10-17 12:19:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-20 19:22:47 +00:00
|
|
|
if (!empty($cid = DI::userSession()->getRemoteContactID($owner))) {
|
2018-10-17 12:19:58 +00:00
|
|
|
// 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
|
|
|
|
// We have a contact-id for an authenticated remote user, this block determines if the contact
|
|
|
|
// belongs to this page owner, and has the necessary permissions to post content
|
|
|
|
|
|
|
|
if ($verified === 2) {
|
|
|
|
return true;
|
|
|
|
} elseif ($verified === 1) {
|
|
|
|
return false;
|
|
|
|
} else {
|
2021-10-02 11:08:12 +00:00
|
|
|
$user = User::getById($owner);
|
|
|
|
if (!$user || $user['blockwall']) {
|
|
|
|
$verified = 1;
|
2018-10-17 12:19:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-02 11:08:12 +00:00
|
|
|
$contact = Contact::getById($cid);
|
|
|
|
if ($contact || $contact['blocked'] || $contact['readonly'] || $contact['pending']) {
|
|
|
|
$verified = 1;
|
|
|
|
return false;
|
|
|
|
}
|
2023-01-01 14:36:24 +00:00
|
|
|
|
2021-10-02 11:08:12 +00:00
|
|
|
if (in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) || ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY)) {
|
2018-10-17 12:19:58 +00:00
|
|
|
$verified = 2;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
$verified = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-03-08 13:16:59 +00:00
|
|
|
/**
|
|
|
|
* Create a permission string for an element based on the visitor
|
|
|
|
*
|
|
|
|
* @param integer $owner_id User ID of the owner of the element
|
|
|
|
* @param boolean $accessible Should the element be accessible anyway?
|
|
|
|
* @return string SQL permissions
|
|
|
|
*/
|
|
|
|
public static function getPermissionsSQLByUserId(int $owner_id, bool $accessible = false)
|
2018-10-17 12:19:58 +00:00
|
|
|
{
|
2022-10-20 19:22:47 +00:00
|
|
|
$local_user = DI::userSession()->getLocalUserId();
|
|
|
|
$remote_contact = DI::userSession()->getRemoteContactID($owner_id);
|
2020-03-08 13:16:59 +00:00
|
|
|
$acc_sql = '';
|
|
|
|
|
|
|
|
if ($accessible) {
|
|
|
|
$acc_sql = ' OR `accessible`';
|
|
|
|
}
|
2018-10-17 12:19:58 +00:00
|
|
|
|
2018-10-17 19:30:41 +00:00
|
|
|
/*
|
2018-10-17 12:19:58 +00:00
|
|
|
* Construct permissions
|
|
|
|
*
|
|
|
|
* default permissions - anonymous user
|
|
|
|
*/
|
2020-03-08 13:16:59 +00:00
|
|
|
$sql = " AND (allow_cid = ''
|
2019-09-27 05:49:23 +00:00
|
|
|
AND allow_gid = ''
|
|
|
|
AND deny_cid = ''
|
2020-03-08 13:16:59 +00:00
|
|
|
AND deny_gid = ''" . $acc_sql . ") ";
|
2018-10-17 12:19:58 +00:00
|
|
|
|
2018-10-17 19:30:41 +00:00
|
|
|
/*
|
2018-10-17 12:19:58 +00:00
|
|
|
* Profile owner - everything is visible
|
|
|
|
*/
|
|
|
|
if ($local_user && $local_user == $owner_id) {
|
|
|
|
$sql = '';
|
2018-10-17 19:30:41 +00:00
|
|
|
/*
|
2019-09-28 09:36:41 +00:00
|
|
|
* Authenticated visitor. Load the groups the visitor belongs to.
|
2018-10-17 12:19:58 +00:00
|
|
|
*/
|
2019-09-28 09:36:41 +00:00
|
|
|
} elseif ($remote_contact) {
|
|
|
|
$gs = '<<>>'; // should be impossible to match
|
2018-10-17 12:19:58 +00:00
|
|
|
|
2019-09-28 09:36:41 +00:00
|
|
|
$groups = Group::getIdsByContactId($remote_contact);
|
2018-10-17 12:19:58 +00:00
|
|
|
|
2019-09-28 09:36:41 +00:00
|
|
|
if (is_array($groups)) {
|
|
|
|
foreach ($groups as $g) {
|
|
|
|
$gs .= '|<' . intval($g) . '>';
|
2018-10-17 12:19:58 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-28 09:36:41 +00:00
|
|
|
|
|
|
|
$sql = sprintf(
|
|
|
|
" AND (NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
|
2020-03-08 13:16:59 +00:00
|
|
|
AND (allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s'
|
|
|
|
OR (allow_cid = '' AND allow_gid = ''))" . $acc_sql . ") ",
|
2019-09-28 09:36:41 +00:00
|
|
|
intval($remote_contact),
|
|
|
|
DBA::escape($gs),
|
|
|
|
intval($remote_contact),
|
|
|
|
DBA::escape($gs)
|
|
|
|
);
|
2018-10-17 12:19:58 +00:00
|
|
|
}
|
|
|
|
return $sql;
|
|
|
|
}
|
|
|
|
}
|