This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/includes/kohana/modules/auth/classes/Kohana/Auth/File.php

95 lines
2.0 KiB
PHP
Raw Normal View History

2013-04-13 06:17:56 +00:00
<?php defined('SYSPATH') OR die('No direct access allowed.');
2011-07-20 12:57:07 +00:00
/**
* File Auth driver.
* [!!] this Auth driver does not support roles nor autologin.
*
* @package Kohana/Auth
* @author Kohana Team
2013-04-13 06:17:56 +00:00
* @copyright (c) 2007-2012 Kohana Team
2011-07-20 12:57:07 +00:00
* @license http://kohanaframework.org/license
*/
class Kohana_Auth_File extends Auth {
// User list
protected $_users;
/**
* Constructor loads the user list into the class.
*/
public function __construct($config = array())
{
parent::__construct($config);
// Load user list
$this->_users = Arr::get($config, 'users', array());
}
/**
* Logs a user in.
*
2013-04-13 06:17:56 +00:00
* @param string $username Username
* @param string $password Password
* @param boolean $remember Enable autologin (not supported)
2011-07-20 12:57:07 +00:00
* @return boolean
*/
protected function _login($username, $password, $remember)
{
2013-04-13 06:17:56 +00:00
if (is_string($password))
{
// Create a hashed password
$password = $this->hash($password);
}
2011-07-20 12:57:07 +00:00
if (isset($this->_users[$username]) AND $this->_users[$username] === $password)
{
// Complete the login
return $this->complete_login($username);
}
// Login failed
return FALSE;
}
/**
* Forces a user to be logged in, without specifying a password.
*
2013-04-13 06:17:56 +00:00
* @param mixed $username Username
2011-07-20 12:57:07 +00:00
* @return boolean
*/
public function force_login($username)
{
// Complete the login
return $this->complete_login($username);
}
/**
* Get the stored password for a username.
*
2013-04-13 06:17:56 +00:00
* @param mixed $username Username
2011-07-20 12:57:07 +00:00
* @return string
*/
public function password($username)
{
return Arr::get($this->_users, $username, FALSE);
}
/**
* Compare password with original (plain text). Works for current (logged in) user
*
2013-04-13 06:17:56 +00:00
* @param string $password Password
2011-07-20 12:57:07 +00:00
* @return boolean
*/
public function check_password($password)
{
$username = $this->get_user();
if ($username === FALSE)
{
return FALSE;
}
return ($password === $this->password($username));
}
2013-04-13 06:17:56 +00:00
} // End Auth File