]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/activitycontext.php
Fix for regression with OStatus mention processing (duplicated new and old style...
[quix0rs-gnu-social.git] / lib / activitycontext.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * An activity
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Feed
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Zach Copley <zach@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 class ActivityContext
36 {
37     public $replyToID;
38     public $replyToUrl;
39     public $location;
40     public $attention = array();
41     public $conversation;
42
43     const THR     = 'http://purl.org/syndication/thread/1.0';
44     const GEORSS  = 'http://www.georss.org/georss';
45     const OSTATUS = 'http://ostatus.org/schema/1.0';
46
47     const INREPLYTO = 'in-reply-to';
48     const REF       = 'ref';
49     const HREF      = 'href';
50
51     const POINT     = 'point';
52
53     const ATTENTION    = 'ostatus:attention';
54     const MENTIONED    = 'mentioned';
55     const CONVERSATION = 'ostatus:conversation';
56
57     function __construct($element)
58     {
59         $replyToEl = ActivityUtils::child($element, self::INREPLYTO, self::THR);
60
61         if (!empty($replyToEl)) {
62             $this->replyToID  = $replyToEl->getAttribute(self::REF);
63             $this->replyToUrl = $replyToEl->getAttribute(self::HREF);
64         }
65
66         $this->location = $this->getLocation($element);
67
68         $this->conversation = ActivityUtils::getLink($element, self::CONVERSATION);
69
70         // Multiple attention links allowed
71
72         $links = $element->getElementsByTagNameNS(ActivityUtils::ATOM, ActivityUtils::LINK);
73
74         $attention = array();
75         for ($i = 0; $i < $links->length; $i++) {
76
77             $link = $links->item($i);
78
79             $linkRel = $link->getAttribute(ActivityUtils::REL);
80
81             // XXX: Deprecate this in favour of "mentioned" from Salmon spec
82             // http://salmon-protocol.googlecode.com/svn/trunk/draft-panzer-salmon-00.html#SALR
83             if ($linkRel == self::ATTENTION) {
84                 $attention[] = $link->getAttribute(self::HREF);
85             } elseif ($linkRel == self::MENTIONED) {
86                 $attention[] = $link->getAttribute(self::HREF);
87             }
88         }
89         $this->attention = array_unique($attention);
90     }
91
92     /**
93      * Parse location given as a GeoRSS-simple point, if provided.
94      * http://www.georss.org/simple
95      *
96      * @param feed item $entry
97      * @return mixed Location or false
98      */
99     function getLocation($dom)
100     {
101         $points = $dom->getElementsByTagNameNS(self::GEORSS, self::POINT);
102
103         for ($i = 0; $i < $points->length; $i++) {
104             $point = $points->item($i)->textContent;
105             return self::locationFromPoint($point);
106         }
107
108         return null;
109     }
110
111     // XXX: Move to ActivityUtils or Location?
112     static function locationFromPoint($point)
113     {
114         $point = str_replace(',', ' ', $point); // per spec "treat commas as whitespace"
115         $point = preg_replace('/\s+/', ' ', $point);
116         $point = trim($point);
117         $coords = explode(' ', $point);
118         if (count($coords) == 2) {
119             list($lat, $lon) = $coords;
120             if (is_numeric($lat) && is_numeric($lon)) {
121                 common_log(LOG_INFO, "Looking up location for $lat $lon from georss point");
122                 return Location::fromLatLon($lat, $lon);
123             }
124         }
125         common_log(LOG_ERR, "Ignoring bogus georss:point value $point");
126         return null;
127     }
128 }