2010-11-29 22:41:08 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OSB Auth driver.
|
|
|
|
*
|
|
|
|
* @package OSB
|
|
|
|
* @subpackage Account
|
|
|
|
* @category Auth
|
|
|
|
* @author Deon George
|
|
|
|
* @copyright (c) 2010 Deon George
|
|
|
|
* @license http://dev.leenooks.net/license.html
|
|
|
|
*/
|
|
|
|
class Auth_OSB extends Auth_ORM {
|
|
|
|
/**
|
|
|
|
* OSB authentication is controlled via database queries.
|
|
|
|
*
|
|
|
|
* This method can be used to test two situations:
|
|
|
|
* 1) Is the user logged in? ($role == FALSE)
|
|
|
|
* 2) Can the user run the current controller->action ($role == TRUE)
|
|
|
|
*
|
|
|
|
* @param boolean If authentication should be done for this module:method (ie: controller:action).
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function logged_in($role = NULL, $debug = NULL) {
|
|
|
|
$status = FALSE;
|
|
|
|
|
|
|
|
// Get the user from the session
|
|
|
|
$user = $this->get_user(FALSE);
|
|
|
|
|
|
|
|
// If we are not a valid user object, then we are not logged in
|
|
|
|
if (is_object($user) AND $user instanceof Model_Account AND $user->loaded()) {
|
|
|
|
|
2012-11-09 23:13:57 +00:00
|
|
|
if (Config::sitemode() == Kohana::DEVELOPMENT && Kohana::$config->load('config')->site_debug)
|
2010-11-29 22:41:08 +00:00
|
|
|
SystemMessage::add(array('title'=>'Debug','type'=>'debug','body'=>Kohana::debug(array('user'=>$user->username,'r'=>$role))));
|
|
|
|
|
|
|
|
if (! empty($role)) {
|
|
|
|
// Get the module details
|
2012-11-09 23:13:57 +00:00
|
|
|
$mo = ORM::factory('Module',array('name'=>Request::current()->controller()));
|
2011-09-17 10:45:08 +00:00
|
|
|
if (! $mo->loaded() OR ! $mo->status) {
|
2010-11-29 22:41:08 +00:00
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>'Module is not defined or active in the Database',
|
|
|
|
'type'=>'warning',
|
2011-05-14 07:35:33 +00:00
|
|
|
'body'=>sprintf('Module not defined: %s',Request::current()->controller()),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
} else {
|
2011-05-14 07:35:33 +00:00
|
|
|
if (Request::current()->directory())
|
|
|
|
$method_name = sprintf('%s_%s',Request::current()->directory(),Request::current()->action());
|
2010-11-29 22:41:08 +00:00
|
|
|
else
|
2011-05-14 07:35:33 +00:00
|
|
|
$method_name = Request::current()->action();
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
// Get the method number
|
2012-11-09 23:13:57 +00:00
|
|
|
$mmo = ORM::factory('Module_Method',array('module_id'=>$mo->id,'name'=>$method_name));
|
2011-09-17 10:45:08 +00:00
|
|
|
if (! $mmo->loaded()) {
|
2010-11-29 22:41:08 +00:00
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>'Method is not defined or active in the Database',
|
|
|
|
'type'=>'warning',
|
2011-09-17 10:45:08 +00:00
|
|
|
'body'=>sprintf('Method not defined: %s for %s',Request::current()->action(),$mo->name),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// If the role has the authorisation to run the method
|
2012-11-09 23:13:57 +00:00
|
|
|
$gmo = ORM::factory('Group_Method')
|
2011-09-17 10:45:08 +00:00
|
|
|
->where('method_id','=',$mmo->id);
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
$roles = '';
|
2011-09-17 10:45:08 +00:00
|
|
|
foreach ($gmo->find_all() as $gm) {
|
2010-11-29 22:41:08 +00:00
|
|
|
$roles .= ($roles ? '|' : '').$gm->group->name;
|
|
|
|
|
2011-09-24 13:13:38 +00:00
|
|
|
// $gm->group->id == 0 means all users.
|
|
|
|
if ($gm->group->id == 0 OR $user->has_any('group',$gm->group->list_childgrps(TRUE))) {
|
2010-11-29 22:41:08 +00:00
|
|
|
$status = TRUE;
|
|
|
|
$roles = '';
|
2011-09-24 13:13:38 +00:00
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $status) {
|
|
|
|
if (Config::sitemode() == Kohana::DEVELOPMENT)
|
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>'User is not authorised in Database',
|
|
|
|
'type'=>'debug',
|
2011-09-17 10:45:08 +00:00
|
|
|
'body'=>sprintf('Role(s) checked: %s<br/>User: %s</br>Module: %s<br/>Method: %s',$roles,$user->username,$mo->name,$mmo->name),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::sitemode() == Kohana::DEVELOPMENT)
|
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>'Debug',
|
|
|
|
'type'=>'debug',
|
|
|
|
'body'=>sprintf('A-User: <b>%s</b>, Module: <b>%s</b>, Method: <b>%s</b>, Role: <b>%s</b>, Status: <b>%s</b>, Data: <b>%s</b>',
|
2011-05-14 07:35:33 +00:00
|
|
|
$user->username,Request::current()->controller(),Request::current()->action(),$role,$status,$debug)));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
// There is no role, so the method should be allowed to run as anonymous
|
|
|
|
} else {
|
|
|
|
if (Config::sitemode() == Kohana::DEVELOPMENT)
|
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>'Debug',
|
|
|
|
'type'=>'debug',
|
|
|
|
'body'=>sprintf('B-User: <b>%s</b>, Module: <b>%s</b>, Method: <b>%s</b>, Status: <b>%s</b>, Data: <b>%s</b>',
|
2011-05-14 07:35:33 +00:00
|
|
|
$user->username,Request::current()->controller(),Request::current()->action(),'No Role Default Access',$debug)));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
$status = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check and see if we have a token to login and run the method
|
|
|
|
} elseif ((! empty($_REQUEST['token']) AND $token = $_REQUEST['token']) OR $token=Session::instance()->get('token')) {
|
|
|
|
if ($user=$this->_get_token_user($token) AND $user !== FALSE)
|
|
|
|
$status = TRUE;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (Config::sitemode() == Kohana::DEVELOPMENT)
|
|
|
|
SystemMessage::add(array('title'=>'Debug','type'=>'debug','body'=>'No user logged in'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the currently logged in user from the session.
|
|
|
|
* Returns FALSE if no user is currently logged in.
|
|
|
|
*
|
|
|
|
* @param boolean Check token users too
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function get_user($tokenuser=TRUE) {
|
|
|
|
$user = parent::get_user();
|
|
|
|
|
|
|
|
// If we are not logged in, see if there is token for the usre
|
|
|
|
if ($tokenuser AND $user === FALSE AND $token=Session::instance()->get('token')) {
|
|
|
|
$user = $this->_get_token_user($token);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the user that a token applies to
|
|
|
|
*
|
|
|
|
* This will check that the token is valid (not expired and for the request)
|
|
|
|
*
|
|
|
|
* @param $token The token
|
|
|
|
* @return mixed The user
|
|
|
|
*/
|
|
|
|
private function _get_token_user($token) {
|
2011-10-12 03:52:04 +00:00
|
|
|
// This has been implemented, as we sometimes we seem to come here twice
|
|
|
|
static $user = NULL;
|
|
|
|
|
|
|
|
if (! is_null($user))
|
|
|
|
return $user;
|
|
|
|
|
2012-11-09 23:13:57 +00:00
|
|
|
$mmto = ORM::factory('Module_Method_Token',array('token'=>$token));
|
2010-11-29 22:41:08 +00:00
|
|
|
$user = FALSE;
|
|
|
|
|
2011-10-12 22:20:08 +00:00
|
|
|
// Ignore the token if it doesnt exist.
|
2010-11-29 22:41:08 +00:00
|
|
|
if ($mmto->loaded()) {
|
2011-10-12 22:20:08 +00:00
|
|
|
// Check that the token is for this URI
|
2012-11-09 23:13:57 +00:00
|
|
|
$mo = ORM::factory('Module',array('name'=>Request::current()->controller()));
|
|
|
|
$mmo = ORM::factory('Module_Method',array(
|
2011-10-12 22:20:08 +00:00
|
|
|
'module_id'=>$mo->id,
|
|
|
|
'name'=>Request::current()->directory() ? sprintf('%s_%s',Request::current()->directory(),Request::current()->action()) : Request::current()->action()
|
|
|
|
));
|
|
|
|
|
|
|
|
// Ignore the token if this is not the right method.
|
|
|
|
if ($mmo->id == $mmto->method_id) {
|
|
|
|
if (! is_null($mmto->date_expire) AND $mmto->date_expire < time()) {
|
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>_('Token Not Valid'),
|
|
|
|
'type'=>'warning',
|
|
|
|
'body'=>_('Token expired')));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
2011-10-12 22:20:08 +00:00
|
|
|
// @todo Log the token deletion
|
|
|
|
Session::instance()->delete('token');
|
|
|
|
$mmto->delete();
|
2010-11-29 22:41:08 +00:00
|
|
|
|
2011-10-12 22:20:08 +00:00
|
|
|
} elseif (! is_null($mmto->uses) AND $mmto->uses < 1) {
|
|
|
|
SystemMessage::add(array(
|
|
|
|
'title'=>_('Token Not Valid'),
|
|
|
|
'type'=>'warning',
|
|
|
|
'body'=>_('Token expired')));
|
|
|
|
|
|
|
|
// @todo Log the token deletion
|
|
|
|
Session::instance()->delete('token');
|
|
|
|
$mmto->delete();
|
|
|
|
|
|
|
|
} else {
|
2011-10-12 03:52:04 +00:00
|
|
|
// If this is a usage count token, reduce the count.
|
|
|
|
if (! is_null($mmto->uses))
|
|
|
|
$mmto->uses -= 1;
|
|
|
|
|
|
|
|
// Record the date this token was used
|
|
|
|
$mmto->date_last = time();
|
|
|
|
$mmto->save();
|
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
Session::instance()->set('token',$token);
|
|
|
|
|
2012-11-09 23:13:57 +00:00
|
|
|
$user = ORM::factory('Account',$mmto->account_id);
|
2012-04-17 10:50:06 +00:00
|
|
|
$user->log(sprintf('Token %s used for method %s [%s]',$mmto->token,$mmto->module_method->name(),Request::current()->param('id')));
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs a user in.
|
|
|
|
*
|
|
|
|
* @param string username
|
|
|
|
* @param string password
|
|
|
|
* @param boolean enable autologin
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
protected function _login($user, $password, $remember)
|
|
|
|
{
|
|
|
|
if ( ! is_object($user))
|
|
|
|
{
|
|
|
|
$username = $user;
|
|
|
|
|
|
|
|
// Load the user
|
2012-11-09 23:13:57 +00:00
|
|
|
$user = ORM::factory('Account');
|
2012-02-22 08:15:46 +00:00
|
|
|
$user->where('username','=',$username)->find();
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
|
2012-11-09 23:13:57 +00:00
|
|
|
if (is_string($password))
|
|
|
|
{
|
|
|
|
// Create a hashed password
|
|
|
|
$password = $this->hash($password);
|
|
|
|
}
|
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
// If the passwords match, perform a login
|
2012-11-09 23:13:57 +00:00
|
|
|
if ($user->status AND $user->has_any('group',ORM::factory('Group',array('name'=>'Registered Users'))->list_childgrps(TRUE)) AND $user->password === $password)
|
2010-11-29 22:41:08 +00:00
|
|
|
{
|
|
|
|
if ($remember === TRUE)
|
|
|
|
{
|
|
|
|
// Create a new autologin token
|
2012-11-09 23:13:57 +00:00
|
|
|
$token = ORM::factory('User_Token');
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
// Set token data
|
|
|
|
$token->user_id = $user->id;
|
|
|
|
$token->expires = time() + $this->_config['lifetime'];
|
|
|
|
$token->save();
|
|
|
|
|
|
|
|
// Set the autologin cookie
|
|
|
|
Cookie::set('authautologin', $token->token, $this->_config['lifetime']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Record our session ID, we may need to update our DB when we get a new ID
|
|
|
|
$oldsess = session_id();
|
|
|
|
|
|
|
|
// Finish the login
|
|
|
|
$this->complete_login($user);
|
|
|
|
|
|
|
|
// Do we need to update databases with our new sesion ID
|
|
|
|
// @todo figure out where this is best to go
|
2012-11-09 23:13:57 +00:00
|
|
|
$session_change_trigger = array('Cart'=>'session_id');
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
if (count($session_change_trigger) AND (session_id() != $oldsess)) {
|
|
|
|
foreach ($session_change_trigger as $t => $c) {
|
2011-09-28 06:46:22 +00:00
|
|
|
if (Config::moduleexist($c)) {
|
|
|
|
$orm = ORM::factory($t)
|
|
|
|
->where($c,'=',$oldsess);
|
|
|
|
|
|
|
|
foreach ($orm->find_all() as $o)
|
|
|
|
$o->set('session_id',session_id())
|
|
|
|
->update();
|
|
|
|
}
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login failed
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if a user is authorised to view an account
|
|
|
|
*
|
|
|
|
* @param integer Account ID
|
|
|
|
*
|
|
|
|
* @return boolean TRUE if authorised, FALSE if not.
|
|
|
|
*/
|
2011-09-26 10:12:54 +00:00
|
|
|
public function authorised($aid,$afid=NULL) {
|
|
|
|
return (($ao = $this->get_user()) AND $ao->loaded() AND ($aid == $ao->id OR $ao->isAdmin() OR (! is_null($afid) AND $afid == $ao->affiliate->id))) ? TRUE : FALSE;
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|