2008-08-22 12:41:57 +09:00
|
|
|
<?php
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Laconica, the distributed open-source microblogging tool
|
2008-08-22 12:41:57 +09:00
|
|
|
*
|
2009-01-17 06:18:30 +09:00
|
|
|
* Settings for Twitter integration
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-08-22 12:41:57 +09:00
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-17 06:18:30 +09:00
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @copyright 2008-2009 Control Yourself, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
2008-08-22 12:41:57 +09:00
|
|
|
*/
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-08-22 12:41:57 +09:00
|
|
|
|
2009-01-18 07:30:44 +09:00
|
|
|
require_once INSTALLDIR.'/lib/connectsettingsaction.php';
|
2009-02-12 10:46:53 +09:00
|
|
|
require_once INSTALLDIR.'/lib/twitter.php';
|
2008-08-22 12:41:57 +09:00
|
|
|
|
2008-11-17 11:46:24 +09:00
|
|
|
define('SUBSCRIPTIONS', 80);
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Settings for Twitter integration
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*
|
|
|
|
* @see SettingsAction
|
|
|
|
*/
|
|
|
|
|
2009-01-18 07:30:44 +09:00
|
|
|
class TwittersettingsAction extends ConnectSettingsAction
|
2008-12-24 04:49:23 +09:00
|
|
|
{
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
2009-01-28 07:35:25 +09:00
|
|
|
return _('Twitter settings');
|
2009-01-17 06:18:30 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
2008-08-22 12:41:57 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
function getInstructions()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-17 06:18:30 +09:00
|
|
|
return _('Add your Twitter account to automatically send '.
|
|
|
|
' your notices to Twitter, ' .
|
|
|
|
'and subscribe to Twitter friends already here.');
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-08-22 12:41:57 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Content area of the page
|
|
|
|
*
|
|
|
|
* Shows a form for associating a Twitter account with this
|
|
|
|
* Laconica account. Also lets the user set preferences.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showContent()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$user = common_current_user();
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$profile = $user->getProfile();
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:21:29 +09:00
|
|
|
$fuser = null;
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2009-02-12 10:46:53 +09:00
|
|
|
$flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($flink) {
|
|
|
|
$fuser = $flink->getForeignUser();
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-01-17 10:50:21 +09:00
|
|
|
'id' => 'form_settings_twitter',
|
|
|
|
'class' => 'form_settings',
|
2009-01-17 06:18:30 +09:00
|
|
|
'action' =>
|
|
|
|
common_local_url('twittersettings')));
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_twitter_account'));
|
|
|
|
$this->element('legend', null, _('Twitter Account'));
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->hidden('token', common_session_token());
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($fuser) {
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li', array('id' => 'settings_twitter_remove'));
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->element('span', 'twitter_user', $fuser->nickname);
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->element('a', array('href' => $fuser->uri), $fuser->uri);
|
2009-01-28 07:51:13 +09:00
|
|
|
$this->element('p', 'form_note',
|
2008-12-24 04:19:07 +09:00
|
|
|
_('Current verified Twitter account.'));
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->hidden('flink_foreign_id', $flink->foreign_id);
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('li');
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
$this->submit('remove', _('Remove'));
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li', array('id' => 'settings_twitter_login'));
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->input('twitter_username', _('Twitter user name'),
|
2009-01-17 06:18:30 +09:00
|
|
|
($this->arg('twitter_username')) ?
|
|
|
|
$this->arg('twitter_username') :
|
|
|
|
$profile->nickname,
|
2008-12-24 04:19:07 +09:00
|
|
|
_('No spaces, please.')); // hey, it's what Twitter says
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->password('twitter_password', _('Twitter password'));
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementend('li');
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementEnd('ul');
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('fieldset');
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-18 07:30:44 +09:00
|
|
|
$this->elementStart('fieldset',
|
|
|
|
array('id' => 'settings_twitter_preferences'));
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->element('legend', null, _('Preferences'));
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-19 12:09:13 +09:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementStart('li');
|
2009-04-14 11:19:26 +09:00
|
|
|
$this->checkbox('noticesend',
|
2009-01-17 06:18:30 +09:00
|
|
|
_('Automatically send my notices to Twitter.'),
|
|
|
|
($flink) ?
|
|
|
|
($flink->noticesync & FOREIGN_NOTICE_SEND) :
|
|
|
|
true);
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->checkbox('replysync',
|
|
|
|
_('Send local "@" replies to Twitter.'),
|
|
|
|
($flink) ?
|
|
|
|
($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) :
|
|
|
|
true);
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->checkbox('friendsync',
|
|
|
|
_('Subscribe to my Twitter friends here.'),
|
|
|
|
($flink) ?
|
|
|
|
($flink->friendsync & FOREIGN_FRIEND_RECV) :
|
|
|
|
false);
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('li');
|
2009-05-08 06:41:53 +09:00
|
|
|
|
|
|
|
if (common_config('twitterbridge','enabled')) {
|
|
|
|
$this->elementStart('li');
|
|
|
|
$this->checkbox('noticerecv',
|
|
|
|
_('Import my Friends Timeline.'),
|
|
|
|
($flink) ?
|
|
|
|
($flink->noticesync & FOREIGN_NOTICE_RECV) :
|
|
|
|
false);
|
|
|
|
$this->elementEnd('li');
|
|
|
|
} else {
|
|
|
|
// preserve setting even if bidrection bridge toggled off
|
|
|
|
if ($flink && ($flink->noticesync & FOREIGN_NOTICE_RECV)) {
|
|
|
|
$this->hidden('noticerecv', true, 'noticerecv');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('ul');
|
2008-09-24 11:36:15 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($flink) {
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->submit('save', _('Save'));
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->submit('add', _('Add'));
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2009-01-17 10:50:21 +09:00
|
|
|
$this->elementEnd('fieldset');
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showTwitterSubscriptions();
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementEnd('form');
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-11-19 10:11:28 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Gets some of the user's Twitter friends
|
|
|
|
*
|
|
|
|
* Gets the number of Twitter friends that are on this
|
|
|
|
* instance of Laconica.
|
|
|
|
*
|
|
|
|
* @return array array of User objects
|
|
|
|
*/
|
|
|
|
|
|
|
|
function subscribedTwitterUsers()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$current_user = common_current_user();
|
2008-11-19 10:11:28 +09:00
|
|
|
|
2009-03-09 01:16:10 +09:00
|
|
|
$qry = 'SELECT "user".* ' .
|
2009-01-17 06:18:30 +09:00
|
|
|
'FROM subscription ' .
|
2009-03-09 01:16:10 +09:00
|
|
|
'JOIN "user" ON subscription.subscribed = "user".id ' .
|
|
|
|
'JOIN foreign_link ON foreign_link.user_id = "user".id ' .
|
2009-01-17 06:18:30 +09:00
|
|
|
'WHERE subscriber = %d ' .
|
2009-03-09 01:16:10 +09:00
|
|
|
'ORDER BY "user".nickname';
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$user = new User();
|
2008-11-19 10:11:28 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$user->query(sprintf($qry, $current_user->id));
|
|
|
|
|
|
|
|
$users = array();
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
while ($user->fetch()) {
|
|
|
|
|
|
|
|
// Don't include the user's own self-subscription
|
|
|
|
if ($user->id != $current_user->id) {
|
|
|
|
$users[] = clone($user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $users;
|
|
|
|
}
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Show user's Twitter friends
|
|
|
|
*
|
|
|
|
* Gets the number of Twitter friends that are on this
|
|
|
|
* instance of Laconica, and shows their mini-avatars.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showTwitterSubscriptions()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$friends = $this->subscribedTwitterUsers();
|
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$friends_count = count($friends);
|
|
|
|
|
|
|
|
if ($friends_count > 0) {
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementStart('div', array('id' => 'entity_subscriptions',
|
|
|
|
'class' => 'section'));
|
|
|
|
$this->element('h2', null, _('Twitter Friends'));
|
|
|
|
$this->elementStart('ul', 'entities users xoxo');
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
for ($i = 0; $i < min($friends_count, SUBSCRIPTIONS); $i++) {
|
|
|
|
|
|
|
|
$other = Profile::staticGet($friends[$i]->id);
|
|
|
|
|
|
|
|
if (!$other) {
|
|
|
|
common_log_db_error($subs, 'SELECT', __FILE__);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->elementStart('li', 'vcard');
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementStart('a', array('title' => ($other->fullname) ?
|
2009-01-17 06:18:30 +09:00
|
|
|
$other->fullname :
|
|
|
|
$other->nickname,
|
|
|
|
'href' => $other->profileurl,
|
2009-01-23 20:42:38 +09:00
|
|
|
'class' => 'url'));
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$avatar = $other->getAvatar(AVATAR_MINI_SIZE);
|
2009-01-17 06:18:30 +09:00
|
|
|
|
|
|
|
$avatar_url = ($avatar) ?
|
2009-02-06 17:13:08 +09:00
|
|
|
$avatar->displayUrl() :
|
|
|
|
Avatar::defaultImage(AVATAR_MINI_SIZE);
|
2009-01-17 06:18:30 +09:00
|
|
|
|
|
|
|
$this->element('img', array('src' => $avatar_url,
|
2008-12-24 04:19:07 +09:00
|
|
|
'width' => AVATAR_MINI_SIZE,
|
|
|
|
'height' => AVATAR_MINI_SIZE,
|
2009-01-23 20:42:38 +09:00
|
|
|
'class' => 'avatar photo',
|
2008-12-24 04:19:07 +09:00
|
|
|
'alt' => ($other->fullname) ?
|
|
|
|
$other->fullname :
|
|
|
|
$other->nickname));
|
2009-04-14 11:19:26 +09:00
|
|
|
|
2009-01-23 20:42:38 +09:00
|
|
|
$this->element('span', 'fn nickname', $other->nickname);
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementEnd('a');
|
|
|
|
$this->elementEnd('li');
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
}
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2009-01-16 07:57:15 +09:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
$this->elementEnd('div');
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Handle posts to this form
|
|
|
|
*
|
|
|
|
* Based on the button that was pressed, muxes out to other functions
|
|
|
|
* to do the actual task requested.
|
|
|
|
*
|
|
|
|
* All sub-functions reload the form with a message -- success or failure.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handlePost()
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
// CSRF protection
|
2008-12-24 04:19:07 +09:00
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->arg('save')) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->savePreferences();
|
2008-12-24 04:19:07 +09:00
|
|
|
} else if ($this->arg('add')) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->addTwitterAccount();
|
2008-12-24 04:19:07 +09:00
|
|
|
} else if ($this->arg('remove')) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->removeTwitterAccount();
|
2008-12-24 04:19:07 +09:00
|
|
|
} else {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Unexpected form submission.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Associate a Twitter account with the user's account
|
|
|
|
*
|
|
|
|
* Validates post input; verifies it against Twitter; and if
|
|
|
|
* successful stores in the database.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
function addTwitterAccount()
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$screen_name = $this->trimmed('twitter_username');
|
2009-01-17 06:18:30 +09:00
|
|
|
$password = $this->trimmed('twitter_password');
|
2009-04-14 11:19:26 +09:00
|
|
|
$noticesend = $this->boolean('noticesend');
|
|
|
|
$noticerecv = $this->boolean('noticerecv');
|
2009-01-17 06:18:30 +09:00
|
|
|
$replysync = $this->boolean('replysync');
|
|
|
|
$friendsync = $this->boolean('friendsync');
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
if (!Validate::string($screen_name,
|
2009-01-17 06:18:30 +09:00
|
|
|
array('min_length' => 1,
|
|
|
|
'max_length' => 15,
|
|
|
|
'format' => VALIDATE_NUM.VALIDATE_ALPHA.'_'))) {
|
|
|
|
$this->showForm(_('Username must have only numbers, '.
|
|
|
|
'upper- and lowercase letters, '.
|
|
|
|
'and underscore (_). 15 chars max.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
if (!$this->verifyCredentials($screen_name, $password)) {
|
|
|
|
$this->showForm(_('Could not verify your Twitter credentials!'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$twit_user = twitter_user_info($screen_name, $password);
|
|
|
|
|
|
|
|
if (!$twit_user) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(sprintf(_('Unable to retrieve account information '.
|
|
|
|
'For "%s" from Twitter.'),
|
|
|
|
$screen_name));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!save_twitter_user($twit_user->id, $screen_name)) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Unable to save your Twitter settings!'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$flink = new Foreign_link();
|
|
|
|
|
|
|
|
$flink->user_id = $user->id;
|
|
|
|
$flink->foreign_id = $twit_user->id;
|
2009-02-12 10:46:53 +09:00
|
|
|
$flink->service = TWITTER_SERVICE;
|
2008-12-24 04:19:07 +09:00
|
|
|
$flink->credentials = $password;
|
2009-01-17 06:18:30 +09:00
|
|
|
$flink->created = common_sql_now();
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-04-14 11:19:26 +09:00
|
|
|
$flink->set_flags($noticesend, $noticerecv, $replysync, $friendsync);
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
$flink_id = $flink->insert();
|
|
|
|
|
|
|
|
if (!$flink_id) {
|
|
|
|
common_log_db_error($flink, 'INSERT', __FILE__);
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Unable to save your Twitter settings!'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($friendsync) {
|
|
|
|
save_twitter_friends($user, $twit_user->id, $screen_name, $password);
|
2009-05-08 10:22:14 +09:00
|
|
|
$flink->last_friendsync = common_sql_now();
|
|
|
|
$flink->update();
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Twitter settings saved.'), true);
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-08-27 07:56:15 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Disassociate an existing Twitter account from this account
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
function removeTwitterAccount()
|
|
|
|
{
|
2008-12-24 04:19:07 +09:00
|
|
|
$user = common_current_user();
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$flink = Foreign_link::getByUserID($user->id, 1);
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$flink_foreign_id = $this->arg('flink_foreign_id');
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
// Maybe an old tab open...?
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($flink->foreign_id != $flink_foreign_id) {
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('That is not your Twitter account.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = $flink->delete();
|
|
|
|
|
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($flink, 'DELETE', __FILE__);
|
2009-01-16 08:03:38 +09:00
|
|
|
$this->serverError(_('Couldn\'t remove Twitter user.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Twitter account removed.'), true);
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Save user's Twitter-bridging preferences
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-24 04:19:07 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
function savePreferences()
|
|
|
|
{
|
2009-04-14 11:19:26 +09:00
|
|
|
$noticesend = $this->boolean('noticesend');
|
|
|
|
$noticerecv = $this->boolean('noticerecv');
|
2008-12-24 04:19:07 +09:00
|
|
|
$friendsync = $this->boolean('friendsync');
|
2009-01-17 06:18:30 +09:00
|
|
|
$replysync = $this->boolean('replysync');
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
$flink = Foreign_link::getByUserID($user->id, 1);
|
|
|
|
|
|
|
|
if (!$flink) {
|
|
|
|
common_log_db_error($flink, 'SELECT', __FILE__);
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Couldn\'t save Twitter preferences.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$twitter_id = $flink->foreign_id;
|
2009-01-17 06:18:30 +09:00
|
|
|
$password = $flink->credentials;
|
2008-12-24 04:19:07 +09:00
|
|
|
|
|
|
|
$fuser = $flink->getForeignUser();
|
2008-11-14 14:30:44 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if (!$fuser) {
|
|
|
|
common_log_db_error($fuser, 'SELECT', __FILE__);
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Couldn\'t save Twitter preferences.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-11-17 11:46:24 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$screen_name = $fuser->nickname;
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$original = clone($flink);
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2009-04-14 11:19:26 +09:00
|
|
|
$flink->set_flags($noticesend, $noticerecv, $replysync, $friendsync);
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$result = $flink->update($original);
|
2008-09-24 15:04:55 +09:00
|
|
|
|
2008-12-24 04:44:28 +09:00
|
|
|
if ($result === false) {
|
2008-12-24 04:19:07 +09:00
|
|
|
common_log_db_error($flink, 'UPDATE', __FILE__);
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Couldn\'t save Twitter preferences.'));
|
2008-12-24 04:19:07 +09:00
|
|
|
return;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($friendsync) {
|
|
|
|
save_twitter_friends($user, $flink->foreign_id, $screen_name, $password);
|
|
|
|
}
|
2008-09-24 15:04:55 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$this->showForm(_('Twitter preferences saved.'), true);
|
2008-12-24 04:19:07 +09:00
|
|
|
}
|
2008-08-27 09:54:44 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
/**
|
|
|
|
* Verifies a username and password against Twitter's API
|
|
|
|
*
|
|
|
|
* @param string $screen_name Twitter user name
|
|
|
|
* @param string $password Twitter password
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
|
|
|
|
function verifyCredentials($screen_name, $password)
|
2008-12-24 04:33:23 +09:00
|
|
|
{
|
2009-01-23 17:11:05 +09:00
|
|
|
$uri = 'http://twitter.com/account/verify_credentials.json';
|
2009-01-17 06:18:30 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$data = get_twitter_data($uri, $screen_name, $password);
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if (!$data) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
$user = json_decode($data);
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if (!$user) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 06:18:30 +09:00
|
|
|
$twitter_id = $user->id;
|
2008-12-11 19:01:06 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
if ($twitter_id) {
|
|
|
|
return $twitter_id;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2008-12-24 04:19:07 +09:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-06 04:47:32 +09:00
|
|
|
|
2009-01-17 10:50:21 +09:00
|
|
|
}
|