if ($this->verb == ActivityVerb::POST && count($this->objects) == 1) {
$obj = $this->objects[0];
-
- $xs->element('id', null, $obj->id);
- $xs->element('activity:object-type', null, $obj->type);
-
- if (!empty($obj->title)) {
- $xs->element('title', null, $obj->title);
- } else {
- // XXX need a better default title
- $xs->element('title', null, _('Post'));
- }
-
- if (!empty($obj->content)) {
- $xs->element('content', array('type' => 'html'), $obj->content);
- }
-
- if (!empty($obj->summary)) {
- $xs->element('summary', null, $obj->summary);
- }
-
- if (!empty($obj->link)) {
- $xs->element('link', array('rel' => 'alternate',
- 'type' => 'text/html'),
- $obj->link);
- }
-
- // XXX: some object types might have other values here.
+ $obj->outputTo($xs, null);
} else {
$xs->element('id', null, $this->id);
$xs->element('name', array(), $this->actor->title);
}
$xs->elementEnd('author');
- $xs->raw($this->actor->asString('activity:actor'));
+ $this->actor->outputTo($xs, 'activity:actor');
}
if ($this->verb != ActivityVerb::POST || count($this->objects) != 1) {
foreach($this->objects as $object) {
- $xs->raw($object->asString());
+ $object->outputTo($xs, 'activity:object');
}
}
}
if ($this->target) {
- $xs->raw($this->target->asString('activity:target'));
+ $this->target->outputTo($xs, 'activity:target');
}
foreach ($this->categories as $cat) {
}
$sizes = array(
- AVATAR_PROFILE_SIZE,
- AVATAR_STREAM_SIZE,
- AVATAR_MINI_SIZE
- );
+ AVATAR_PROFILE_SIZE,
+ AVATAR_STREAM_SIZE,
+ AVATAR_MINI_SIZE
+ );
foreach ($sizes as $size) {
$alink = null;
return $object;
}
+
+ function outputTo($xo, $tag='activity:object')
+ {
+ if (!empty($tag)) {
+ $xo->elementStart($tag);
+ }
- function asString($tag='activity:object')
- {
- $xs = new XMLStringer(true);
-
- $xs->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)
}
if (!empty($this->summary)) {
- $xs->element(
+ $xo->element(
self::SUMMARY,
null,
common_xml_safe_str($this->summary)
if (!empty($this->content)) {
// XXX: assuming HTML content here
- $xs->element(
+ $xo->element(
ActivityUtils::CONTENT,
array('type' => 'html'),
common_xml_safe_str($this->content)
}
if (!empty($this->link)) {
- $xs->element(
+ $xo->element(
'link',
array(
'rel' => 'alternate',
|| $this->type == ActivityObject::GROUP) {
foreach ($this->avatarLinks as $avatar) {
- $xs->element(
+ $xo->element(
'link', array(
'rel' => 'avatar',
'type' => $avatar->type,
}
if (!empty($this->geopoint)) {
- $xs->element(
+ $xo->element(
'georss:point',
null,
$this->geopoint
}
if (!empty($this->poco)) {
- $xs->raw($this->poco->asString());
+ $xo->raw($this->poco->asString());
+ }
+
+ foreach ($this->extra as $el) {
+ list($extraTag, $attrs, $content) = $el;
+ $xo->element($extraTag, $attrs, $content);
}
- $xs->elementEnd($tag);
+ if (!empty($tag)) {
+ $xo->elementEnd($tag);
+ }
+
+ return;
+ }
+
+ function asString($tag='activity:object')
+ {
+ $xs = new XMLStringer(true);
+
+ $this->outputTo($xs, $tag);
return $xs->getString();
}