]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/tweetinqueuehandler.php
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / plugins / TwitterBridge / tweetinqueuehandler.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 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 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
23
24 /**
25  * Queue handler to deal with incoming Twitter status updates, as retrieved by
26  * TwitterDaemon (twitterdaemon.php).
27  *
28  * The queue handler passes the status through TwitterImporter for import into the
29  * local database (if necessary), then adds the imported notice to the local inbox
30  * of the attached Twitter user.
31  *
32  * Warning: the way we do inbox distribution manually means that realtime, XMPP, etc
33  * don't work on Twitter-borne messages. When TwitterImporter is changed to handle
34  * that correctly, we'll only need to do this once...?
35  */
36 class TweetInQueueHandler extends QueueHandler
37 {
38     function transport()
39     {
40         return 'tweetin';
41     }
42
43     function handle($data)
44     {
45         // JSON object with Twitter data
46         $status = $data['status'];
47
48         // Twitter user ID this incoming data belongs to.
49         $receiver = $data['for_user'];
50
51         $importer = new TwitterImport();
52         $notice = $importer->importStatus($status);
53         if ($notice) {
54             $flink = Foreign_link::getByForeignID(TWITTER_SERVICE, $receiver);
55             if ($flink) {
56                 // @fixme this should go through more regular channels?
57                 Inbox::insertNotice($flink->user_id, $notice->id);
58             }
59         }
60
61         return true;
62     }
63 }