]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/TwitterBridgePlugin.php
Merge branch 'inblob' of git@gitorious.org:~evan/statusnet/evans-mainline into inblob
[quix0rs-gnu-social.git] / plugins / TwitterBridge / TwitterBridgePlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * PHP version 5
6  *
7  * LICENCE: This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  * @category  Plugin
21  * @package   StatusNet
22  * @author    Zach Copley <zach@status.net>
23  * @copyright 2009 Control Yourself, Inc.
24  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25  * @link      http://laconi.ca/
26  */
27
28 if (!defined('STATUSNET')) {
29     exit(1);
30 }
31
32 require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
33
34 define('TWITTERBRIDGEPLUGIN_VERSION', '0.9');
35
36 /**
37  * Plugin for sending and importing Twitter statuses
38  *
39  * This class allows users to link their Twitter accounts
40  *
41  * @category Plugin
42  * @package  StatusNet
43  * @author   Zach Copley <zach@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://laconi.ca/
46  * @link     http://twitter.com/
47  */
48
49 class TwitterBridgePlugin extends Plugin
50 {
51     /**
52      * Initializer for the plugin.
53      */
54
55     function __construct()
56     {
57         parent::__construct();
58     }
59
60     /**
61      * Add Twitter-related paths to the router table
62      *
63      * Hook for RouterInitialized event.
64      *
65      * @param Net_URL_Mapper $m path-to-action mapper
66      *
67      * @return boolean hook return
68      */
69
70     function onRouterInitialized($m)
71     {
72         $m->connect('twitter/authorization',
73                     array('action' => 'twitterauthorization'));
74         $m->connect('settings/twitter', array('action' => 'twittersettings'));
75
76         return true;
77     }
78
79     /**
80      * Add the Twitter Settings page to the Connect Settings menu
81      *
82      * @param Action &$action The calling page
83      *
84      * @return boolean hook return
85      */
86     function onEndConnectSettingsNav(&$action)
87     {
88         $action_name = $action->trimmed('action');
89
90         $action->menuItem(common_local_url('twittersettings'),
91                           _m('Twitter'),
92                           _m('Twitter integration options'),
93                           $action_name === 'twittersettings');
94
95         return true;
96     }
97
98     /**
99      * Automatically load the actions and libraries used by the Twitter bridge
100      *
101      * @param Class $cls the class
102      *
103      * @return boolean hook return
104      *
105      */
106     function onAutoload($cls)
107     {
108         switch ($cls) {
109         case 'TwittersettingsAction':
110         case 'TwitterauthorizationAction':
111             include_once INSTALLDIR . '/plugins/TwitterBridge/' .
112               strtolower(mb_substr($cls, 0, -6)) . '.php';
113             return false;
114         case 'TwitterOAuthClient':
115             include_once INSTALLDIR . '/plugins/TwitterBridge/twitteroauthclient.php';
116             return false;
117         default:
118             return true;
119         }
120     }
121
122     /**
123      * Add a Twitter queue item for each notice
124      *
125      * @param Notice $notice      the notice
126      * @param array  &$transports the list of transports (queues)
127      *
128      * @return boolean hook return
129      */
130     function onStartEnqueueNotice($notice, &$transports)
131     {
132         // Avoid a possible loop
133
134         if ($notice->source != 'twitter') {
135             array_push($transports, 'twitter');
136         }
137
138         return true;
139     }
140
141     /**
142      * broadcast the message when not using queuehandler
143      *
144      * @param Notice &$notice the notice
145      * @param array  $queue   destination queue
146      *
147      * @return boolean hook return
148      */
149     function onUnqueueHandleNotice(&$notice, $queue)
150     {
151         if (($queue == 'twitter') && ($this->_isLocal($notice))) {
152             broadcast_twitter($notice);
153             return false;
154         }
155         return true;
156     }
157
158     /**
159      * Determine whether the notice was locally created
160      *
161      * @param Notice $notice
162      *
163      * @return boolean locality
164      */
165     function _isLocal($notice)
166     {
167         return ($notice->is_local == Notice::LOCAL_PUBLIC ||
168                 $notice->is_local == Notice::LOCAL_NONPUBLIC);
169     }
170
171     /**
172      * Add Twitter bridge daemons to the list of daemons to start
173      *
174      * @param array $daemons the list fo daemons to run
175      *
176      * @return boolean hook return
177      *
178      */
179     function onGetValidDaemons($daemons)
180     {
181         array_push($daemons, INSTALLDIR .
182                    '/plugins/TwitterBridge/daemons/twitterqueuehandler.php');
183         array_push($daemons, INSTALLDIR .
184                    '/plugins/TwitterBridge/daemons/synctwitterfriends.php');
185
186         if (common_config('twitterimport', 'enabled')) {
187             array_push($daemons, INSTALLDIR
188                 . '/plugins/TwitterBridge/daemons/twitterstatusfetcher.php');
189         }
190
191         return true;
192     }
193
194     function onPluginVersion(&$versions)
195     {
196         $versions[] = array('name' => 'TwitterBridge',
197                             'version' => TWITTERBRIDGEPLUGIN_VERSION,
198                             'author' => 'Zach Copley',
199                             'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge',
200                             'rawdescription' =>
201                             _m('The Twitter "bridge" plugin allows you to integrate ' .
202                                'your StatusNet instance with ' .
203                                '<a href="http://twitter.com/">Twitter</a>.'));
204         return true;
205     }
206
207 }