add objectType, content to activity objects in JSON
This commit is contained in:
parent
9092eb5535
commit
70aada690b
@ -692,9 +692,6 @@ class ActivityObject
|
|||||||
|
|
||||||
// id
|
// id
|
||||||
$object['id'] = $this->id;
|
$object['id'] = $this->id;
|
||||||
//
|
|
||||||
// XXX: Should we use URL here? or a crazy tag URI?
|
|
||||||
$object['id'] = $this->id;
|
|
||||||
|
|
||||||
if ($this->type == ActivityObject::PERSON
|
if ($this->type == ActivityObject::PERSON
|
||||||
|| $this->type == ActivityObject::GROUP) {
|
|| $this->type == ActivityObject::GROUP) {
|
||||||
@ -737,14 +734,17 @@ class ActivityObject
|
|||||||
// We can probably use the whole schema URL here but probably the
|
// We can probably use the whole schema URL here but probably the
|
||||||
// relative simple name is easier to parse
|
// relative simple name is easier to parse
|
||||||
// @fixme this breaks extension URIs
|
// @fixme this breaks extension URIs
|
||||||
$object['type'] = substr($this->type, strrpos($this->type, '/') + 1);
|
$object['objectType'] = substr($this->type, strrpos($this->type, '/') + 1);
|
||||||
|
|
||||||
// published (probably don't need. Might be useful for repeats.)
|
|
||||||
|
|
||||||
// summary
|
// summary
|
||||||
$object['summary'] = $this->summary;
|
$object['summary'] = $this->summary;
|
||||||
|
|
||||||
// udpated (probably don't need this)
|
// summary
|
||||||
|
$object['content'] = $this->content;
|
||||||
|
|
||||||
|
// published (probably don't need. Might be useful for repeats.)
|
||||||
|
|
||||||
|
// updated (probably don't need this)
|
||||||
|
|
||||||
// TODO: upstreamDuplicates
|
// TODO: upstreamDuplicates
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user