Include <author> with actor ID and name in Activity::asString(); fixes Salmon signature on OStatus unsub pings

This commit is contained in:
Brion Vibber 2010-02-24 17:36:31 +00:00
parent 959171acac
commit 5cabb63e4e
1 changed files with 15 additions and 2 deletions

View File

@ -957,11 +957,24 @@ class Activity
}
// XXX: add context
// XXX: add target
$xs->elementStart('author');
$xs->element('uri', array(), $this->actor->id);
if ($this->actor->title) {
$xs->element('name', array(), $this->actor->title);
}
$xs->elementEnd('author');
$xs->raw($this->actor->asString('activity:actor'));
$xs->element('activity:verb', null, $this->verb);
$xs->raw($this->object->asString());
if ($this->object) {
$xs->raw($this->object->asString());
}
if ($this->target) {
$xs->raw($this->target->asString('activity:target'));
}
$xs->elementEnd('entry');