3 * StatusNet, the distributed open-source microblogging tool
5 * Settings for Twitter integration
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.
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.
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2008-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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR . '/lib/connectsettingsaction.php';
35 require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
38 * Settings for Twitter integration
42 * @author Evan Prodromou <evan@status.net>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
48 class TwittersettingsAction extends ConnectSettingsAction
53 * @return string Title of the page
58 return _m('Twitter settings');
62 * Instructions for use
64 * @return instructions for use
67 function getInstructions()
69 return _m('Connect your Twitter account to share your updates ' .
70 'with your Twitter friends and vice-versa.');
74 * Content area of the page
76 * Shows a form for associating a Twitter account with this
77 * StatusNet account. Also lets the user set preferences.
81 function showContent()
84 $user = common_current_user();
86 $profile = $user->getProfile();
90 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
93 $fuser = $flink->getForeignUser();
96 $this->elementStart('form', array('method' => 'post',
97 'id' => 'form_settings_twitter',
98 'class' => 'form_settings',
100 common_local_url('twittersettings')));
102 $this->hidden('token', common_session_token());
104 $this->elementStart('fieldset', array('id' => 'settings_twitter_account'));
107 $this->elementStart('ul', 'form_data');
108 $this->elementStart('li', array('id' => 'settings_twitter_login_button'));
109 $this->element('a', array('href' => common_local_url('twitterauthorization')),
110 'Connect my Twitter account');
111 $this->elementEnd('li');
112 $this->elementEnd('ul');
114 $this->elementEnd('fieldset');
116 $this->element('legend', null, _m('Twitter account'));
117 $this->elementStart('p', array('id' => 'form_confirmed'));
118 $this->element('a', array('href' => $fuser->uri), $fuser->nickname);
119 $this->elementEnd('p');
120 $this->element('p', 'form_note',
121 _m('Connected Twitter account'));
122 $this->elementEnd('fieldset');
124 $this->elementStart('fieldset');
126 $this->element('legend', null, _m('Disconnect my account from Twitter'));
128 if (!$user->password) {
130 $this->elementStart('p', array('class' => 'form_guide'));
131 // @todo FIXME: Bad i18n (patchwork in three parts).
132 $this->text(_m('Disconnecting your Twitter ' .
133 'could make it impossible to log in! Please '));
135 array('href' => common_local_url('passwordsettings')),
136 _m('set a password'));
138 $this->text(_m(' first.'));
139 $this->elementEnd('p');
141 // TRANS: %1$s is the current website name.
142 $note = _m('Keep your %1$s account but disconnect from Twitter. ' .
143 'You can use your %1$s password to log in.');
145 $site = common_config('site', 'name');
147 $this->element('p', 'instructions',
148 sprintf($note, $site));
150 $this->submit('disconnect', _m('Disconnect'));
153 $this->elementEnd('fieldset');
155 $this->elementStart('fieldset', array('id' => 'settings_twitter_preferences'));
157 $this->element('legend', null, _m('Preferences'));
158 $this->elementStart('ul', 'form_data');
159 $this->elementStart('li');
160 $this->checkbox('noticesend',
161 _m('Automatically send my notices to Twitter.'),
163 ($flink->noticesync & FOREIGN_NOTICE_SEND) :
165 $this->elementEnd('li');
166 $this->elementStart('li');
167 $this->checkbox('replysync',
168 _m('Send local "@" replies to Twitter.'),
170 ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) :
172 $this->elementEnd('li');
173 $this->elementStart('li');
174 $this->checkbox('friendsync',
175 _m('Subscribe to my Twitter friends here.'),
177 ($flink->friendsync & FOREIGN_FRIEND_RECV) :
179 $this->elementEnd('li');
181 if (common_config('twitterimport','enabled')) {
182 $this->elementStart('li');
183 $this->checkbox('noticerecv',
184 _m('Import my friends timeline.'),
186 ($flink->noticesync & FOREIGN_NOTICE_RECV) :
188 $this->elementEnd('li');
190 // preserve setting even if bidrection bridge toggled off
192 if ($flink && ($flink->noticesync & FOREIGN_NOTICE_RECV)) {
193 $this->hidden('noticerecv', true, 'noticerecv');
197 $this->elementEnd('ul');
200 $this->submit('save', _m('Save'));
202 $this->submit('add', _m('Add'));
205 $this->elementEnd('fieldset');
208 $this->elementEnd('form');
212 * Handle posts to this form
214 * Based on the button that was pressed, muxes out to other functions
215 * to do the actual task requested.
217 * All sub-functions reload the form with a message -- success or failure.
221 function handlePost()
224 $token = $this->trimmed('token');
225 if (!$token || $token != common_session_token()) {
226 $this->showForm(_m('There was a problem with your session token. '.
227 'Try again, please.'));
231 if ($this->arg('save')) {
232 $this->savePreferences();
233 } else if ($this->arg('disconnect')) {
234 $this->removeTwitterAccount();
236 $this->showForm(_m('Unexpected form submission.'));
241 * Disassociate an existing Twitter account from this account
245 function removeTwitterAccount()
247 $user = common_current_user();
248 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
251 $this->clientError(_m('No Twitter connection to remove.'));
255 $result = $flink->safeDelete();
257 if (empty($result)) {
258 common_log_db_error($flink, 'DELETE', __FILE__);
259 $this->serverError(_m('Couldn\'t remove Twitter user.'));
263 $this->showForm(_m('Twitter account disconnected.'), true);
267 * Save user's Twitter-bridging preferences
271 function savePreferences()
273 $noticesend = $this->boolean('noticesend');
274 $noticerecv = $this->boolean('noticerecv');
275 $friendsync = $this->boolean('friendsync');
276 $replysync = $this->boolean('replysync');
278 $user = common_current_user();
279 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
282 common_log_db_error($flink, 'SELECT', __FILE__);
283 $this->showForm(_m('Couldn\'t save Twitter preferences.'));
287 $original = clone($flink);
288 $wasReceiving = (bool)($original->noticesync & FOREIGN_NOTICE_RECV);
289 $flink->set_flags($noticesend, $noticerecv, $replysync, $friendsync);
290 $result = $flink->update($original);
292 if ($result === false) {
293 common_log_db_error($flink, 'UPDATE', __FILE__);
294 $this->showForm(_m('Couldn\'t save Twitter preferences.'));
298 if ($wasReceiving xor $noticerecv) {
299 $this->notifyDaemon($flink->foreign_id, $noticerecv);
302 $this->showForm(_m('Twitter preferences saved.'), true);
306 * Tell the import daemon that we've updated a user's receive status.
308 function notifyDaemon($twitterUserId, $receiving)
310 // todo... should use control signals rather than queues