]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/OStatusPlugin.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / plugins / OStatus / OStatusPlugin.php
1 <?php
2 /*
3 StatusNet Plugin: 0.9
4 Plugin Name: FeedSub
5 Plugin URI: http://status.net/wiki/Feed_subscription
6 Description: FeedSub allows subscribing to real-time updates from external feeds supporting PubHubSubbub protocol.
7 Version: 0.1
8 Author: Brion Vibber <brion@status.net>
9 Author URI: http://status.net/
10 */
11
12 /*
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2009, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 /**
31  * @package FeedSubPlugin
32  * @maintainer Brion Vibber <brion@status.net>
33  */
34
35 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
36
37 define('FEEDSUB_SERVICE', 100); // fixme -- avoid hardcoding these?
38
39 // We bundle the XML_Parse_Feed library...
40 set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib');
41
42 class FeedSubException extends Exception
43 {
44 }
45
46 class OStatusPlugin extends Plugin
47 {
48     /**
49      * Hook for RouterInitialized event.
50      *
51      * @param Net_URL_Mapper $m path-to-action mapper
52      * @return boolean hook return
53      */
54     function onRouterInitialized($m)
55     {
56         // Discovery actions
57         $m->connect('.well-known/host-meta',
58                     array('action' => 'hostmeta'));
59         $m->connect('main/webfinger',
60                     array('action' => 'webfinger'));
61         $m->connect('main/ostatus',
62                     array('action' => 'ostatusinit'));
63         $m->connect('main/ostatus?nickname=:nickname',
64                   array('action' => 'ostatusinit'), array('nickname' => '[A-Za-z0-9_-]+'));
65         $m->connect('main/ostatussub',
66                     array('action' => 'ostatussub'));
67         $m->connect('main/ostatussub',
68                     array('action' => 'ostatussub'), array('feed' => '[A-Za-z0-9\.\/\:]+'));
69
70         // PuSH actions
71         $m->connect('main/push/hub', array('action' => 'pushhub'));
72
73         $m->connect('main/push/callback/:feed',
74                     array('action' => 'pushcallback'),
75                     array('feed' => '[0-9]+'));
76         $m->connect('settings/feedsub',
77                     array('action' => 'feedsubsettings'));
78
79         // Salmon endpoint
80         $m->connect('main/salmon/user/:id',
81                     array('action' => 'salmon'),
82                     array('id' => '[0-9]+'));
83         $m->connect('main/salmon/group/:id',
84                     array('action' => 'salmongroup'),
85                     array('id' => '[0-9]+'));
86         return true;
87     }
88
89     /**
90      * Set up queue handlers for outgoing hub pushes
91      * @param QueueManager $qm
92      * @return boolean hook return
93      */
94     function onEndInitializeQueueManager(QueueManager $qm)
95     {
96         $qm->connect('hubverify', 'HubVerifyQueueHandler');
97         $qm->connect('hubdistrib', 'HubDistribQueueHandler');
98         $qm->connect('hubout', 'HubOutQueueHandler');
99         return true;
100     }
101
102     /**
103      * Put saved notices into the queue for pubsub distribution.
104      */
105     function onStartEnqueueNotice($notice, &$transports)
106     {
107         $transports[] = 'hubdistrib';
108         return true;
109     }
110
111     /**
112      * Set up a PuSH hub link to our internal link for canonical timeline
113      * Atom feeds for users and groups.
114      */
115     function onStartApiAtom(AtomNoticeFeed $feed)
116     {
117         $id = null;
118
119         if ($feed instanceof AtomUserNoticeFeed) {
120             $salmonAction = 'salmon';
121             $id = $feed->getUser()->id;
122         } else if ($feed instanceof AtomGroupNoticeFeed) {
123             $salmonAction = 'salmongroup';
124             $id = $feed->getGroup()->id;
125         } else {
126             return;
127         }
128
129        if (!empty($id)) {
130             $hub = common_config('ostatus', 'hub');
131             if (empty($hub)) {
132                 // Updates will be handled through our internal PuSH hub.
133                 $hub = common_local_url('pushhub');
134             }
135             $feed->addLink($hub, array('rel' => 'hub'));
136
137             // Also, we'll add in the salmon link
138             $salmon = common_local_url($salmonAction, array('id' => $id));
139             $feed->addLink($salmon, array('rel' => 'salmon'));
140         }
141     }
142
143     /**
144      * Add the feed settings page to the Connect Settings menu
145      *
146      * @param Action &$action The calling page
147      *
148      * @return boolean hook return
149      */
150     function onEndConnectSettingsNav(&$action)
151     {
152         $action_name = $action->trimmed('action');
153
154         $action->menuItem(common_local_url('feedsubsettings'),
155                           _m('Feeds'),
156                           _m('Feed subscription options'),
157                           $action_name === 'feedsubsettings');
158
159         return true;
160     }
161
162     /**
163      * Automatically load the actions and libraries used by the plugin
164      *
165      * @param Class $cls the class
166      *
167      * @return boolean hook return
168      *
169      */
170     function onAutoload($cls)
171     {
172         $base = dirname(__FILE__);
173         $lower = strtolower($cls);
174         $files = array("$base/classes/$cls.php",
175                        "$base/lib/$lower.php");
176         if (substr($lower, -6) == 'action') {
177             $files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
178         }
179         foreach ($files as $file) {
180             if (file_exists($file)) {
181                 include_once $file;
182                 return false;
183             }
184         }
185         return true;
186     }
187
188     /**
189      * Add in an OStatus subscribe button
190      */
191     function onStartProfileRemoteSubscribe($output, $profile)
192     {
193         $cur = common_current_user();
194
195         if (empty($cur)) {
196             // Add an OStatus subscribe
197             $output->elementStart('li', 'entity_subscribe');
198             $url = common_local_url('ostatusinit',
199                                     array('nickname' => $profile->nickname));
200             $output->element('a', array('href' => $url,
201                                         'class' => 'entity_remote_subscribe'),
202                                 _m('Subscribe'));
203
204             $output->elementEnd('li');
205         }
206
207         return false;
208     }
209
210     /**
211      * Check if we've got remote replies to send via Salmon.
212      *
213      * @fixme push webfinger lookup & sending to a background queue
214      * @fixme also detect short-form name for remote subscribees where not ambiguous
215      */
216     function onEndNoticeSave($notice)
217     {
218         $count = preg_match_all('/(\w+\.)*\w+@(\w+\.)*\w+(\w+\-\w+)*\.\w+/', $notice->content, $matches);
219         if ($count) {
220             foreach ($matches[0] as $webfinger) {
221                 // Check to see if we've got an actual webfinger
222                 $w = new Webfinger;
223
224                 $endpoint_uri = '';
225
226                 $result = $w->lookup($webfinger);
227                 if (empty($result)) {
228                     continue;
229                 }
230
231                 foreach ($result->links as $link) {
232                     if ($link['rel'] == 'salmon') {
233                         $endpoint_uri = $link['href'];
234                     }
235                 }
236
237                 if (empty($endpoint_uri)) {
238                     continue;
239                 }
240
241                 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
242                 $xml .= $notice->asAtomEntry();
243
244                 $salmon = new Salmon();
245                 $salmon->post($endpoint_uri, $xml);
246             }
247         }
248     }
249
250     /**
251      * Garbage collect unused feeds on unsubscribe
252      */
253     function onEndUnsubscribe($user, $other)
254     {
255         $profile = Ostatus_profile::staticGet('profile_id', $other->id);
256         if ($feed) {
257             $sub = new Subscription();
258             $sub->subscribed = $other->id;
259             $sub->limit(1);
260             if (!$sub->find(true)) {
261                 common_log(LOG_INFO, "Unsubscribing from now-unused feed $feed->feeduri on hub $feed->huburi");
262                 $profile->unsubscribe();
263             }
264         }
265         return true;
266     }
267
268     /**
269      * Make sure necessary tables are filled out.
270      */
271     function onCheckSchema() {
272         $schema = Schema::get();
273         $schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef());
274         $schema->ensureTable('hubsub', HubSub::schemaDef());
275         return true;
276     }
277
278     function onEndShowStatusNetStyles($action) {
279         $action->cssLink(common_path('plugins/OStatus/theme/base/css/ostatus.css'));
280         return true;
281     }
282
283     function onEndShowStatusNetScripts($action) {
284         $action->script(common_path('plugins/OStatus/js/ostatus.js'));
285         return true;
286     }
287 }