]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GeoURL/GeoURLPlugin.php
9f2670eb822f40ce438ae11cf842aa6f3c565f95
[quix0rs-gnu-social.git] / plugins / GeoURL / GeoURLPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Plugin to add ICBM metadata to HTML pages and report data to GeoURL.org
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  Action
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2009 StatusNet Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Plugin to add ICBM metadata to HTML pages and report data to GeoURL.org
36  *
37  * Adds metadata to notice and profile pages that geourl.org and others
38  * understand. Also, pings geourl.org when a new notice is saved or
39  * a profile is changed.
40  *
41  * @category Plugin
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://status.net/
46  *
47  * @seeAlso  Location
48  */
49 class GeoURLPlugin extends Plugin
50 {
51     public $ping = 'http://geourl.org/ping/';
52
53     /**
54      * Add extra <meta> headers for certain pages that geourl.org understands
55      *
56      * @param Action $action page being shown
57      *
58      * @return boolean event handler flag
59      */
60     function onEndShowHeadElements($action)
61     {
62         $name = $action->trimmed('action');
63
64         $location = null;
65
66         if ($name == 'showstream') {
67             $profile = $action->profile;
68             if (!empty($profile) && !empty($profile->lat) && !empty($profile->lon)) {
69                 $location = $profile->lat . ', ' . $profile->lon;
70             }
71         } else if ($name == 'shownotice') {
72             $notice = $action->profile;
73             if (!empty($notice) && !empty($notice->lat) && !empty($notice->lon)) {
74                 $location = $notice->lat . ', ' . $notice->lon;
75             }
76         }
77
78         if (!empty($location)) {
79             $action->element('meta', array('name' => 'ICBM',
80                                            'content' => $location));
81             $action->element('meta', array('name' => 'DC.title',
82                                            'content' => $action->title()));
83         }
84
85         return true;
86     }
87
88     /**
89      * Report local notices to GeoURL.org when they're created
90      *
91      * @param Notice &$notice queued notice
92      *
93      * @return boolean event handler flag
94      */
95     function onHandleQueuedNotice(&$notice)
96     {
97         if ($notice->is_local == 1) {
98
99             $request = HTTPClient::start();
100
101             $url = common_local_url('shownotice',
102                                     array('notice' => $notice->id));
103
104             try {
105                 $request->post($this->ping,
106                                null,
107                                array('p' => $url));
108             } catch (HTTP_Request2_Exception $e) {
109                 common_log(LOG_WARNING,
110                            "GeoURL.org ping failed for '$url' ($this->ping)");
111             }
112         }
113
114         return true;
115     }
116
117     function onPluginVersion(&$versions)
118     {
119         $versions[] = array('name' => 'GeoURL',
120                             'version' => STATUSNET_VERSION,
121                             'author' => 'Evan Prodromou',
122                             'homepage' => 'http://status.net/wiki/Plugin:GeoURL',
123                             'rawdescription' =>
124                             // TRANS: Plugin description.
125                             _m('Ping <a href="http://geourl.org/">GeoURL</a> when '.
126                                'new geolocation-enhanced notices are posted.'));
127         return true;
128     }
129 }