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 . '/plugins/TwitterBridge/twitter.php';
37 * Settings for Twitter integration
41 * @author Evan Prodromou <evan@status.net>
42 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43 * @link http://status.net/
47 class TwittersettingsAction extends ProfileSettingsAction
52 * @return string Title of the page
57 return _m('Twitter settings');
61 * Instructions for use
63 * @return instructions for use
66 function getInstructions()
68 return _m('Connect your Twitter account to share your updates ' .
69 'with your Twitter friends and vice-versa.');
73 * Content area of the page
75 * Shows a form for associating a Twitter account with this
76 * StatusNet account. Also lets the user set preferences.
80 function showContent()
83 $user = common_current_user();
85 $profile = $user->getProfile();
89 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
92 $fuser = $flink->getForeignUser();
95 $this->elementStart('form', array('method' => 'post',
96 'id' => 'form_settings_twitter',
97 'class' => 'form_settings',
99 common_local_url('twittersettings')));
101 $this->hidden('token', common_session_token());
103 $this->elementStart('fieldset', array('id' => 'settings_twitter_account'));
106 $this->elementStart('ul', 'form_data');
107 $this->elementStart('li', array('id' => 'settings_twitter_login_button'));
108 $this->element('a', array('href' => common_local_url('twitterauthorization')),
109 'Connect my Twitter account');
110 $this->elementEnd('li');
111 $this->elementEnd('ul');
113 $this->elementEnd('fieldset');
115 $this->element('legend', null, _m('Twitter account'));
116 $this->elementStart('p', array('id' => 'form_confirmed'));
117 $this->element('a', array('href' => $fuser->uri), $fuser->nickname);
118 $this->elementEnd('p');
119 $this->element('p', 'form_note',
120 _m('Connected Twitter account'));
121 $this->elementEnd('fieldset');
123 $this->elementStart('fieldset');
125 $this->element('legend', null, _m('Disconnect my account from Twitter'));
127 if (!$user->password) {
129 $this->elementStart('p', array('class' => 'form_guide'));
130 // @todo FIXME: Bad i18n (patchwork in three parts).
131 $this->text(_m('Disconnecting your Twitter ' .
132 'could make it impossible to log in! Please '));
134 array('href' => common_local_url('passwordsettings')),
135 _m('set a password'));
137 $this->text(_m(' first.'));
138 $this->elementEnd('p');
140 // TRANS: %1$s is the current website name.
141 $note = _m('Keep your %1$s account but disconnect from Twitter. ' .
142 'You can use your %1$s password to log in.');
144 $site = common_config('site', 'name');
146 $this->element('p', 'instructions',
147 sprintf($note, $site));
149 $this->submit('disconnect', _m('Disconnect'));
152 $this->elementEnd('fieldset');
154 $this->elementStart('fieldset', array('id' => 'settings_twitter_preferences'));
156 $this->element('legend', null, _m('Preferences'));
157 $this->elementStart('ul', 'form_data');
158 $this->elementStart('li');
159 $this->checkbox('noticesend',
160 _m('Automatically send my notices to Twitter.'),
162 ($flink->noticesync & FOREIGN_NOTICE_SEND) :
164 $this->elementEnd('li');
165 $this->elementStart('li');
166 $this->checkbox('replysync',
167 _m('Send local "@" replies to Twitter.'),
169 ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) :
171 $this->elementEnd('li');
172 $this->elementStart('li');
173 $this->checkbox('friendsync',
174 _m('Subscribe to my Twitter friends here.'),
176 ($flink->friendsync & FOREIGN_FRIEND_RECV) :
178 $this->elementEnd('li');
180 if (common_config('twitterimport','enabled')) {
181 $this->elementStart('li');
182 $this->checkbox('noticerecv',
183 _m('Import my friends timeline.'),
185 ($flink->noticesync & FOREIGN_NOTICE_RECV) :
187 $this->elementEnd('li');
189 // preserve setting even if bidrection bridge toggled off
191 if ($flink && ($flink->noticesync & FOREIGN_NOTICE_RECV)) {
192 $this->hidden('noticerecv', true, 'noticerecv');
196 $this->elementEnd('ul');
199 $this->submit('save', _m('Save'));
201 $this->submit('add', _m('Add'));
204 $this->elementEnd('fieldset');
207 $this->elementEnd('form');
211 * Handle posts to this form
213 * Based on the button that was pressed, muxes out to other functions
214 * to do the actual task requested.
216 * All sub-functions reload the form with a message -- success or failure.
220 function handlePost()
223 $token = $this->trimmed('token');
224 if (!$token || $token != common_session_token()) {
225 $this->showForm(_m('There was a problem with your session token. '.
226 'Try again, please.'));
230 if ($this->arg('save')) {
231 $this->savePreferences();
232 } else if ($this->arg('disconnect')) {
233 $this->removeTwitterAccount();
235 $this->showForm(_m('Unexpected form submission.'));
240 * Disassociate an existing Twitter account from this account
244 function removeTwitterAccount()
246 $user = common_current_user();
247 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
250 $this->clientError(_m('No Twitter connection to remove.'));
254 $result = $flink->safeDelete();
256 if (empty($result)) {
257 common_log_db_error($flink, 'DELETE', __FILE__);
258 $this->serverError(_m('Couldn\'t remove Twitter user.'));
262 $this->showForm(_m('Twitter account disconnected.'), true);
266 * Save user's Twitter-bridging preferences
270 function savePreferences()
272 $noticesend = $this->boolean('noticesend');
273 $noticerecv = $this->boolean('noticerecv');
274 $friendsync = $this->boolean('friendsync');
275 $replysync = $this->boolean('replysync');
277 $user = common_current_user();
278 $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
281 common_log_db_error($flink, 'SELECT', __FILE__);
282 $this->showForm(_m('Couldn\'t save Twitter preferences.'));
286 $original = clone($flink);
287 $wasReceiving = (bool)($original->noticesync & FOREIGN_NOTICE_RECV);
288 $flink->set_flags($noticesend, $noticerecv, $replysync, $friendsync);
289 $result = $flink->update($original);
291 if ($result === false) {
292 common_log_db_error($flink, 'UPDATE', __FILE__);
293 $this->showForm(_m('Couldn\'t save Twitter preferences.'));
297 if ($wasReceiving xor $noticerecv) {
298 $this->notifyDaemon($flink->foreign_id, $noticerecv);
301 $this->showForm(_m('Twitter preferences saved.'), true);
305 * Tell the import daemon that we've updated a user's receive status.
307 function notifyDaemon($twitterUserId, $receiving)
309 // todo... should use control signals rather than queues