2008-05-07 17:48:07 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-07 17:48:07 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
class LoginAction extends Action {
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
2008-06-24 05:05:48 +01:00
|
|
|
if (common_is_real_login()) {
|
2008-05-14 15:54:36 +01:00
|
|
|
common_user_error(_t('Already logged in.'));
|
2008-05-17 18:15:01 +01:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-05-14 15:54:36 +01:00
|
|
|
$this->check_login();
|
2008-05-07 17:48:07 +01:00
|
|
|
} else {
|
2008-05-14 15:54:36 +01:00
|
|
|
$this->show_form();
|
2008-05-07 17:48:07 +01:00
|
|
|
}
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-07-09 06:53:43 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function check_login() {
|
|
|
|
# XXX: form token in $_SESSION to prevent XSS
|
|
|
|
# XXX: login throttle
|
|
|
|
$nickname = $this->arg('nickname');
|
|
|
|
$password = $this->arg('password');
|
2008-07-09 06:53:43 +01:00
|
|
|
$user = common_check_user($nickname, $password);
|
|
|
|
|
|
|
|
if (!$user) {
|
2008-05-14 15:54:36 +01:00
|
|
|
$this->show_form(_t('Incorrect username or password.'));
|
2008-07-09 06:53:43 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
# success!
|
|
|
|
if (!common_set_user($user)) {
|
|
|
|
common_server_error(_t('Error setting user.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
common_real_login(true);
|
|
|
|
|
|
|
|
if ($this->boolean('rememberme')) {
|
|
|
|
common_debug('Adding rememberme cookie for ' . $nickname);
|
|
|
|
common_rememberme($user);
|
|
|
|
}
|
|
|
|
# success!
|
|
|
|
$url = common_get_returnto();
|
|
|
|
if ($url) {
|
|
|
|
# We don't have to return to it again
|
|
|
|
common_set_returnto(NULL);
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('all',
|
|
|
|
array('nickname' =>
|
|
|
|
$nickname));
|
2008-05-07 17:48:07 +01:00
|
|
|
}
|
2008-07-09 06:53:43 +01:00
|
|
|
common_redirect($url);
|
2008-05-07 17:48:07 +01:00
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function show_form($error=NULL) {
|
2008-06-18 04:57:39 +01:00
|
|
|
common_show_header(_t('Login'), NULL, $error, array($this, 'show_top'));
|
2008-07-02 14:15:07 +01:00
|
|
|
common_element_start('form', array('method' => 'post',
|
2008-05-14 15:54:36 +01:00
|
|
|
'id' => 'login',
|
|
|
|
'action' => common_local_url('login')));
|
2008-05-20 18:47:59 +01:00
|
|
|
common_input('nickname', _t('Nickname'));
|
|
|
|
common_password('password', _t('Password'));
|
2008-07-02 13:54:57 +01:00
|
|
|
common_checkbox('rememberme', _t('Remember me'), false,
|
2008-06-24 05:05:48 +01:00
|
|
|
_t('Automatically login in the future; ' .
|
2008-06-24 03:52:34 +01:00
|
|
|
'not for shared computers!'));
|
2008-05-20 19:14:44 +01:00
|
|
|
common_submit('submit', _t('Login'));
|
2008-05-17 18:04:30 +01:00
|
|
|
common_element_end('form');
|
2008-06-24 22:50:33 +01:00
|
|
|
common_element_start('p');
|
|
|
|
common_element('a', array('href' => common_local_url('recoverpassword')),
|
|
|
|
_t('Lost or forgotten password?'));
|
|
|
|
common_element_end('p');
|
2008-05-19 13:24:45 +01:00
|
|
|
common_show_footer();
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-06-24 05:05:48 +01:00
|
|
|
|
2008-07-01 19:06:11 +01:00
|
|
|
function get_instructions() {
|
2008-07-09 06:00:22 +01:00
|
|
|
if (common_logged_in() &&
|
|
|
|
!common_is_real_login() &&
|
|
|
|
common_get_returnto())
|
|
|
|
{
|
|
|
|
# rememberme logins have to reauthenticate before
|
|
|
|
# changing any profile settings (cookie-stealing protection)
|
2008-07-09 07:09:28 +01:00
|
|
|
return _t('For security reasons, ' .
|
|
|
|
'please re-enter your ' .
|
2008-07-09 06:00:22 +01:00
|
|
|
'user name and password ' .
|
2008-07-09 07:11:18 +01:00
|
|
|
'before changing your settings. ');
|
2008-07-09 06:00:22 +01:00
|
|
|
} else {
|
|
|
|
return _t('Login with your username and password. ' .
|
|
|
|
'Don\'t have a username yet? ' .
|
|
|
|
'[Register](%%action.register%%) a new account, or ' .
|
|
|
|
'try [OpenID](%%action.openidlogin%%). ');
|
|
|
|
}
|
2008-07-01 19:06:11 +01:00
|
|
|
}
|
|
|
|
|
2008-06-18 04:57:39 +01:00
|
|
|
function show_top($error=NULL) {
|
|
|
|
if ($error) {
|
|
|
|
common_element('p', 'error', $error);
|
|
|
|
} else {
|
2008-07-01 19:06:11 +01:00
|
|
|
$instr = $this->get_instructions();
|
|
|
|
$output = common_markup_to_html($instr);
|
2008-07-09 01:22:42 +01:00
|
|
|
common_element_start('div', 'instructions');
|
2008-07-01 19:06:11 +01:00
|
|
|
common_raw($output);
|
|
|
|
common_element_end('p');
|
2008-06-18 04:57:39 +01:00
|
|
|
}
|
|
|
|
}
|
2008-05-07 17:48:07 +01:00
|
|
|
}
|
2008-07-09 06:53:43 +01:00
|
|
|
#
|