]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
catch up to spec
authorEvan Prodromou <evan@status.net>
Sat, 31 Dec 2011 10:31:26 +0000 (02:31 -0800)
committerEvan Prodromou <evan@status.net>
Sat, 31 Dec 2011 10:31:26 +0000 (02:31 -0800)
lib/activity.php

index 5234a54c03d9221ffb49e53a81bf9aa5bc905c15..99c76c9126f4ba40c4494e024e16ec12b913f83f 100644 (file)
@@ -389,9 +389,32 @@ class Activity
 
                     $activity['geopoint'] = array(
                         '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();
@@ -487,15 +510,20 @@ class Activity
 
         /* Purely extensions hereafter */
 
-        $tags = array();
-
-        // Use an Activity Object for term? Which object? Note?
-        foreach ($this->categories as $cat) {
-            $tags[] = $cat->term;
+        if ($activity['verb'] == 'post') {
+            $tags = array();
+            foreach ($this->categories as $cat) {
+                if (mb_strlen($cat->term) > 0) {
+                    // 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
         // shouldn't be using 'statusnet:notice_info', but this will work
         // for the moment.