]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
ReWork Notification Model/Module/Object/Repository/Factory
[friendica.git] / src / Object / Thread.php
index 89ed5a9408bd506e7f340db4ec3b82ce33410e01..0d0def06120927c00b57f664b9494316b2af2cd4 100644 (file)
@@ -4,9 +4,10 @@
  */
 namespace Friendica\Object;
 
-use Friendica\BaseObject;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
+use Friendica\DI;
+use Friendica\Protocol\Activity;
 use Friendica\Util\Security;
 
 /**
@@ -14,7 +15,7 @@ use Friendica\Util\Security;
  *
  * We should think about making this a SPL Iterator
  */
-class Thread extends BaseObject
+class Thread
 {
        private $parents = [];
        private $mode = null;
@@ -51,7 +52,7 @@ class Thread extends BaseObject
                        return;
                }
 
-               $a = self::getApp();
+               $a = DI::app();
 
                switch ($mode) {
                        case 'network':
@@ -60,7 +61,7 @@ class Thread extends BaseObject
                                $this->writable = true;
                                break;
                        case 'profile':
-                               $this->profile_owner = $a->profile['profile_uid'];
+                               $this->profile_owner = $a->profile['uid'];
                                $this->writable = Security::canWriteToUserWall($this->profile_owner);
                                break;
                        case 'display':
@@ -154,7 +155,7 @@ class Thread extends BaseObject
                        return false;
                }
 
-               if ($item->getDataValue('verb') === ACTIVITY_LIKE || $item->getDataValue('verb') === ACTIVITY_DISLIKE) {
+               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);
                        return false;
                }