]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
Merge pull request #12591 from MrPetovan/task/2023-licence
[friendica.git] / src / Object / Thread.php
index 7d59759a0da861ae3bbfbd91de9fcc0a7acf05c8..84245ab6a7fb283a7ee1fd120a9a8b68ee727cc5 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -75,12 +75,12 @@ class Thread
                switch ($mode) {
                        case 'network':
                        case 'notes':
-                               $this->profile_owner = local_user();
+                               $this->profile_owner = DI::userSession()->getLocalUserId();
                                $this->writable = true;
                                break;
                        case 'profile':
                                $this->profile_owner = $a->getProfileOwner();
-                               $this->writable = Security::canWriteToUserWall($this->profile_owner);
+                               $this->writable = Security::canWriteToUserWall($this->profile_owner) || $writable;
                                break;
                        case 'display':
                                $this->profile_owner = $a->getProfileOwner();
@@ -95,7 +95,7 @@ class Thread
                                $this->writable = $writable;
                                break;
                        default:
-                               Logger::log('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').', Logger::DEBUG);
+                               Logger::info('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').');
                                return false;
                                break;
                }
@@ -156,25 +156,25 @@ class Thread
                $item_id = $item->getId();
 
                if (!$item_id) {
-                       Logger::log('[ERROR] Conversation::addThread : Item has no ID!!', Logger::DEBUG);
+                       Logger::info('[ERROR] Conversation::addThread : Item has no ID!!');
                        return false;
                }
 
                if ($this->getParent($item->getId())) {
-                       Logger::log('[WARN] Conversation::addThread : Thread already exists ('. $item->getId() .').', Logger::DEBUG);
+                       Logger::info('[WARN] Conversation::addThread : Thread already exists ('. $item->getId() .').');
                        return false;
                }
 
                /*
                 * Only add will be displayed
                 */
-               if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
-                       Logger::log('[WARN] Conversation::addThread : Thread is a mail ('. $item->getId() .').', Logger::DEBUG);
+               if ($item->getDataValue('network') === Protocol::MAIL && DI::userSession()->getLocalUserId() != $item->getDataValue('uid')) {
+                       Logger::info('[WARN] Conversation::addThread : Thread is a mail ('. $item->getId() .').');
                        return false;
                }
 
                if ($item->getDataValue('verb') === Activity::LIKE || $item->getDataValue('verb') === Activity::DISLIKE) {
-                       Logger::log('[WARN] Conversation::addThread : Thread is a (dis)like ('. $item->getId() .').', Logger::DEBUG);
+                       Logger::info('[WARN] Conversation::addThread : Thread is a (dis)like ('. $item->getId() .').');
                        return false;
                }
 
@@ -201,14 +201,14 @@ class Thread
                $result = [];
 
                foreach ($this->parents as $item) {
-                       if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
+                       if ($item->getDataValue('network') === Protocol::MAIL && DI::userSession()->getLocalUserId() != $item->getDataValue('uid')) {
                                continue;
                        }
 
                        $item_data = $item->getTemplateData($conv_responses, $formSecurityToken);
 
                        if (!$item_data) {
-                               Logger::log('[ERROR] Conversation::getTemplateData : Failed to get item template data ('. $item->getId() .').', Logger::DEBUG);
+                               Logger::info('[ERROR] Conversation::getTemplateData : Failed to get item template data ('. $item->getId() .').');
                                return false;
                        }
                        $result[] = $item_data;