From 7da925ca70c74c3466fd0477403109ed40d02175 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sat, 6 May 2017 11:34:38 +0200 Subject: [PATCH] Handle selfLink in ActivityObject --- lib/activityobject.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/activityobject.php b/lib/activityobject.php index 87eea13727..fc62e5f46c 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -102,6 +102,7 @@ class ActivityObject public $content; public $owner; public $link; + public $selfLink; // think APP (Atom Publishing Protocol) public $source; public $avatarLinks = array(); public $geopoint; @@ -263,6 +264,7 @@ class ActivityObject $this->source = $this->_getSource($element); $this->link = ActivityUtils::getPermalink($element); + $this->selfLink = ActivityUtils::getSelfLink($element); $this->id = $this->_childContent($element, self::ID); @@ -651,6 +653,18 @@ class ActivityObject ); } + if (!empty($this->selfLink)) { + $xo->element( + 'link', + array( + 'rel' => 'self', + 'type' => 'application/atom+xml', + 'href' => $this->selfLink + ), + null + ); + } + if(!empty($this->owner)) { $owner = $this->owner->asActivityNoun(self::AUTHOR); $xo->raw($owner);