]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/OStatusPlugin.php
OStatus: fix remote subscription when putting webfinger address in the little box
[quix0rs-gnu-social.git] / plugins / OStatus / OStatusPlugin.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009-2010, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @package OStatusPlugin
22  * @maintainer Brion Vibber <brion@status.net>
23  */
24
25 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
26
27 class FeedSubException extends Exception
28 {
29 }
30
31 class OStatusPlugin extends Plugin
32 {
33     /**
34      * Hook for RouterInitialized event.
35      *
36      * @param Net_URL_Mapper $m path-to-action mapper
37      * @return boolean hook return
38      */
39     function onRouterInitialized($m)
40     {
41         // Discovery actions
42         $m->connect('.well-known/host-meta',
43                     array('action' => 'hostmeta'));
44         $m->connect('main/webfinger',
45                     array('action' => 'webfinger'));
46         $m->connect('main/ostatus',
47                     array('action' => 'ostatusinit'));
48         $m->connect('main/ostatus?nickname=:nickname',
49                   array('action' => 'ostatusinit'), array('nickname' => '[A-Za-z0-9_-]+'));
50         $m->connect('main/ostatussub',
51                     array('action' => 'ostatussub'));
52         $m->connect('main/ostatussub',
53                     array('action' => 'ostatussub'), array('feed' => '[A-Za-z0-9\.\/\:]+'));
54
55         // PuSH actions
56         $m->connect('main/push/hub', array('action' => 'pushhub'));
57
58         $m->connect('main/push/callback/:feed',
59                     array('action' => 'pushcallback'),
60                     array('feed' => '[0-9]+'));
61
62         // Salmon endpoint
63         $m->connect('main/salmon/user/:id',
64                     array('action' => 'usersalmon'),
65                     array('id' => '[0-9]+'));
66         $m->connect('main/salmon/group/:id',
67                     array('action' => 'groupsalmon'),
68                     array('id' => '[0-9]+'));
69         return true;
70     }
71
72     /**
73      * Set up queue handlers for outgoing hub pushes
74      * @param QueueManager $qm
75      * @return boolean hook return
76      */
77     function onEndInitializeQueueManager(QueueManager $qm)
78     {
79         // Outgoing from our internal PuSH hub
80         $qm->connect('hubverify', 'HubVerifyQueueHandler');
81         $qm->connect('hubdistrib', 'HubDistribQueueHandler');
82         $qm->connect('hubout', 'HubOutQueueHandler');
83
84         // Incoming from a foreign PuSH hub
85         $qm->connect('pushinput', 'PushInputQueueHandler');
86         return true;
87     }
88
89     /**
90      * Put saved notices into the queue for pubsub distribution.
91      */
92     function onStartEnqueueNotice($notice, &$transports)
93     {
94         $transports[] = 'hubdistrib';
95         return true;
96     }
97
98     /**
99      * Set up a PuSH hub link to our internal link for canonical timeline
100      * Atom feeds for users and groups.
101      */
102     function onStartApiAtom($feed)
103     {
104         $id = null;
105
106         if ($feed instanceof AtomUserNoticeFeed) {
107             $salmonAction = 'usersalmon';
108             $user = $feed->getUser();
109             $id   = $user->id;
110             $profile = $user->getProfile();
111             $feed->setActivitySubject($profile->asActivityNoun('subject'));
112         } else if ($feed instanceof AtomGroupNoticeFeed) {
113             $salmonAction = 'groupsalmon';
114             $group = $feed->getGroup();
115             $id = $group->id;
116             $feed->setActivitySubject($group->asActivitySubject());
117         } else {
118             return true;
119         }
120
121         if (!empty($id)) {
122             $hub = common_config('ostatus', 'hub');
123             if (empty($hub)) {
124                 // Updates will be handled through our internal PuSH hub.
125                 $hub = common_local_url('pushhub');
126             }
127             $feed->addLink($hub, array('rel' => 'hub'));
128
129             // Also, we'll add in the salmon link
130             $salmon = common_local_url($salmonAction, array('id' => $id));
131             $feed->addLink($salmon, array('rel' => 'salmon'));
132         }
133
134         return true;
135     }
136
137     /**
138      * Automatically load the actions and libraries used by the plugin
139      *
140      * @param Class $cls the class
141      *
142      * @return boolean hook return
143      *
144      */
145     function onAutoload($cls)
146     {
147         $base = dirname(__FILE__);
148         $lower = strtolower($cls);
149         $map = array('activityverb' => 'activity',
150                      'activityobject' => 'activity',
151                      'activityutils' => 'activity');
152         if (isset($map[$lower])) {
153             $lower = $map[$lower];
154         }
155         $files = array("$base/classes/$cls.php",
156                        "$base/lib/$lower.php");
157         if (substr($lower, -6) == 'action') {
158             $files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
159         }
160         foreach ($files as $file) {
161             if (file_exists($file)) {
162                 include_once $file;
163                 return false;
164             }
165         }
166         return true;
167     }
168
169     /**
170      * Add in an OStatus subscribe button
171      */
172     function onStartProfileRemoteSubscribe($output, $profile)
173     {
174         $cur = common_current_user();
175
176         if (empty($cur)) {
177             // Add an OStatus subscribe
178             $output->elementStart('li', 'entity_subscribe');
179             $url = common_local_url('ostatusinit',
180                                     array('nickname' => $profile->nickname));
181             $output->element('a', array('href' => $url,
182                                         'class' => 'entity_remote_subscribe'),
183                                 _m('Subscribe'));
184
185             $output->elementEnd('li');
186         }
187
188         return false;
189     }
190
191     /**
192      * Check if we've got remote replies to send via Salmon.
193      *
194      * @fixme push webfinger lookup & sending to a background queue
195      * @fixme also detect short-form name for remote subscribees where not ambiguous
196      */
197
198     function onEndNoticeSave($notice)
199     {
200         $mentioned = $notice->getReplies();
201
202         foreach ($mentioned as $profile_id) {
203
204             $oprofile = Ostatus_profile::staticGet('profile_id', $profile_id);
205
206             if (!empty($oprofile) && !empty($oprofile->salmonuri)) {
207
208                 common_log(LOG_INFO, "Sending notice '{$notice->uri}' to remote profile '{$oprofile->uri}'.");
209
210                 // FIXME: this needs to go out in a queue handler
211
212                 $xml = '<?xml version="1.0" encoding="UTF-8" ?>';
213                 $xml .= $notice->asAtomEntry(true, true);
214
215                 $salmon = new Salmon();
216                 $salmon->post($oprofile->salmonuri, $xml);
217             }
218         }
219     }
220
221     /**
222      *
223      */
224
225     function onEndFindMentions($sender, $text, &$mentions)
226     {
227         preg_match_all('/(?:^|\s+)@((?:\w+\.)*\w+@(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+)/',
228                        $text,
229                        $wmatches,
230                        PREG_OFFSET_CAPTURE);
231
232         foreach ($wmatches[1] as $wmatch) {
233
234             $webfinger = $wmatch[0];
235
236             $oprofile = Ostatus_profile::ensureWebfinger($webfinger);
237
238             if (!empty($oprofile)) {
239
240                 $profile = $oprofile->localProfile();
241
242                 $mentions[] = array('mentioned' => array($profile),
243                                     'text' => $wmatch[0],
244                                     'position' => $wmatch[1],
245                                     'url' => $profile->profileurl);
246             }
247         }
248
249         return true;
250     }
251
252     /**
253      * Notify remote server and garbage collect unused feeds on unsubscribe.
254      * @fixme send these operations to background queues
255      *
256      * @param User $user
257      * @param Profile $other
258      * @return hook return value
259      */
260     function onEndUnsubscribe($profile, $other)
261     {
262         $user = User::staticGet('id', $profile->id);
263
264         if (empty($user)) {
265             return true;
266         }
267
268         $oprofile = Ostatus_profile::staticGet('profile_id', $other->id);
269
270         if (empty($oprofile)) {
271             return true;
272         }
273
274         // Drop the PuSH subscription if there are no other subscribers.
275
276         if ($other->subscriberCount() == 0) {
277             common_log(LOG_INFO, "Unsubscribing from now-unused feed $oprofile->feeduri");
278             $oprofile->unsubscribe();
279         }
280
281         $act = new Activity();
282
283         $act->verb = ActivityVerb::UNFOLLOW;
284
285         $act->id   = TagURI::mint('unfollow:%d:%d:%s',
286                                   $profile->id,
287                                   $other->id,
288                                   common_date_iso8601(time()));
289
290         $act->time    = time();
291         $act->title   = _("Unfollow");
292         $act->content = sprintf(_("%s stopped following %s."),
293                                $profile->getBestName(),
294                                $other->getBestName());
295
296         $act->actor   = ActivityObject::fromProfile($profile);
297         $act->object  = ActivityObject::fromProfile($other);
298
299         $oprofile->notifyActivity($act);
300
301         return true;
302     }
303
304     /**
305      * Make sure necessary tables are filled out.
306      */
307     function onCheckSchema() {
308         $schema = Schema::get();
309         $schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef());
310         $schema->ensureTable('ostatus_source', Ostatus_source::schemaDef());
311         $schema->ensureTable('feedsub', FeedSub::schemaDef());
312         $schema->ensureTable('hubsub', HubSub::schemaDef());
313         return true;
314     }
315
316     function onEndShowStatusNetStyles($action) {
317         $action->cssLink(common_path('plugins/OStatus/theme/base/css/ostatus.css'));
318         return true;
319     }
320
321     function onEndShowStatusNetScripts($action) {
322         $action->script(common_path('plugins/OStatus/js/ostatus.js'));
323         return true;
324     }
325
326     /**
327      * Override the "from ostatus" bit in notice lists to link to the
328      * original post and show the domain it came from.
329      *
330      * @param Notice in $notice
331      * @param string out &$name
332      * @param string out &$url
333      * @param string out &$title
334      * @return mixed hook return code
335      */
336     function onStartNoticeSourceLink($notice, &$name, &$url, &$title)
337     {
338         if ($notice->source == 'ostatus') {
339             $bits = parse_url($notice->uri);
340             $domain = $bits['host'];
341
342             $name = $domain;
343             $url = $notice->uri;
344             $title = sprintf(_m("Sent from %s via OStatus"), $domain);
345             return false;
346         }
347     }
348
349     /**
350      * Send incoming PuSH feeds for OStatus endpoints in for processing.
351      *
352      * @param FeedSub $feedsub
353      * @param DOMDocument $feed
354      * @return mixed hook return code
355      */
356     function onStartFeedSubReceive($feedsub, $feed)
357     {
358         $oprofile = Ostatus_profile::staticGet('feeduri', $feedsub->uri);
359         if ($oprofile) {
360             $oprofile->processFeed($feed);
361         } else {
362             common_log(LOG_DEBUG, "No ostatus profile for incoming feed $feedsub->uri");
363         }
364     }
365
366     function onEndSubscribe($subscriber, $other)
367     {
368         $user = User::staticGet('id', $subscriber->id);
369
370         if (empty($user)) {
371             return true;
372         }
373
374         $oprofile = Ostatus_profile::staticGet('profile_id', $other->id);
375
376         if (empty($oprofile)) {
377             return true;
378         }
379
380         $act = new Activity();
381
382         $act->verb = ActivityVerb::FOLLOW;
383
384         $act->id   = TagURI::mint('follow:%d:%d:%s',
385                                   $subscriber->id,
386                                   $other->id,
387                                   common_date_iso8601(time()));
388
389         $act->time    = time();
390         $act->title   = _("Follow");
391         $act->content = sprintf(_("%s is now following %s."),
392                                $subscriber->getBestName(),
393                                $other->getBestName());
394
395         $act->actor   = ActivityObject::fromProfile($subscriber);
396         $act->object  = ActivityObject::fromProfile($other);
397
398         $oprofile->notifyActivity($act);
399
400         return true;
401     }
402
403     /**
404      * Notify remote users when their notices get favorited.
405      *
406      * @param Profile or User $profile of local user doing the faving
407      * @param Notice $notice being favored
408      * @return hook return value
409      */
410
411     function onEndFavorNotice(Profile $profile, Notice $notice)
412     {
413         $user = User::staticGet('id', $profile->id);
414
415         if (empty($user)) {
416             return true;
417         }
418
419         $oprofile = Ostatus_profile::staticGet('profile_id', $notice->profile_id);
420
421         if (empty($oprofile)) {
422             return true;
423         }
424
425         $act = new Activity();
426
427         $act->verb = ActivityVerb::FAVORITE;
428         $act->id   = TagURI::mint('favor:%d:%d:%s',
429                                   $profile->id,
430                                   $notice->id,
431                                   common_date_iso8601(time()));
432
433         $act->time    = time();
434         $act->title   = _("Favor");
435         $act->content = sprintf(_("%s marked notice %s as a favorite."),
436                                $profile->getBestName(),
437                                $notice->uri);
438
439         $act->actor   = ActivityObject::fromProfile($profile);
440         $act->object  = ActivityObject::fromNotice($notice);
441
442         $oprofile->notifyActivity($act);
443
444         return true;
445     }
446
447     /**
448      * Notify remote users when their notices get de-favorited.
449      *
450      * @param Profile $profile Profile person doing the de-faving
451      * @param Notice  $notice  Notice being favored
452      *
453      * @return hook return value
454      */
455
456     function onEndDisfavorNotice(Profile $profile, Notice $notice)
457     {
458         $user = User::staticGet('id', $profile->id);
459
460         if (empty($user)) {
461             return true;
462         }
463
464         $oprofile = Ostatus_profile::staticGet('profile_id', $notice->profile_id);
465
466         if (empty($oprofile)) {
467             return true;
468         }
469
470         $act = new Activity();
471
472         $act->verb = ActivityVerb::UNFAVORITE;
473         $act->id   = TagURI::mint('disfavor:%d:%d:%s',
474                                   $profile->id,
475                                   $notice->id,
476                                   common_date_iso8601(time()));
477         $act->time    = time();
478         $act->title   = _("Disfavor");
479         $act->content = sprintf(_("%s marked notice %s as no longer a favorite."),
480                                $profile->getBestName(),
481                                $notice->uri);
482
483         $act->actor   = ActivityObject::fromProfile($profile);
484         $act->object  = ActivityObject::fromNotice($notice);
485
486         $oprofile->notifyActivity($act);
487
488         return true;
489     }
490
491     function onStartGetProfileUri($profile, &$uri)
492     {
493         $oprofile = Ostatus_profile::staticGet('profile_id', $profile->id);
494         if (!empty($oprofile)) {
495             $uri = $oprofile->uri;
496             return false;
497         }
498         return true;
499     }
500 }