catch up to spec

This commit is contained in:
Evan Prodromou 2011-12-31 02:31:26 -08:00
parent 6ca729803b
commit bff89bc864
1 changed files with 36 additions and 8 deletions

View File

@ -389,9 +389,32 @@ class Activity
$activity['geopoint'] = array( $activity['geopoint'] = array(
'type' => 'Point', 'type' => 'Point',
'coordinates' => array($loc->lat, $loc->lon) 'coordinates' => array($loc->lat, $loc->lon),
'deprecated' => true,
); );
$lat = $loc->lat + 0.0;
$lon = $loc->lon + 0.0;
$position = (($lat > 0.0) ? ("+".$lat) : $lat) . "." .
(($lon > 0.0) ? ("+".$lon) : $lon) . "/";
$activity['location'] = array(
'objectType' => 'place',
'position' => $position
);
$name = $loc->getName();
if ($name) {
$activity['location']['displayName'] = $name;
}
$url = $loc->getURL();
if ($url) {
$activity['location']['url'] = $url;
}
} }
$activity['to'] = $this->context->getToArray(); $activity['to'] = $this->context->getToArray();
@ -487,15 +510,20 @@ class Activity
/* Purely extensions hereafter */ /* Purely extensions hereafter */
$tags = array(); if ($activity['verb'] == 'post') {
$tags = array();
// Use an Activity Object for term? Which object? Note? foreach ($this->categories as $cat) {
foreach ($this->categories as $cat) { if (mb_strlen($cat->term) > 0) {
$tags[] = $cat->term; // Couldn't figure out which object type to use, so...
$tags[] = array('objectType' => 'http://activityschema.org/object/hashtag',
'displayName' => $cat->term);
}
}
if (count($tags) > 0) {
$activity['object']['tags'] = $tags;
}
} }
$activity['tags'] = $tags;
// XXX: a bit of a hack... Since JSON isn't namespaced we probably // XXX: a bit of a hack... Since JSON isn't namespaced we probably
// shouldn't be using 'statusnet:notice_info', but this will work // shouldn't be using 'statusnet:notice_info', but this will work
// for the moment. // for the moment.