3 * StatusNet, the distributed open-source microblogging tool
5 * Facebook Connect settings
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 Zach Copley <zach@status.net>
25 * @copyright 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.'/lib/connectsettingsaction.php';
37 * Facebook Connect settings action
41 * @author Zach Copley <zach@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/
46 class FBConnectSettingsAction extends ConnectSettingsAction
51 * @return string Title of the page
56 return _m('Facebook Connect Settings');
60 * Instructions for use
62 * @return instructions for use
65 function getInstructions()
67 return _m('Manage how your account connects to Facebook');
71 * Content area of the page
73 * Shows a form for uploading an avatar.
78 function showContent()
80 $user = common_current_user();
81 $flink = Foreign_link::getByUserID($user->id, FACEBOOK_CONNECT_SERVICE);
83 $this->elementStart('form', array('method' => 'post',
84 'id' => 'form_settings_facebook',
85 'class' => 'form_settings',
87 common_local_url('FBConnectSettings')));
91 $this->element('p', 'instructions',
92 _m('There is no Facebook user connected to this account.'));
94 $this->element('fb:login-button', array('onlogin' => 'goto_login()',
99 $this->element('p', 'form_note',
100 _m('Connected Facebook user'));
102 $this->elementStart('p', array('class' => 'facebook-user-display'));
103 $this->elementStart('fb:profile-pic',
104 array('uid' => $flink->foreign_id,
107 'facebook-logo' => 'true'));
108 $this->elementEnd('fb:profile-pic');
110 $this->elementStart('fb:name', array('uid' => $flink->foreign_id,
111 'useyou' => 'false'));
112 $this->elementEnd('fb:name');
113 $this->elementEnd('p');
115 $this->hidden('token', common_session_token());
117 $this->elementStart('fieldset');
119 $this->element('legend', null, _m('Disconnect my account from Facebook'));
121 if (!$user->password) {
123 $this->elementStart('p', array('class' => 'form_guide'));
124 $this->text(_m('Disconnecting your Faceboook ' .
125 'would make it impossible to log in! Please '));
127 array('href' => common_local_url('passwordsettings')),
128 _m('set a password'));
130 $this->text(_m(' first.'));
131 $this->elementEnd('p');
134 $note = 'Keep your %s account but disconnect from Facebook. ' .
135 'You\'ll use your %s password to log in.';
137 $site = common_config('site', 'name');
139 $this->element('p', 'instructions',
140 sprintf($note, $site, $site));
142 $this->submit('disconnect', _m('Disconnect'));
145 $this->elementEnd('fieldset');
148 $this->elementEnd('form');
154 * Disconnects the current Facebook user from the current user's account
159 function handlePost()
162 $token = $this->trimmed('token');
163 if (!$token || $token != common_session_token()) {
164 $this->showForm(_m('There was a problem with your session token. '.
165 'Try again, please.'));
169 if ($this->arg('disconnect')) {
171 $user = common_current_user();
173 $flink = Foreign_link::getByUserID($user->id, FACEBOOK_CONNECT_SERVICE);
174 $result = $flink->delete();
176 if ($result === false) {
177 common_log_db_error($user, 'DELETE', __FILE__);
178 $this->serverError(_m('Couldn\'t delete link to Facebook.'));
184 // Clear FB Connect cookies out
185 $facebook = getFacebook();
186 $facebook->clear_cookie_state();
188 } catch (Exception $e) {
189 common_log(LOG_WARNING, 'Facebook Connect Plugin - ' .
190 'Couldn\'t clear Facebook cookies: ' .
194 $this->showForm(_m('You have disconnected from Facebook.'), true);
197 $this->showForm(_m('Not sure what you\'re trying to do.'));