]> git.mxchange.org Git - friendica.git/commitdiff
Rrepeat comments as well
authorMichael <heluecht@pirati.ca>
Thu, 17 Feb 2022 21:44:59 +0000 (21:44 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 17 Feb 2022 21:44:59 +0000 (21:44 +0000)
src/Model/Item.php
src/Model/Post/UserNotification.php
src/Navigation/Notifications/Factory/Notification.php

index d099247211a6d33a9b7760072e54c3fc13aa6b87..0d53049bc16aa70307ee57262c171151731256e4 100644 (file)
@@ -1945,7 +1945,7 @@ class Item
 
                $owner = User::getOwnerDataById($uid);
                if (!DBA::isResult($owner)) {
-                       Logger::warning('User not found, quitting.', ['uid' => $uid]);
+                       Logger::warning('User not found, quitting here.', ['uid' => $uid]);
                        return false;
                }
 
@@ -1954,48 +1954,45 @@ class Item
                        return false;
                }
 
-               $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id]);
+               $item = Post::selectFirst(self::ITEM_FIELDLIST, ['id' => $item_id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'origin' => false]);
                if (!DBA::isResult($item)) {
-                       Logger::warning('Post not found, quitting.', ['id' => $item_id]);
+                       Logger::debug('Post is an activity or origin or not found at all, quitting here.', ['id' => $item_id]);
                        return false;
                }
 
-               if ($item['wall'] || $item['origin'] || ($item['gravity'] != GRAVITY_PARENT)) {
-                       Logger::debug('Wall item, origin item or no parent post, quitting here.', ['wall' => $item['wall'], 'origin' => $item['origin'], 'gravity' => $item['gravity'], 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
-                       return false;
-               }
+               if ($item['gravity'] == GRAVITY_PARENT) {
+                       $tags = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
+                       foreach ($tags as $tag) {
+                               if (Strings::compareLink($owner['url'], $tag['url'])) {
+                                       $mention = true;
+                                       Logger::info('Mention found in tag.', ['url' => $tag['url'], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
+                               }
+                       }
 
-               $tags = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
-               foreach ($tags as $tag) {
-                       if (Strings::compareLink($owner['url'], $tag['url'])) {
-                               $mention = true;
-                               Logger::info('Mention found in tag.', ['url' => $tag['url'], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
+                       if (!$mention) {
+                               Logger::info('Top-level post without mention is deleted.', ['uri' => $item['uri'], $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
+                               Post\User::delete(['uri-id' => $item['uri-id'], 'uid' => $item['uid']]);
+                               return true;
                        }
-               }
 
-               // This check can most likely be removed since we always are having the tags
-               if (!$mention) {
-                       $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism', $item['body'], $matches, PREG_SET_ORDER);
-                       if ($cnt) {
-                               foreach ($matches as $mtch) {
-                                       if (Strings::compareLink($owner['url'], $mtch[1])) {
-                                               $mention = true;
-                                               Logger::notice('Mention found in body.', ['mention' => $mtch[2], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
-                                       }
+                       $arr = ['item' => $item, 'user' => $owner];
+
+                       Hook::callAll('tagged', $arr);
+               } else {
+                       $tags = Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]);
+                       foreach ($tags as $tag) {
+                               if (Strings::compareLink($owner['url'], $tag['url'])) {
+                                       $mention = true;
+                                       Logger::info('Mention found in parent tag.', ['url' => $tag['url'], 'uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
                                }
                        }
-               }
 
-               if (!$mention) {
-                       Logger::info('Top-level post without mention is deleted.', ['uri' => $item['uri'], $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
-                       Post\User::delete(['uri-id' => $item['uri-id'], 'uid' => $item['uid']]);
-                       return true;
+                       if (!$mention) {
+                               Logger::debug('No mentions found in parent, quitting here.', ['id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
+                               return false;
+                       }
                }
 
-               $arr = ['item' => $item, 'user' => $owner];
-
-               Hook::callAll('tagged', $arr);
-
                Logger::info('Community post will be distributed', ['uri' => $item['uri'], 'uid' => $uid, 'id' => $item_id, 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
 
                if ($owner['page-flags'] == User::PAGE_FLAGS_PRVGROUP) {
index 79499897dd333a6a7f793d09416d7dd5e8e418b9..604e8efe558c8182abf82b68fc0fdc2f629999d3 100644 (file)
@@ -182,6 +182,11 @@ class UserNotification
                        return;
                }
 
+               $author = Contact::getById($item['author-id'], ['contact-type']);
+               if (empty($author)) {
+                       return;
+               }
+
                $notification_type = self::TYPE_NONE;
 
                if (self::checkShared($item, $uid)) {
@@ -232,7 +237,7 @@ class UserNotification
                        }
                }
 
-               if (self::checkDirectCommentedThread($item, $contacts)) {
+               if (($contact['contact-type'] != Contact::TYPE_COMMUNITY) && self::checkDirectCommentedThread($item, $contacts)) {
                        $notification_type = $notification_type | self::TYPE_DIRECT_THREAD_COMMENT;
                        if (!$notified) {
                                self::insertNotificationByItem(self::TYPE_DIRECT_THREAD_COMMENT, $uid, $item);
index 6578238343750a6c33045e4236713f3a4242df67..7cc17f8fe3d3ba70f3281484325b85fa1785788c 100644 (file)
@@ -82,7 +82,7 @@ class Notification extends BaseFactory implements ICanCreateFromTableRow
        {
                $message = [];
 
-               $causer = $author = Contact::getById($Notification->actorId, ['id', 'name', 'url', 'pending']);
+               $causer = $author = Contact::getById($Notification->actorId, ['id', 'name', 'url', 'contact-type', 'pending']);
                if (empty($causer)) {
                        $this->logger->info('Causer not found', ['contact' => $Notification->actorId]);
                        return $message;
@@ -124,7 +124,7 @@ class Notification extends BaseFactory implements ICanCreateFromTableRow
                        }
 
                        if (in_array($Notification->type, [Post\UserNotification::TYPE_COMMENT_PARTICIPATION, Post\UserNotification::TYPE_ACTIVITY_PARTICIPATION, Post\UserNotification::TYPE_SHARED])) {
-                               $author = Contact::getById($item['author-id'], ['id', 'name', 'url']);
+                               $author = Contact::getById($item['author-id'], ['id', 'name', 'url', 'contact-type']);
                                if (empty($author)) {
                                        $this->logger->info('Author not found', ['author' => $item['author-id']]);
                                        return $message;