Atom output of ActivityObject now has html AND text

This commit is contained in:
Mikael Nordfeldth 2013-10-08 15:00:54 +02:00
parent db363cdad9
commit e1c9061735
1 changed files with 10 additions and 5 deletions

View File

@ -438,7 +438,7 @@ class ActivityObject
$object->type = (empty($notice->object_type)) ? ActivityObject::NOTE : $notice->object_type;
$object->id = $notice->uri;
$object->title = $notice->content;
$object->title = 'New ' . ActivityObject::canonicalType($notice->object_type);
$object->content = $notice->rendered;
$object->link = $notice->bestUrl();
@ -696,6 +696,11 @@ class ActivityObject
if (!empty($this->content)) {
// XXX: assuming HTML content here
$xo->element(
ActivityUtils::CONTENT,
array('type' => 'text'),
html_entity_decode(strip_tags($this->content), ENT_QUOTES, 'UTF-8')
);
$xo->element(
ActivityUtils::CONTENT,
array('type' => 'html'),
@ -792,9 +797,6 @@ class ActivityObject
// content (Add rendered version of the notice?)
// displayName
$object['displayName'] = $this->title;
// downstreamDuplicates
// id
@ -808,6 +810,9 @@ class ActivityObject
if ($this->type == ActivityObject::PERSON
|| $this->type == ActivityObject::GROUP) {
// displayName
$object['displayName'] = $this->title;
// XXX: Not sure what the best avatar is to use for the
// author's "image". For now, I'm using the large size.
@ -855,7 +860,7 @@ class ActivityObject
// summary
$object['summary'] = $this->summary;
// content
// content, usually rendered HTML
$object['content'] = $this->content;
// published (probably don't need. Might be useful for repeats.)