mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
Instead of showing an ugly error, failed logins now show the login page and a simple error about invalid username or password.
86 lines
2.9 KiB
PHP
86 lines
2.9 KiB
PHP
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
/*
|
|
* This file is part of Auth_Ldap.
|
|
|
|
Auth_Ldap is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Auth_Ldap 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Auth_Ldap. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @author Greg Wojtak <gwojtak@techrockdo.com>
|
|
* @copyright Copyright © 2010,2011 by Greg Wojtak <gwojtak@techrockdo.com>
|
|
* @package Auth_Ldap
|
|
* @subpackage auth demo
|
|
* @license GNU Lesser General Public License
|
|
*/
|
|
class Auth extends CI_Controller {
|
|
function __construct() {
|
|
parent::__construct();
|
|
|
|
$this->load->helper('form');
|
|
$this->load->library('Form_validation');
|
|
$this->load->library('auth_ldap');
|
|
$this->load->helper('url');
|
|
$this->load->library('table');
|
|
}
|
|
|
|
function index() {
|
|
$this->db_session->keep_flashdata('tried_to');
|
|
$this->login();
|
|
}
|
|
|
|
function login($errorMsg = NULL){
|
|
$this->db_session->keep_flashdata('tried_to');
|
|
if(!$this->auth_ldap->is_authenticated()) {
|
|
// Set up rules for form validation
|
|
$rules = $this->form_validation;
|
|
$rules->set_rules('username', 'Username', 'required|alpha_dash');
|
|
$rules->set_rules('password', 'Password', 'required');
|
|
|
|
// Do the login...
|
|
if($rules->run() && $this->auth_ldap->login(
|
|
$rules->set_value('username'),
|
|
$rules->set_value('password'))) {
|
|
// Login WIN!
|
|
if($this->db_session->flashdata('tried_to')) {
|
|
redirect($this->db_session->flashdata('tried_to'));
|
|
}else {
|
|
redirect('/');
|
|
}
|
|
}else {
|
|
// Login FAIL
|
|
$this->db_session->set_flashdata('login_error', 'Incorrect username or password.');
|
|
$this->load->view('auth/login_form');
|
|
}
|
|
}else {
|
|
// Already logged in...
|
|
redirect('/');
|
|
}
|
|
}
|
|
|
|
function logout() {
|
|
if($this->db_session->userdata('logged_in')) {
|
|
$data['name'] = $this->db_session->userdata('cn');
|
|
$data['username'] = $this->db_session->userdata('username');
|
|
$data['logged_in'] = TRUE;
|
|
$this->auth_ldap->logout();
|
|
} else {
|
|
$data['logged_in'] = FALSE;
|
|
}
|
|
redirect('/');
|
|
}
|
|
}
|
|
|
|
?>
|