2010-11-02 01:41:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
2010-11-17 21:53:56 +00:00
|
|
|
* Edit user settings for Facebook
|
2010-11-02 01:41:31 +00:00
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-17 21:53:56 +00:00
|
|
|
* Edit user settings for Facebook
|
2010-11-02 01:41:31 +00:00
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*
|
|
|
|
* @see SettingsAction
|
|
|
|
*/
|
2011-01-23 17:35:35 +00:00
|
|
|
class FacebooksettingsAction extends SettingsAction {
|
2010-11-17 21:53:56 +00:00
|
|
|
private $facebook; // Facebook PHP-SDK client obj
|
2010-11-02 01:41:31 +00:00
|
|
|
private $flink;
|
|
|
|
private $user;
|
2010-11-17 21:53:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For initializing members of the class.
|
|
|
|
*
|
|
|
|
* @param array $argarray misc. arguments
|
|
|
|
*
|
|
|
|
* @return boolean true
|
|
|
|
*/
|
|
|
|
function prepare($args) {
|
2010-11-02 01:41:31 +00:00
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$this->facebook = new Facebook(
|
|
|
|
array(
|
|
|
|
'appId' => common_config('facebook', 'appid'),
|
|
|
|
'secret' => common_config('facebook', 'secret'),
|
|
|
|
'cookie' => true,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->user = common_current_user();
|
2010-11-17 21:53:56 +00:00
|
|
|
|
|
|
|
$this->flink = Foreign_link::getByUserID(
|
|
|
|
$this->user->id,
|
|
|
|
FACEBOOK_SERVICE
|
|
|
|
);
|
2010-11-02 01:41:31 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* Check the sessions token and dispatch
|
|
|
|
*/
|
|
|
|
function handlePost($args) {
|
2010-11-02 01:41:31 +00:00
|
|
|
// CSRF protection
|
|
|
|
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
$this->showForm(
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Client error displayed when the session token does not match or is not given.
|
2010-11-02 01:41:31 +00:00
|
|
|
_m('There was a problem with your session token. Try again, please.')
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->arg('save')) {
|
|
|
|
$this->saveSettings();
|
|
|
|
} else if ($this->arg('disconnect')) {
|
|
|
|
$this->disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
/**
|
|
|
|
* Returns the page title
|
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
|
|
|
function title() {
|
2010-11-02 01:41:31 +00:00
|
|
|
// TRANS: Page title for Facebook settings.
|
2011-04-08 09:59:10 +01:00
|
|
|
return _m('TITLE','Facebook settings');
|
2010-11-02 01:41:31 +00:00
|
|
|
}
|
2010-11-17 21:53:56 +00:00
|
|
|
|
2010-11-02 01:41:31 +00:00
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
2010-11-17 21:53:56 +00:00
|
|
|
function getInstructions() {
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Instructions for Facebook settings.
|
2011-03-30 21:30:23 +01:00
|
|
|
return _m('Facebook settings');
|
2010-11-02 01:41:31 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* Show the settings form if he/she has a link to Facebook
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showContent() {
|
|
|
|
if (!empty($this->flink)) {
|
2010-11-02 01:41:31 +00:00
|
|
|
|
|
|
|
$this->elementStart(
|
|
|
|
'form',
|
|
|
|
array(
|
|
|
|
'method' => 'post',
|
2010-11-17 21:53:56 +00:00
|
|
|
'id' => 'form_settings_facebook',
|
|
|
|
'class' => 'form_settings',
|
2010-11-02 01:41:31 +00:00
|
|
|
'action' => common_local_url('facebooksettings')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Form note. User is connected to facebook.
|
2010-11-02 01:41:31 +00:00
|
|
|
$this->element('p', 'form_note', _m('Connected Facebook user'));
|
|
|
|
|
|
|
|
$this->elementStart('p', array('class' => 'facebook-user-display'));
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
$this->element(
|
2010-11-02 01:41:31 +00:00
|
|
|
'fb:profile-pic',
|
2010-11-17 21:53:56 +00:00
|
|
|
array(
|
|
|
|
'uid' => $this->flink->foreign_id,
|
|
|
|
'size' => 'small',
|
|
|
|
'linked' => 'true',
|
|
|
|
'facebook-logo' => 'true'
|
|
|
|
)
|
2010-11-02 01:41:31 +00:00
|
|
|
);
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
$this->element(
|
2010-11-02 01:41:31 +00:00
|
|
|
'fb:name',
|
|
|
|
array('uid' => $this->flink->foreign_id, 'useyou' => 'false')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->elementEnd('p');
|
|
|
|
|
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
|
|
|
|
|
|
|
$this->checkbox(
|
|
|
|
'noticesync',
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Checkbox label in Facebook settings.
|
2010-11-02 01:41:31 +00:00
|
|
|
_m('Publish my notices to Facebook.'),
|
|
|
|
($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND) : true
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
|
|
|
|
|
|
|
$this->checkbox(
|
2010-11-17 21:53:56 +00:00
|
|
|
'replysync',
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Checkbox label in Facebook settings.
|
2010-11-17 21:53:56 +00:00
|
|
|
_m('Send "@" replies to Facebook.'),
|
|
|
|
($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true
|
2010-11-02 01:41:31 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->elementEnd('li');
|
|
|
|
|
|
|
|
$this->elementStart('li');
|
|
|
|
|
|
|
|
// TRANS: Submit button to save synchronisation settings.
|
2010-11-17 21:53:56 +00:00
|
|
|
$this->submit('save', _m('BUTTON', 'Save'));
|
2010-11-02 01:41:31 +00:00
|
|
|
|
|
|
|
$this->elementEnd('li');
|
2010-11-17 21:53:56 +00:00
|
|
|
|
2010-11-02 01:41:31 +00:00
|
|
|
$this->elementEnd('ul');
|
|
|
|
|
|
|
|
$this->elementStart('fieldset');
|
|
|
|
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Fieldset legend for form to disconnect from Facebook.
|
2010-11-02 01:41:31 +00:00
|
|
|
$this->element('legend', null, _m('Disconnect my account from Facebook'));
|
|
|
|
|
|
|
|
if (empty($this->user->password)) {
|
|
|
|
$this->elementStart('p', array('class' => 'form_guide'));
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
$msg = sprintf(
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Notice in disconnect from Facebook form if user has no local StatusNet password.
|
2011-06-05 18:27:42 +01:00
|
|
|
_m('Disconnecting your Faceboook would make it impossible to '.
|
|
|
|
'log in! Please [set a password](%s) first.'),
|
2010-11-17 21:53:56 +00:00
|
|
|
common_local_url('passwordsettings')
|
|
|
|
);
|
2010-11-02 01:41:31 +00:00
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
$this->raw(common_markup_to_html($msg));
|
|
|
|
$this->elementEnd('p');
|
|
|
|
} else {
|
2010-12-02 11:42:58 +00:00
|
|
|
// @todo FIXME: i18n: This message is not being used.
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Message displayed when initiating disconnect of a StatusNet user
|
|
|
|
// TRANS: from a Facebook account. %1$s is the StatusNet site name.
|
|
|
|
$msg = sprintf(_m('Keep your %1$s account but disconnect from Facebook. ' .
|
|
|
|
'You\'ll use your %1$s password to log in.'),
|
|
|
|
common_config('site', 'name')
|
2010-11-17 21:53:56 +00:00
|
|
|
);
|
2010-11-02 01:41:31 +00:00
|
|
|
|
|
|
|
// TRANS: Submit button.
|
2010-11-17 21:53:56 +00:00
|
|
|
$this->submit('disconnect', _m('BUTTON', 'Disconnect'));
|
2010-11-02 01:41:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
|
|
|
|
$this->elementEnd('form');
|
2010-11-17 21:53:56 +00:00
|
|
|
}
|
2010-11-02 01:41:31 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* Save the user's Facebook settings
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function saveSettings() {
|
2010-11-02 01:41:31 +00:00
|
|
|
$noticesync = $this->boolean('noticesync');
|
|
|
|
$replysync = $this->boolean('replysync');
|
|
|
|
|
|
|
|
$original = clone($this->flink);
|
|
|
|
$this->flink->set_flags($noticesync, false, $replysync, false);
|
|
|
|
$result = $this->flink->update($original);
|
|
|
|
|
|
|
|
if ($result === false) {
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Notice in case saving of synchronisation preferences fail.
|
2010-11-02 01:41:31 +00:00
|
|
|
$this->showForm(_m('There was a problem saving your sync preferences.'));
|
|
|
|
} else {
|
|
|
|
// TRANS: Confirmation that synchronisation settings have been saved into the system.
|
|
|
|
$this->showForm(_m('Sync preferences saved.'), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* Disconnect the user's Facebook account - deletes the Foreign_link
|
|
|
|
* and shows the user a success message if all goes well.
|
|
|
|
*/
|
|
|
|
function disconnect() {
|
|
|
|
$result = $this->flink->delete();
|
|
|
|
$this->flink = null;
|
2010-11-02 01:41:31 +00:00
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
common_log_db_error($user, 'DELETE', __FILE__);
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Server error displayed when deleting the link to a Facebook account fails.
|
2011-04-01 21:32:56 +01:00
|
|
|
$this->serverError(_m('Could not delete link to Facebook.'));
|
2010-11-02 01:41:31 +00:00
|
|
|
}
|
|
|
|
|
2011-04-08 09:59:10 +01:00
|
|
|
// TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
|
2010-11-02 01:41:31 +00:00
|
|
|
$this->showForm(_m('You have disconnected from Facebook.'), true);
|
|
|
|
}
|
2010-11-17 21:53:56 +00:00
|
|
|
}
|