3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/settingsaction.php');
24 class TwittersettingsAction extends SettingsAction {
26 function get_instructions() {
27 return _('Add your Twitter account to automatically send your notices to Twitter, ' .
28 'and subscribe to Twitter friends already here.');
31 function show_form($msg=NULL, $success=false) {
32 $user = common_current_user();
33 $profile = $user->getProfile();
35 $flink = Foreign_link::getForeignLink($user->id, 1); // 1 == Twitter
38 $fuser = Foreign_user::getForeignUser($flink->foreign_id, 1);
41 $this->form_header(_('Twitter settings'), $msg, $success);
42 common_element_start('form', array('method' => 'post',
43 'id' => 'twittersettings',
45 common_local_url('twittersettings')));
46 common_hidden('token', common_session_token());
48 common_element('h2', NULL, _('Twitter Account'));
51 common_element_start('p');
53 common_element('span', 'twitter_user', $fuser->nickname);
54 common_element('a', array('href' => $fuser->uri), $fuser->uri);
55 common_element('span', 'input_instructions',
56 _('Current verified Twitter account.'));
57 common_hidden('flink_foreign_id', $flink->foreign_id);
58 common_element_end('p');
59 common_submit('remove', _('Remove'));
62 // XXX: Should we make an educated guess as to the twitter acct name? -- Zach
63 common_input('twitter_username', _('Twitter Username'),
64 ($this->arg('twitter_username')) ? $this->arg('twitter_username') : $profile->nickname,
65 _('No spaces, please.')); // hey, it's what Twitter says
67 common_password('twitter_password', _('Twitter Password'));
70 common_element('h2', NULL, _('Preferences'));
73 common_checkbox('noticesync', _('Automatically send my notices to Twitter.'),
74 ($flink->noticesync) ? true : false);
75 common_checkbox('friendsync', _('Subscribe to my Twitter friends here.'),
76 ($flink->friendsync) ? true : false);
77 common_submit('save', _('Save'));
79 common_checkbox('noticesync', _('Automatically send my notices to Twitter.'), true);
80 common_checkbox('friendsync', _('Subscribe to my Twitter friends here.'), true);
81 common_submit('add', _('Add'));
84 common_element_end('form');
88 function handle_post() {
91 $token = $this->trimmed('token');
92 if (!$token || $token != common_session_token()) {
93 $this->show_form(_('There was a problem with your session token. Try again, please.'));
97 if ($this->arg('save')) {
98 $this->save_preferences();
99 } else if ($this->arg('add')) {
100 $this->add_twitter_acct();
101 } else if ($this->arg('remove')) {
102 $this->remove_twitter_acct();
104 $this->show_form(_('Unexpected form submission.'));
108 function add_twitter_acct() {
109 $twitter_username = $this->trimmed('twitter_username');
110 $twitter_password = $this->trimmed('twitter_password');
111 $noticesync = $this->boolean('noticesync');
112 $friendsync = $this->boolean('friendsync');
114 if (!Validate::string($twitter_username, array('min_length' => 1,
116 'format' => VALIDATE_NUM . VALIDATE_ALPHA_LOWER))) {
117 $this->show_form(_('Username must have only lowercase letters and numbers and no spaces.'));
121 // Verify this is a real Twitter user.
122 if (!$this->verify_credentials($twitter_username, $twitter_password)) {
123 $this->show_form(_('Could not verify your Twitter credentials!'));
127 // Now that we have a valid Twitter user, we have to make another api call to
128 // find its Twitter ID. Dumb, but true.
129 $twitter_id = $this->get_twitter_id($twitter_username);
132 $this->show_form(sprintf(_('Unable to retrieve account information for "%s" from Twitter.'), $twitter_username));
136 $fuser = DB_DataObject::factory('foreign_user');
137 $fuser->id = $twitter_id;
138 $fuser->service = 1; // Twitter
139 $fuser->uri = "http://www.twitter.com/$twitter_username";
140 $fuser->nickname = $twitter_username;
141 $fuser->created = common_sql_now();
142 $result = $fuser->insert();
145 common_log_db_error($fuser, 'INSERT', __FILE__);
146 $this->show_form(_('Unable to save your Twitter settings!'));
150 $user = common_current_user();
152 $flink = DB_DataObject::factory('foreign_link');
153 $flink->user_id = $user->id;
154 $flink->foreign_id = $fuser->id;
155 $flink->service = 1; // Twitter
156 $flink->credentials = $twitter_password;
157 $flink->created = common_sql_now();
158 $flink->noticesync = ($noticesync) ? 1 : 0;
159 $flink->friendsync = ($friendsync) ? 2 : 0;
160 $flink->profilesync = 0; // XXX: leave as default?
161 $flink_id = $flink->insert();
164 common_log_db_error($flink, 'INSERT', __FILE__);
165 $this->show_form(_('Unable to save your Twitter settings!'));
169 $this->show_form(_('Twitter settings saved.'), true);
172 function remove_twitter_acct() {
173 $user = common_current_user();
175 // For now we assume one Twitter acct per Laconica acct
176 $flink = Foreign_link::getForeignLink($user->id, 1);
177 $fuser = Foreign_user::getForeignUser($flink->foreign_id, 1);
178 $flink_foreign_id = $this->arg('flink_foreign_id');
181 common_debug("couldn't get flink");
184 # Maybe an old tab open...?
185 if ($flink->foreign_id != $flink_foreign_id) {
186 common_debug("flink user_id = " . $flink->user_id);
187 $this->show_form(_('That is not your Twitter account.'));
191 $result = $fuser->delete();
194 common_log_db_error($fuser, 'DELETE', __FILE__);
195 $this->show_form(_('Couldn\'t remove Twitter user.'));
199 $result = $flink->delete();
202 common_log_db_error($flink, 'DELETE', __FILE__);
203 common_server_error(_('Couldn\'t remove Twitter user.'));
207 $this->show_form(_('Twitter account removed.'), TRUE);
210 function save_preferences() {
211 $noticesync = $this->boolean('noticesync');
212 $friendsync = $this->boolean('friendsync');
213 $user = common_current_user();
214 $flink = Foreign_link::getForeignLink($user->id, 1);
217 common_log_db_error($flink, 'SELECT', __FILE__);
218 $this->show_form(_('Couldn\'t save Twitter preferences.'));
222 $flink->noticesync = ($noticesync) ? 1 : 0;
223 $flink->friendsync = ($friendsync) ? 2 : 0;
224 // $flink->profilesync = 0; // XXX: leave as default?
225 $result = $flink->update();
228 common_log_db_error($flink, 'UPDATE', __FILE__);
229 $this->show_form(_('Couldn\'t save Twitter preferences.'));
233 $this->show_form(_('Twitter preferences saved.'));
238 function get_twitter_id($twitter_username) {
239 $uri = "http://twitter.com/users/show/$twitter_username.json";
240 $data = $this->get_twitter_data($uri);
246 $user = json_decode($data);
255 function verify_credentials($user, $password) {
256 $uri = 'http://twitter.com/account/verify_credentials.json';
257 $data = $this->get_twitter_data($uri, $user, $password);
263 $creds = json_decode($data);
269 if ($creds->authorized == 1) {
276 // PHP's cURL the best thing to use here? -- Zach
277 function get_twitter_data($uri, $user=NULL, $password=NULL) {
279 CURLOPT_USERPWD => "$user:$password",
280 CURLOPT_RETURNTRANSFER => true,
281 CURLOPT_FAILONERROR => true,
282 CURLOPT_HEADER => false,
283 CURLOPT_FOLLOWLOCATION => true,
284 // CURLOPT_USERAGENT => "identi.ca",
285 CURLOPT_CONNECTTIMEOUT => 120,
286 CURLOPT_TIMEOUT => 120
289 $ch = curl_init($uri);
290 curl_setopt_array($ch, $options);
291 $data = curl_exec($ch);
292 $errmsg = curl_error($ch);
295 common_debug("cURL error: $errmsg - trying to load: $uri with user $user.", __FILE__);