]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/twittersettings.php
* i18n/L10n updates
[quix0rs-gnu-social.git] / plugins / TwitterBridge / twittersettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Settings for Twitter integration
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Settings
23  * @package   StatusNet
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/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/connectsettingsaction.php';
35 require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
36
37 /**
38  * Settings for Twitter integration
39  *
40  * @category Settings
41  * @package  StatusNet
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/
45  *
46  * @see      SettingsAction
47  */
48 class TwittersettingsAction extends ConnectSettingsAction
49 {
50     /**
51      * Title of the page
52      *
53      * @return string Title of the page
54      */
55
56     function title()
57     {
58         return _m('Twitter settings');
59     }
60
61     /**
62      * Instructions for use
63      *
64      * @return instructions for use
65      */
66
67     function getInstructions()
68     {
69         return _m('Connect your Twitter account to share your updates ' .
70                   'with your Twitter friends and vice-versa.');
71     }
72
73     /**
74      * Content area of the page
75      *
76      * Shows a form for associating a Twitter account with this
77      * StatusNet account. Also lets the user set preferences.
78      *
79      * @return void
80      */
81     function showContent()
82     {
83
84         $user = common_current_user();
85
86         $profile = $user->getProfile();
87
88         $fuser = null;
89
90         $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
91
92         if (!empty($flink)) {
93             $fuser = $flink->getForeignUser();
94         }
95
96         $this->elementStart('form', array('method' => 'post',
97                                           'id' => 'form_settings_twitter',
98                                           'class' => 'form_settings',
99                                           'action' =>
100                                           common_local_url('twittersettings')));
101
102         $this->hidden('token', common_session_token());
103
104         $this->elementStart('fieldset', array('id' => 'settings_twitter_account'));
105
106         if (empty($fuser)) {
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');
113
114             $this->elementEnd('fieldset');
115         } else {
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');
123
124             $this->elementStart('fieldset');
125
126             $this->element('legend', null, _m('Disconnect my account from Twitter'));
127
128             if (!$user->password) {
129
130                 $this->elementStart('p', array('class' => 'form_guide'));
131                 $this->text(_m('Disconnecting your Twitter ' .
132                                'could make it impossible to log in! Please '));
133                 $this->element('a',
134                     array('href' => common_local_url('passwordsettings')),
135                         _m('set a password'));
136
137                 $this->text(_m(' first.'));
138                 $this->elementEnd('p');
139             } else {
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.');
143
144                 $site = common_config('site', 'name');
145
146                 $this->element('p', 'instructions',
147                     sprintf($note, $site));
148
149                 $this->submit('disconnect', _m('Disconnect'));
150             }
151
152             $this->elementEnd('fieldset');
153
154             $this->elementStart('fieldset', array('id' => 'settings_twitter_preferences'));
155
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.'),
161                             ($flink) ?
162                             ($flink->noticesync & FOREIGN_NOTICE_SEND) :
163                             true);
164             $this->elementEnd('li');
165             $this->elementStart('li');
166             $this->checkbox('replysync',
167                             _m('Send local "@" replies to Twitter.'),
168                             ($flink) ?
169                             ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) :
170                             true);
171             $this->elementEnd('li');
172             $this->elementStart('li');
173             $this->checkbox('friendsync',
174                             _m('Subscribe to my Twitter friends here.'),
175                             ($flink) ?
176                             ($flink->friendsync & FOREIGN_FRIEND_RECV) :
177                             false);
178             $this->elementEnd('li');
179
180             if (common_config('twitterimport','enabled')) {
181                 $this->elementStart('li');
182                 $this->checkbox('noticerecv',
183                                 _m('Import my Friends Timeline.'),
184                                 ($flink) ?
185                                 ($flink->noticesync & FOREIGN_NOTICE_RECV) :
186                                 false);
187                 $this->elementEnd('li');
188             } else {
189                 // preserve setting even if bidrection bridge toggled off
190
191                 if ($flink && ($flink->noticesync & FOREIGN_NOTICE_RECV)) {
192                     $this->hidden('noticerecv', true, 'noticerecv');
193                 }
194             }
195
196             $this->elementEnd('ul');
197
198             if ($flink) {
199                 $this->submit('save', _m('Save'));
200             } else {
201                 $this->submit('add', _m('Add'));
202             }
203
204             $this->elementEnd('fieldset');
205         }
206
207         $this->elementEnd('form');
208     }
209
210     /**
211      * Handle posts to this form
212      *
213      * Based on the button that was pressed, muxes out to other functions
214      * to do the actual task requested.
215      *
216      * All sub-functions reload the form with a message -- success or failure.
217      *
218      * @return void
219      */
220     function handlePost()
221     {
222         // CSRF protection
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.'));
227             return;
228         }
229
230         if ($this->arg('save')) {
231             $this->savePreferences();
232         } else if ($this->arg('disconnect')) {
233             $this->removeTwitterAccount();
234         } else {
235             $this->showForm(_m('Unexpected form submission.'));
236         }
237     }
238
239     /**
240      * Disassociate an existing Twitter account from this account
241      *
242      * @return void
243      */
244     function removeTwitterAccount()
245     {
246         $user = common_current_user();
247         $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
248
249         $result = $flink->safeDelete();
250
251         if (empty($result)) {
252             common_log_db_error($flink, 'DELETE', __FILE__);
253             $this->serverError(_m('Couldn\'t remove Twitter user.'));
254             return;
255         }
256
257         $this->showForm(_m('Twitter account disconnected.'), true);
258     }
259
260     /**
261      * Save user's Twitter-bridging preferences
262      *
263      * @return void
264      */
265     function savePreferences()
266     {
267         $noticesend = $this->boolean('noticesend');
268         $noticerecv = $this->boolean('noticerecv');
269         $friendsync = $this->boolean('friendsync');
270         $replysync  = $this->boolean('replysync');
271
272         $user = common_current_user();
273         $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
274
275         if (empty($flink)) {
276             common_log_db_error($flink, 'SELECT', __FILE__);
277             $this->showForm(_m('Couldn\'t save Twitter preferences.'));
278             return;
279         }
280
281         $original = clone($flink);
282         $flink->set_flags($noticesend, $noticerecv, $replysync, $friendsync);
283         $result = $flink->update($original);
284
285         if ($result === false) {
286             common_log_db_error($flink, 'UPDATE', __FILE__);
287             $this->showForm(_m('Couldn\'t save Twitter preferences.'));
288             return;
289         }
290
291         $this->showForm(_m('Twitter preferences saved.'), true);
292     }
293 }