]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Facebook/FBConnectSettings.php
Fix for ticket 2756 - Calls to OAuth endpoints are redirected to the
[quix0rs-gnu-social.git] / plugins / Facebook / FBConnectSettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Facebook Connect settings
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    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/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR.'/lib/connectsettingsaction.php';
35
36 /**
37  * Facebook Connect settings action
38  *
39  * @category Settings
40  * @package  StatusNet
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/
44  */
45
46 class FBConnectSettingsAction extends ConnectSettingsAction
47 {
48     /**
49      * Title of the page
50      *
51      * @return string Title of the page
52      */
53
54     function title()
55     {
56         return _m('Facebook Connect Settings');
57     }
58
59     /**
60      * Instructions for use
61      *
62      * @return instructions for use
63      */
64
65     function getInstructions()
66     {
67         return _m('Manage how your account connects to Facebook');
68     }
69
70     /**
71      * Content area of the page
72      *
73      * Shows a form for uploading an avatar.
74      *
75      * @return void
76      */
77
78     function showContent()
79     {
80         $user = common_current_user();
81         $flink = Foreign_link::getByUserID($user->id, FACEBOOK_CONNECT_SERVICE);
82
83         $this->elementStart('form', array('method' => 'post',
84                                           'id' => 'form_settings_facebook',
85                                           'class' => 'form_settings',
86                                           'action' =>
87                                           common_local_url('FBConnectSettings')));
88
89         if (!$flink) {
90
91             $this->element('p', 'instructions',
92                 _m('There is no Facebook user connected to this account.'));
93
94             $this->element('fb:login-button', array('onlogin' => 'goto_login()',
95                 'length' => 'long'));
96
97         } else {
98
99             $this->element('p', 'form_note',
100                            _m('Connected Facebook user'));
101
102             $this->elementStart('p', array('class' => 'facebook-user-display'));
103             $this->elementStart('fb:profile-pic',
104                 array('uid' => $flink->foreign_id,
105                       'size' => 'small',
106                       'linked' => 'true',
107                       'facebook-logo' => 'true'));
108             $this->elementEnd('fb:profile-pic');
109
110             $this->elementStart('fb:name', array('uid' => $flink->foreign_id,
111                                                  'useyou' => 'false'));
112             $this->elementEnd('fb:name');
113             $this->elementEnd('p');
114
115             $this->hidden('token', common_session_token());
116
117             $this->elementStart('fieldset');
118
119             $this->element('legend', null, _m('Disconnect my account from Facebook'));
120
121             if (!$user->password) {
122
123                 $this->elementStart('p', array('class' => 'form_guide'));
124                 $this->text(_m('Disconnecting your Faceboook ' .
125                                'would make it impossible to log in! Please '));
126                 $this->element('a',
127                     array('href' => common_local_url('passwordsettings')),
128                         _m('set a password'));
129
130                 $this->text(_m(' first.'));
131                 $this->elementEnd('p');
132             } else {
133
134                 $note = 'Keep your %s account but disconnect from Facebook. ' .
135                     'You\'ll use your %s password to log in.';
136
137                 $site = common_config('site', 'name');
138
139                 $this->element('p', 'instructions',
140                     sprintf($note, $site, $site));
141
142                 $this->submit('disconnect', _m('Disconnect'));
143             }
144
145             $this->elementEnd('fieldset');
146         }
147
148         $this->elementEnd('form');
149     }
150
151     /**
152      * Handle post
153      *
154      * Disconnects the current Facebook user from the current user's account
155      *
156      * @return void
157      */
158
159     function handlePost()
160     {
161         // CSRF protection
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.'));
166             return;
167         }
168
169         if ($this->arg('disconnect')) {
170
171             $user = common_current_user();
172
173             $flink = Foreign_link::getByUserID($user->id, FACEBOOK_CONNECT_SERVICE);
174             $result = $flink->delete();
175
176             if ($result === false) {
177                 common_log_db_error($user, 'DELETE', __FILE__);
178                 $this->serverError(_m('Couldn\'t delete link to Facebook.'));
179                 return;
180             }
181
182             try {
183
184                 // Clear FB Connect cookies out
185                 $facebook = getFacebook();
186                 $facebook->clear_cookie_state();
187
188             } catch (Exception $e) {
189                 common_log(LOG_WARNING, 'Facebook Connect Plugin - ' .
190                            'Couldn\'t clear Facebook cookies: ' .
191                            $e->getMessage());
192             }
193
194             $this->showForm(_m('You have disconnected from Facebook.'), true);
195
196         } else {
197             $this->showForm(_m('Not sure what you\'re trying to do.'));
198             return;
199         }
200
201     }
202
203 }