3 * StatusNet, the distributed open-source microblogging tool
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 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/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
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/
46 class LoginAction extends Action
49 * Has there been an error?
55 * Is this a read-only action?
57 * @return boolean false
60 function isReadOnly($args)
66 * Handle input, produce output
68 * Switches on request method; either shows the form or handles its input.
70 * @param array $args $_REQUEST data
75 function handle($args)
77 parent::handle($args);
78 if (common_is_real_login()) {
79 $this->clientError(_('Already logged in.'));
80 } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
82 } else if (isset($args['user_id']) && isset($args['token'])){
83 $this->checkLogin($args['user_id'],$args['token']);
85 common_ensure_session();
91 * Check the login data
93 * Determines if the login data is valid. If so, logs the user
94 * in, and redirects to the 'with friends' page, or to the stored
100 function checkLogin($user_id=null, $token=null)
102 if(isset($token) && isset($user_id)){
103 //Token based login (from the LoginCommand)
104 $login_token = Login_token::staticGet('user_id',$user_id);
105 if($login_token && $login_token->token == $token){
106 if($login_token->modified > time()+2*60){
108 //delete the token as it is useless
109 $login_token->delete();
110 $this->showForm(_('Invalid or expired token.'));
113 //delete the token so it cannot be reused
114 $login_token->delete();
115 //it's a valid token - let them log in
116 $user = User::staticGet('id', $user_id);
117 //$user = User::staticGet('nickname', "candrews");
120 $this->showForm(_('Invalid or expired token.'));
124 // Regular form submission login
126 // XXX: login throttle
128 // CSRF protection - token set in NoticeForm
129 $token = $this->trimmed('token');
130 if (!$token || $token != common_session_token()) {
131 $this->clientError(_('There was a problem with your session token. '.
132 'Try again, please.'));
136 $nickname = common_canonical_nickname($this->trimmed('nickname'));
137 $password = $this->arg('password');
139 $user = common_check_user($nickname, $password);
143 $this->showForm(_('Incorrect username or password.'));
148 if (!common_set_user($user)) {
149 $this->serverError(_('Error setting user.'));
153 common_real_login(true);
155 if ($this->boolean('rememberme')) {
156 common_rememberme($user);
159 $url = common_get_returnto();
162 // We don't have to return to it again
163 common_set_returnto(null);
165 $url = common_local_url('all',
170 common_redirect($url, 303);
174 * Store an error and show the page
176 * This used to show the whole page; now, it's just a wrapper
177 * that stores the error in an attribute.
179 * @param string $error error, if any.
184 function showForm($error=null)
186 $this->error = $error;
190 function showScripts()
192 parent::showScripts();
193 $this->autofocus('nickname');
199 * @return string title of the page
210 * Display a notice for how to use the page, or the
211 * error if it exists.
216 function showPageNotice()
219 $this->element('p', 'error', $this->error);
221 $instr = $this->getInstructions();
222 $output = common_markup_to_html($instr);
229 * Core of the display code
231 * Shows the login form.
236 function showContent()
238 $this->elementStart('form', array('method' => 'post',
239 'id' => 'form_login',
240 'class' => 'form_settings',
241 'action' => common_local_url('login')));
242 $this->elementStart('fieldset');
243 $this->element('legend', null, _('Login to site'));
244 $this->elementStart('ul', 'form_data');
245 $this->elementStart('li');
246 $this->input('nickname', _('Nickname'));
247 $this->elementEnd('li');
248 $this->elementStart('li');
249 $this->password('password', _('Password'));
250 $this->elementEnd('li');
251 $this->elementStart('li');
252 $this->checkbox('rememberme', _('Remember me'), false,
253 _('Automatically login in the future; ' .
254 'not for shared computers!'));
255 $this->elementEnd('li');
256 $this->elementEnd('ul');
257 $this->submit('submit', _('Login'));
258 $this->hidden('token', common_session_token());
259 $this->elementEnd('fieldset');
260 $this->elementEnd('form');
261 $this->elementStart('p');
262 $this->element('a', array('href' => common_local_url('recoverpassword')),
263 _('Lost or forgotten password?'));
264 $this->elementEnd('p');
268 * Instructions for using the form
270 * For "remembered" logins, we make the user re-login when they
271 * try to change settings. Different instructions for this case.
276 function getInstructions()
278 if (common_logged_in() && !common_is_real_login() &&
279 common_get_returnto()) {
280 // rememberme logins have to reauthenticate before
281 // changing any profile settings (cookie-stealing protection)
282 return _('For security reasons, please re-enter your ' .
283 'user name and password ' .
284 'before changing your settings.');
286 return _('Login with your username and password. ' .
287 'Don\'t have a username yet? ' .
288 '[Register](%%action.register%%) a new account.');
295 * Shows different login/register actions.
300 function showLocalNav()
302 $nav = new LoginGroupNav($this);