]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/activityobject.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / activityobject.php
index 52733c47a010d5dc489425c7989424e54eb7abd9..5185d7761055951ab86a3cff18a8322c38384f25 100644 (file)
@@ -105,6 +105,7 @@ class ActivityObject
     public $thumbnail;
     public $largerImage;
     public $description;
+    public $extra = array();
 
     /**
      * Constructor
@@ -201,7 +202,7 @@ class ActivityObject
 
         $title = ActivityUtils::childHtmlContent($element, self::TITLE);
 
-        $this->title = html_entity_decode(strip_tags($title));
+        $this->title = html_entity_decode(strip_tags($title), ENT_QUOTES, 'UTF-8');
 
         $this->source  = $this->_getSource($element);
 
@@ -381,13 +382,18 @@ class ActivityObject
     static function fromNotice(Notice $notice)
     {
         $object = new ActivityObject();
+               
+               if (Event::handle('StartActivityObjectFromNotice', array($notice, &$object))) {
 
-        $object->type    = ActivityObject::NOTE;
+                       $object->type    = ActivityObject::NOTE;
 
-        $object->id      = $notice->uri;
-        $object->title   = $notice->content;
-        $object->content = $notice->rendered;
-        $object->link    = $notice->bestUrl();
+                       $object->id      = $notice->uri;
+                       $object->title   = $notice->content;
+                       $object->content = $notice->rendered;
+                       $object->link    = $notice->bestUrl();
+
+                       Event::handle('EndActivityObjectFromNotice', array($notice, &$object));
+               }
 
         return $object;
     }
@@ -396,57 +402,62 @@ class ActivityObject
     {
         $object = new ActivityObject();
 
-        $object->type   = ActivityObject::PERSON;
-        $object->id     = $profile->getUri();
-        $object->title  = $profile->getBestName();
-        $object->link   = $profile->profileurl;
-
-        $orig = $profile->getOriginalAvatar();
-
-        if (!empty($orig)) {
-            $object->avatarLinks[] = AvatarLink::fromAvatar($orig);
-        }
+               if (Event::handle('StartActivityObjectFromProfile', array($profile, &$object))) {
 
-        $sizes = array(
-            AVATAR_PROFILE_SIZE,
-            AVATAR_STREAM_SIZE,
-            AVATAR_MINI_SIZE
-        );
+                       $object->type   = ActivityObject::PERSON;
+                       $object->id     = $profile->getUri();
+                       $object->title  = $profile->getBestName();
+                       $object->link   = $profile->profileurl;
 
-        foreach ($sizes as $size) {
-            $alink  = null;
-            $avatar = $profile->getAvatar($size);
+                       $orig = $profile->getOriginalAvatar();
 
-            if (!empty($avatar)) {
-                $alink = AvatarLink::fromAvatar($avatar);
-            } else {
-                $alink = new AvatarLink();
-                $alink->type   = 'image/png';
-                $alink->height = $size;
-                $alink->width  = $size;
-                $alink->url    = Avatar::defaultImage($size);
-
-                if ($size == AVATAR_PROFILE_SIZE) {
-                    // Hack for Twitter import: we don't have a 96x96 image,
-                    // but we do have a 73x73 image. For now, fake it with that.
-                    $avatar = $profile->getAvatar(73);
-                    if ($avatar) {
-                        $alink = AvatarLink::fromAvatar($avatar);
-                        $alink->height= $size;
-                        $alink->width = $size;
-                    }
-                }
-            }
+                       if (!empty($orig)) {
+                               $object->avatarLinks[] = AvatarLink::fromAvatar($orig);
+                       }
 
-            $object->avatarLinks[] = $alink;
-        }
-
-        if (isset($profile->lat) && isset($profile->lon)) {
-            $object->geopoint = (float)$profile->lat
-                . ' ' . (float)$profile->lon;
-        }
+                       $sizes = array(
+                AVATAR_PROFILE_SIZE,
+                AVATAR_STREAM_SIZE,
+                AVATAR_MINI_SIZE
+            );
 
-        $object->poco = PoCo::fromProfile($profile);
+                       foreach ($sizes as $size) {
+                               $alink  = null;
+                               $avatar = $profile->getAvatar($size);
+
+                               if (!empty($avatar)) {
+                                       $alink = AvatarLink::fromAvatar($avatar);
+                               } else {
+                                       $alink = new AvatarLink();
+                                       $alink->type   = 'image/png';
+                                       $alink->height = $size;
+                                       $alink->width  = $size;
+                                       $alink->url    = Avatar::defaultImage($size);
+
+                                       if ($size == AVATAR_PROFILE_SIZE) {
+                                               // Hack for Twitter import: we don't have a 96x96 image,
+                                               // but we do have a 73x73 image. For now, fake it with that.
+                                               $avatar = $profile->getAvatar(73);
+                                               if ($avatar) {
+                                                       $alink = AvatarLink::fromAvatar($avatar);
+                                                       $alink->height= $size;
+                                                       $alink->width = $size;
+                                               }
+                                       }
+                               }
+
+                               $object->avatarLinks[] = $alink;
+                       }
+
+                       if (isset($profile->lat) && isset($profile->lon)) {
+                               $object->geopoint = (float)$profile->lat
+                                       . ' ' . (float)$profile->lon;
+                       }
+
+                       $object->poco = PoCo::fromProfile($profile);
+
+                       Event::handle('EndActivityObjectFromProfile', array($profile, &$object));
+               }
 
         return $object;
     }
@@ -455,43 +466,42 @@ class ActivityObject
     {
         $object = new ActivityObject();
 
-        $object->type   = ActivityObject::GROUP;
-        $object->id     = $group->getUri();
-        $object->title  = $group->getBestName();
-        $object->link   = $group->getUri();
+               if (Event::handle('StartActivityObjectFromGroup', array($group, &$object))) {
 
-        $object->avatarLinks[] = AvatarLink::fromFilename(
-            $group->homepage_logo,
-            AVATAR_PROFILE_SIZE
-        );
+                       $object->type   = ActivityObject::GROUP;
+                       $object->id     = $group->getUri();
+                       $object->title  = $group->getBestName();
+                       $object->link   = $group->getUri();
 
-        $object->avatarLinks[] = AvatarLink::fromFilename(
-            $group->stream_logo,
-            AVATAR_STREAM_SIZE
-        );
+                       $object->avatarLinks[] = AvatarLink::fromFilename($group->homepage_logo,
+                                                                                                                         AVATAR_PROFILE_SIZE);
 
-        $object->avatarLinks[] = AvatarLink::fromFilename(
-            $group->mini_logo,
-            AVATAR_MINI_SIZE
-        );
+                       $object->avatarLinks[] = AvatarLink::fromFilename($group->stream_logo,
+                                                                                                                         AVATAR_STREAM_SIZE);
 
-        $object->poco = PoCo::fromGroup($group);
+                       $object->avatarLinks[] = AvatarLink::fromFilename($group->mini_logo,
+                                                                                                                         AVATAR_MINI_SIZE);
 
-        return $object;
-    }
+                       $object->poco = PoCo::fromGroup($group);
 
-    function asString($tag='activity:object')
-    {
-        $xs = new XMLStringer(true);
+                       Event::handle('EndActivityObjectFromGroup', array($group, &$object));
+               }
 
-        $xs->elementStart($tag);
+        return $object;
+    }
+       
+       function outputTo($xo, $tag='activity:object')
+       {
+               if (!empty($tag)) {
+                       $xo->elementStart($tag);
+               }
 
-        $xs->element('activity:object-type', null, $this->type);
+        $xo->element('activity:object-type', null, $this->type);
 
-        $xs->element(self::ID, null, $this->id);
+        $xo->element(self::ID, null, $this->id);
 
         if (!empty($this->title)) {
-            $xs->element(
+            $xo->element(
                 self::TITLE,
                 null,
                 common_xml_safe_str($this->title)
@@ -499,7 +509,7 @@ class ActivityObject
         }
 
         if (!empty($this->summary)) {
-            $xs->element(
+            $xo->element(
                 self::SUMMARY,
                 null,
                 common_xml_safe_str($this->summary)
@@ -508,7 +518,7 @@ class ActivityObject
 
         if (!empty($this->content)) {
             // XXX: assuming HTML content here
-            $xs->element(
+            $xo->element(
                 ActivityUtils::CONTENT,
                 array('type' => 'html'),
                 common_xml_safe_str($this->content)
@@ -516,7 +526,7 @@ class ActivityObject
         }
 
         if (!empty($this->link)) {
-            $xs->element(
+            $xo->element(
                 'link',
                 array(
                     'rel' => 'alternate',
@@ -531,7 +541,7 @@ class ActivityObject
             || $this->type == ActivityObject::GROUP) {
 
             foreach ($this->avatarLinks as $avatar) {
-                $xs->element(
+                $xo->element(
                     'link', array(
                         'rel'  => 'avatar',
                         'type'         => $avatar->type,
@@ -545,7 +555,7 @@ class ActivityObject
         }
 
         if (!empty($this->geopoint)) {
-            $xs->element(
+            $xo->element(
                 'georss:point',
                 null,
                 $this->geopoint
@@ -553,10 +563,26 @@ class ActivityObject
         }
 
         if (!empty($this->poco)) {
-            $xs->raw($this->poco->asString());
+            $xo->raw($this->poco->asString());
         }
 
-        $xs->elementEnd($tag);
+        foreach ($this->extra as $el) {
+            list($extraTag, $attrs, $content) = $el;
+            $xo->element($extraTag, $attrs, $content);
+        }
+
+               if (!empty($tag)) {
+                       $xo->elementEnd($tag);
+               }
+
+        return;
+       }
+
+    function asString($tag='activity:object')
+    {
+        $xs = new XMLStringer(true);
+
+               $this->outputTo($xs, $tag);
 
         return $xs->getString();
     }