]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/login.php
Merge branch '0.8.x' into 0.9.x
[quix0rs-gnu-social.git] / actions / login.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Login form
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  Login
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008-2009 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Login form
37  *
38  * @category Personal
39  * @package  StatusNet
40  * @author   Evan Prodromou <evan@status.net>
41  * @author   Sarven Capadisli <csarven@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 LoginAction extends Action
47 {
48     /**
49      * Has there been an error?
50      */
51
52     var $error = null;
53
54     /**
55      * Is this a read-only action?
56      *
57      * @return boolean false
58      */
59
60     function isReadOnly($args)
61     {
62         return false;
63     }
64
65     /**
66      * Handle input, produce output
67      *
68      * Switches on request method; either shows the form or handles its input.
69      *
70      * @param array $args $_REQUEST data
71      *
72      * @return void
73      */
74
75     function handle($args)
76     {
77         parent::handle($args);
78         if (common_is_real_login()) {
79             $this->clientError(_('Already logged in.'));
80         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
81             $this->checkLogin();
82         } else {
83             common_ensure_session();
84             $this->showForm();
85         }
86     }
87
88     /**
89      * Check the login data
90      *
91      * Determines if the login data is valid. If so, logs the user
92      * in, and redirects to the 'with friends' page, or to the stored
93      * return-to URL.
94      *
95      * @return void
96      */
97
98     function checkLogin()
99     {
100         // XXX: login throttle
101
102         // CSRF protection - token set in NoticeForm
103         $token = $this->trimmed('token');
104         if (!$token || $token != common_session_token()) {
105             $this->clientError(_('There was a problem with your session token. '.
106                                  'Try again, please.'));
107             return;
108         }
109
110         $nickname = common_canonical_nickname($this->trimmed('nickname'));
111         $password = $this->arg('password');
112
113         $user = common_check_user($nickname, $password);
114
115         if (!$user) {
116             $this->showForm(_('Incorrect username or password.'));
117             return;
118         }
119
120         // success!
121         if (!common_set_user($user)) {
122             $this->serverError(_('Error setting user.'));
123             return;
124         }
125
126         common_real_login(true);
127
128         if ($this->boolean('rememberme')) {
129             common_rememberme($user);
130         }
131
132         $url = common_get_returnto();
133
134         if ($url) {
135             // We don't have to return to it again
136             common_set_returnto(null);
137         } else {
138             $url = common_local_url('all',
139                                     array('nickname' =>
140                                           $nickname));
141         }
142
143         common_redirect($url, 303);
144     }
145
146     /**
147      * Store an error and show the page
148      *
149      * This used to show the whole page; now, it's just a wrapper
150      * that stores the error in an attribute.
151      *
152      * @param string $error error, if any.
153      *
154      * @return void
155      */
156
157     function showForm($error=null)
158     {
159         $this->error = $error;
160         $this->showPage();
161     }
162
163     function showScripts()
164     {
165         parent::showScripts();
166         $this->autofocus('nickname');
167     }
168
169     /**
170      * Title of the page
171      *
172      * @return string title of the page
173      */
174
175     function title()
176     {
177         return _('Login');
178     }
179
180     /**
181      * Show page notice
182      *
183      * Display a notice for how to use the page, or the
184      * error if it exists.
185      *
186      * @return void
187      */
188
189     function showPageNotice()
190     {
191         if ($this->error) {
192             $this->element('p', 'error', $this->error);
193         } else {
194             $instr  = $this->getInstructions();
195             $output = common_markup_to_html($instr);
196
197             $this->raw($output);
198         }
199     }
200
201     /**
202      * Core of the display code
203      *
204      * Shows the login form.
205      *
206      * @return void
207      */
208
209     function showContent()
210     {
211         $this->elementStart('form', array('method' => 'post',
212                                            'id' => 'form_login',
213                                            'class' => 'form_settings',
214                                            'action' => common_local_url('login')));
215         $this->elementStart('fieldset');
216         $this->element('legend', null, _('Login to site'));
217         $this->elementStart('ul', 'form_data');
218         $this->elementStart('li');
219         $this->input('nickname', _('Nickname'));
220         $this->elementEnd('li');
221         $this->elementStart('li');
222         $this->password('password', _('Password'));
223         $this->elementEnd('li');
224         $this->elementStart('li');
225         $this->checkbox('rememberme', _('Remember me'), false,
226                         _('Automatically login in the future; ' .
227                            'not for shared computers!'));
228         $this->elementEnd('li');
229         $this->elementEnd('ul');
230         $this->submit('submit', _('Login'));
231         $this->hidden('token', common_session_token());
232         $this->elementEnd('fieldset');
233         $this->elementEnd('form');
234         $this->elementStart('p');
235         $this->element('a', array('href' => common_local_url('recoverpassword')),
236                        _('Lost or forgotten password?'));
237         $this->elementEnd('p');
238     }
239
240     /**
241      * Instructions for using the form
242      *
243      * For "remembered" logins, we make the user re-login when they
244      * try to change settings. Different instructions for this case.
245      *
246      * @return void
247      */
248
249     function getInstructions()
250     {
251         if (common_logged_in() && !common_is_real_login() &&
252             common_get_returnto()) {
253             // rememberme logins have to reauthenticate before
254             // changing any profile settings (cookie-stealing protection)
255             return _('For security reasons, please re-enter your ' .
256                      'user name and password ' .
257                      'before changing your settings.');
258         } else {
259             return _('Login with your username and password. ' .
260                      'Don\'t have a username yet? ' .
261                      '[Register](%%action.register%%) a new account.');
262         }
263     }
264
265     /**
266      * A local menu
267      *
268      * Shows different login/register actions.
269      *
270      * @return void
271      */
272
273     function showLocalNav()
274     {
275         $nav = new LoginGroupNav($this);
276         $nav->show();
277     }
278 }