mirror of
https://github.com/friendica/friendica
synced 2024-11-18 03:03:41 +00:00
Moved permission assigning / simplified block check
This commit is contained in:
parent
194b84141d
commit
20a2cec0b0
3 changed files with 30 additions and 30 deletions
10
mod/item.php
10
mod/item.php
|
@ -180,11 +180,13 @@ function item_insert(int $uid, array $request, bool $preview, string $return_pat
|
||||||
Logger::info('Public item stored for user', ['uri-id' => $toplevel_item['uri-id'], 'uid' => $post['uid'], 'stored' => $stored]);
|
Logger::info('Public item stored for user', ['uri-id' => $toplevel_item['uri-id'], 'uid' => $post['uid'], 'stored' => $stored]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$post['parent'] = $toplevel_item['id'];
|
||||||
$post['gravity'] = Item::GRAVITY_COMMENT;
|
$post['gravity'] = Item::GRAVITY_COMMENT;
|
||||||
$post['thr-parent'] = $parent_item['uri'];
|
$post['thr-parent'] = $parent_item['uri'];
|
||||||
$post['wall'] = $toplevel_item['wall'];
|
$post['wall'] = $toplevel_item['wall'];
|
||||||
} else {
|
} else {
|
||||||
$parent_item = [];
|
$parent_item = [];
|
||||||
|
$post['parent'] = 0;
|
||||||
$post['gravity'] = Item::GRAVITY_PARENT;
|
$post['gravity'] = Item::GRAVITY_PARENT;
|
||||||
$post['thr-parent'] = $post['uri'];
|
$post['thr-parent'] = $post['uri'];
|
||||||
}
|
}
|
||||||
|
@ -237,14 +239,6 @@ function item_process(array $post, array $request, bool $preview, string $return
|
||||||
|
|
||||||
$post = DI::contentItem()->addCategories($post, $request['category'] ?? '');
|
$post = DI::contentItem()->addCategories($post, $request['category'] ?? '');
|
||||||
|
|
||||||
if (!$preview) {
|
|
||||||
if (Photo::setPermissionFromBody($post['body'], $post['uid'], $post['contact-id'], $post['allow_cid'], $post['allow_gid'], $post['deny_cid'], $post['deny_gid'])) {
|
|
||||||
$post['object-type'] = Activity\ObjectType::IMAGE;
|
|
||||||
}
|
|
||||||
|
|
||||||
$post = DI::contentItem()->moveAttachmentsFromBodyToAttach($post);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add the attachment to the body.
|
// Add the attachment to the body.
|
||||||
if (!empty($request['has_attachment'])) {
|
if (!empty($request['has_attachment'])) {
|
||||||
$post['body'] .= DI::contentItem()->storeAttachmentFromRequest($request);
|
$post['body'] .= DI::contentItem()->storeAttachmentFromRequest($request);
|
||||||
|
|
|
@ -820,12 +820,6 @@ class Item
|
||||||
private static function prepareOriginPost(array $item): array
|
private static function prepareOriginPost(array $item): array
|
||||||
{
|
{
|
||||||
$item = DI::contentItem()->initializePost($item);
|
$item = DI::contentItem()->initializePost($item);
|
||||||
|
|
||||||
if (Photo::setPermissionFromBody($item['body'], $item['uid'], $item['contact-id'], $item['allow_cid'], $item['allow_gid'], $item['deny_cid'], $item['deny_gid'])) {
|
|
||||||
$item['object-type'] = Activity\ObjectType::IMAGE;
|
|
||||||
}
|
|
||||||
|
|
||||||
$item = DI::contentItem()->moveAttachmentsFromBodyToAttach($item);
|
|
||||||
$item = DI::contentItem()->finalizePost($item);
|
$item = DI::contentItem()->finalizePost($item);
|
||||||
|
|
||||||
return $item;
|
return $item;
|
||||||
|
@ -1052,6 +1046,14 @@ class Item
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($notify) {
|
||||||
|
if (Photo::setPermissionFromBody($item['body'], $item['uid'], $item['contact-id'], $item['allow_cid'], $item['allow_gid'], $item['deny_cid'], $item['deny_gid'])) {
|
||||||
|
$item['object-type'] = Activity\ObjectType::IMAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
$item = DI::contentItem()->moveAttachmentsFromBodyToAttach($item);
|
||||||
|
}
|
||||||
|
|
||||||
$item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
|
$item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
|
||||||
$item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
|
$item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
|
||||||
|
|
||||||
|
|
|
@ -140,6 +140,11 @@ class UserNotification
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$parent = Post::selectFirstPost(['author-id', 'owner-id', 'causer-id'], ['uri-id' => $item['parent-uri-id']]);
|
||||||
|
if (!DBA::isResult($parent)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// "Activity::FOLLOW" is an automated activity, so we ignore it here
|
// "Activity::FOLLOW" is an automated activity, so we ignore it here
|
||||||
if ($item['verb'] == Activity::FOLLOW) {
|
if ($item['verb'] == Activity::FOLLOW) {
|
||||||
return;
|
return;
|
||||||
|
@ -162,7 +167,7 @@ class UserNotification
|
||||||
DBA::close($users);
|
DBA::close($users);
|
||||||
|
|
||||||
foreach (array_unique($uids) as $uid) {
|
foreach (array_unique($uids) as $uid) {
|
||||||
self::setNotificationForUser($item, $uid);
|
self::setNotificationForUser($item, $parent, $uid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,27 +175,26 @@ class UserNotification
|
||||||
* Checks an item for notifications for the given user and sets the "notification-type" field
|
* Checks an item for notifications for the given user and sets the "notification-type" field
|
||||||
*
|
*
|
||||||
* @param array $item Item array
|
* @param array $item Item array
|
||||||
|
* @param array $parent Parent item array
|
||||||
* @param int $uid User ID
|
* @param int $uid User ID
|
||||||
* @throws HTTPException\InternalServerErrorException
|
* @throws HTTPException\InternalServerErrorException
|
||||||
*/
|
*/
|
||||||
private static function setNotificationForUser(array $item, int $uid)
|
private static function setNotificationForUser(array $item, array $parent, int $uid)
|
||||||
{
|
{
|
||||||
if (Contact\User::isBlocked($item['author-id'], $uid) || Contact\User::isIgnored($item['author-id'], $uid) || Contact\User::isCollapsed($item['author-id'], $uid)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Contact\User::isBlocked($item['owner-id'], $uid) || Contact\User::isIgnored($item['owner-id'], $uid) || Contact\User::isCollapsed($item['owner-id'], $uid)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($item['causer-id']) && (Contact\User::isBlocked($item['causer-id'], $uid) || Contact\User::isIgnored($item['causer-id'], $uid) || Contact\User::isCollapsed($item['causer-id'], $uid))) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Post\ThreadUser::getIgnored($item['parent-uri-id'], $uid)) {
|
if (Post\ThreadUser::getIgnored($item['parent-uri-id'], $uid)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (array_unique([$parent['author-id'], $parent['owner-id'], $parent['causer-id'], $item['author-id'], $item['owner-id'], $item['causer-id']]) as $author_id) {
|
||||||
|
if (empty($author_id)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (Contact\User::isBlocked($author_id, $uid) || Contact\User::isIgnored($author_id, $uid) || Contact\User::isCollapsed($author_id, $uid)) {
|
||||||
|
Logger::debug('Author is blocked/ignored/collapsed by user', ['uid' => $uid, 'author' => $author_id, 'uri-id' => $item['uri-id']]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$user = User::getById($uid, ['account-type', 'account_removed', 'account_expired']);
|
$user = User::getById($uid, ['account-type', 'account_removed', 'account_expired']);
|
||||||
if (in_array($user['account-type'], [User::ACCOUNT_TYPE_COMMUNITY, User::ACCOUNT_TYPE_RELAY])) {
|
if (in_array($user['account-type'], [User::ACCOUNT_TYPE_COMMUNITY, User::ACCOUNT_TYPE_RELAY])) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue