]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
change isreplyto to inreplyto
[friendica.git] / src / Object / Thread.php
index 666210c39d3e7b3791f389c8ec57fb7ba5a71fa9..5c825dfc7e9ac4cc4c30e45a3e839ec49a682c47 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
  *
@@ -21,6 +21,7 @@
 
 namespace Friendica\Object;
 
+use Friendica\Content\Conversation;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\DI;
@@ -73,24 +74,19 @@ class Thread
                $a = DI::app();
 
                switch ($mode) {
-                       case 'network':
-                       case 'notes':
-                               $this->profile_owner = local_user();
+                       case Conversation::MODE_NETWORK:
+                       case Conversation::MODE_NOTES:
+                               $this->profile_owner = DI::userSession()->getLocalUserId();
                                $this->writable = true;
                                break;
-                       case 'profile':
+                       case Conversation::MODE_PROFILE:
+                       case Conversation::MODE_DISPLAY:
                                $this->profile_owner = $a->getProfileOwner();
                                $this->writable = Security::canWriteToUserWall($this->profile_owner) || $writable;
                                break;
-                       case 'display':
-                               $this->profile_owner = $a->getProfileOwner();
-                               $this->writable = Security::canWriteToUserWall($this->profile_owner) || $writable;
-                               break;
-                       case 'community':
-                               $this->profile_owner = 0;
-                               $this->writable = $writable;
-                               break;
-                       case 'contacts':
+                       case Conversation::MODE_CHANNEL:
+                       case Conversation::MODE_COMMUNITY:
+                       case Conversation::MODE_CONTACTS:
                                $this->profile_owner = 0;
                                $this->writable = $writable;
                                break;
@@ -168,7 +164,7 @@ class Thread
                /*
                 * Only add will be displayed
                 */
-               if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
+               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;
                }
@@ -190,18 +186,18 @@ class Thread
         * We should find a way to avoid using those arguments (at least most of them)
         *
         * @param array $conv_responses data
-        * @param string $formSecurityToken A security Token to avoid CSF attacks
+        * @param string $formSecurityToken A 'contact_action' form security token
         *
         * @return mixed The data requested on success
         *               false on failure
         * @throws \Exception
         */
-       public function getTemplateData($conv_responses, string $formSecurityToken)
+       public function getTemplateData(array $conv_responses, string $formSecurityToken)
        {
                $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;
                        }