Modules

Auth_ORM
extends Kohana_Auth_ORM
extends Auth
extends Kohana_Auth

ORM Auth driver.

package
Kohana/Auth
author
Kohana Team
copyright
© 2007-2012 Kohana Team
license
https://kohana.top/license

Class declared in MODPATH/orm/classes/Auth/ORM.php on line 3.

Properties

protected $_config

Default value:
NULL

protected static $_instance

NULL

protected $_session

Default value:
NULL

Methods

public auto_login( ) (defined in Kohana_Auth_ORM)

Logs a user in, based on the authautologin cookie.

Return Values

  • mixed

Source Code

public function auto_login()
{
    if ($token = Cookie::get('authautologin')) {
        // Load the token and user
        $token = ORM::factory('User_Token', ['token' => $token]);

        if ($token->loaded() AND $token->user->loaded()) {
            if ($token->user_agent === sha1(Request::$user_agent)) {
                // Save the token to create a new unique token
                $token->save();

                // Set the new token
                Cookie::set('authautologin', $token->token, $token->expires - time());

                // Complete the login with the found data
                $this->complete_login($token->user);

                // Automatic login was successful
                return $token->user;
            }

            // Token is invalid
            $token->delete();
        }
    }

    return false;
}

public check_password( string $password ) (defined in Kohana_Auth_ORM)

Compare password with original (hashed). Works for current (logged in) user

Parameters

  • string $password required - $password

Return Values

  • boolean

Source Code

public function check_password($password)
{
    $user = $this->get_user();

    if (!$user)
        return false;

    return ($this->hash($password) === $user->password);
}

public force_login( mixed $user [, boolean $mark_session_as_forced = bool FALSE ] ) (defined in Kohana_Auth_ORM)

Forces a user to be logged in, without specifying a password.

Parameters

  • mixed $user required - Username string, or user ORM object
  • boolean $mark_session_as_forced = bool FALSE - Mark the session as forced

Return Values

  • boolean

Source Code

public function force_login($user, $mark_session_as_forced = false)
{
    if (!is_object($user)) {
        $username = $user;

        // Load the user
        $user = ORM::factory('User');
        $user->where($user->unique_key($username), '=', $username)->find();
    }

    if ($mark_session_as_forced === true) {
        // Mark the session as forced, to prevent users from changing account information
        $this->_session->set('auth_forced', true);
    }

    // Run the standard completion
    $this->complete_login($user);
}

public get_user( [ mixed $default = NULL ] ) (defined in Kohana_Auth_ORM)

Gets the currently logged in user from the session (with auto_login check). Returns $default if no user is currently logged in.

Parameters

  • mixed $default = NULL - To return in case user isn't logged in

Return Values

  • mixed

Source Code

public function get_user($default = null)
{
    $user = parent::get_user($default);

    if ($user === $default) {
        // check for "remembered" login
        if (($user = $this->auto_login()) === false)
            return $default;
    }

    return $user;
}

public logged_in( [ mixed $role = NULL ] ) (defined in Kohana_Auth_ORM)

Checks if a session is active.

Parameters

  • mixed $role = NULL - Role name string, role ORM object, or array with role names

Return Values

  • boolean

Source Code

public function logged_in($role = null)
{
    // Get the user from the session
    $user = $this->get_user();

    if (!$user)
        return false;

    if ($user instanceof Model_User AND $user->loaded()) {
        // If we don't have a roll no further checking is needed
        if (!$role)
            return true;

        if (is_array($role)) {
            // Get all the roles
            $roles = ORM::factory('Role')
                ->where('name', 'IN', $role)
                ->find_all()
                ->as_array(null, 'id');

            // Make sure all the roles are valid ones
            if (count($roles) !== count($role))
                return false;
        }
        else {
            if (!is_object($role)) {
                // Load the role
                $roles = ORM::factory('Role', ['name' => $role]);

                if (!$roles->loaded())
                    return false;
            }
            else {
                $roles = $role;
            }
        }

        return $user->has('roles', $roles);
    }
}

public logout( [ boolean $destroy = bool FALSE , boolean $logout_all = bool FALSE ] ) (defined in Kohana_Auth_ORM)

Log a user out and remove any autologin cookies.

Parameters

  • boolean $destroy = bool FALSE - Completely destroy the session
  • boolean $logout_all = bool FALSE - Remove all tokens for user

Return Values

  • boolean

Source Code

public function logout($destroy = false, $logout_all = false)
{
    // Set by force_login()
    $this->_session->delete('auth_forced');

    if ($token = Cookie::get('authautologin')) {
        // Delete the autologin cookie to prevent re-login
        Cookie::delete('authautologin');

        // Clear the autologin token from the database
        $token = ORM::factory('User_Token', ['token' => $token]);

        if ($token->loaded() AND $logout_all) {
            // Delete all user tokens. This isn't the most elegant solution but does the job
            $tokens = ORM::factory('User_Token')->where('user_id', '=', $token->user_id)->find_all();

            foreach ($tokens as $_token) {
                $_token->delete();
            }
        } elseif ($token->loaded()) {
            $token->delete();
        }
    }

    return parent::logout($destroy);
}

public password( mixed $user ) (defined in Kohana_Auth_ORM)

Get the stored password for a username.

Parameters

  • mixed $user required - Username string, or user ORM object

Return Values

  • string

Source Code

public function password($user)
{
    if (!is_object($user)) {
        $username = $user;

        // Load the user
        $user = ORM::factory('User');
        $user->where($user->unique_key($username), '=', $username)->find();
    }

    return $user->password;
}

public __construct( [ array $config = array(0) ] ) (defined in Kohana_Auth)

Loads Session and configuration options.

Parameters

  • array $config = array(0) - Config Options

Return Values

  • void

Source Code

public function __construct($config = [])
{
    // Save the config in the object
    $this->_config = $config;

    $this->_session = Session::instance($this->_config['session_type']);
}

public hash( string $str ) (defined in Kohana_Auth)

Perform a hmac hash, using the configured method.

Parameters

  • string $str required - String to hash

Return Values

  • string

Source Code

public function hash($str)
{
    if (!$this->_config['hash_key'])
        throw new Kohana_Exception('A valid hash key must be set in your auth config.');

    return hash_hmac($this->_config['hash_method'], $str, $this->_config['hash_key']);
}

public static instance( ) (defined in Kohana_Auth)

Singleton pattern

Return Values

  • Auth

Source Code

public static function instance()
{
    if (!isset(Auth::$_instance)) {
        // Load the configuration for this type
        $config = Kohana::$config->load('auth');

        if (!$type = $config->get('driver')) {
            $type = 'file';
        }

        // Set the session class name
        $class = 'Auth_' . ucfirst($type);

        // Create a new session instance
        Auth::$_instance = new $class($config);
    }

    return Auth::$_instance;
}

public login( string $username , string $password [, boolean $remember = bool FALSE ] ) (defined in Kohana_Auth)

Attempt to log in a user by using an ORM object and plain-text password.

Parameters

  • string $username required - Username to log in
  • string $password required - Password to check against
  • boolean $remember = bool FALSE - Enable autologin

Return Values

  • boolean

Source Code

public function login($username, $password, $remember = false)
{
    if (empty($password))
        return false;

    return $this->_login($username, $password, $remember);
}

protected _login( string $user , string $password , boolean $remember ) (defined in Kohana_Auth_ORM)

Logs a user in.

Parameters

  • string $user required - Name
  • string $password required - $password
  • boolean $remember required - Enable autologin

Return Values

  • boolean

Source Code

protected function _login($user, $password, $remember)
{
    if (!is_object($user)) {
        $username = $user;

        // Load the user
        $user = ORM::factory('User');
        $user->where($user->unique_key($username), '=', $username)->find();
    }

    if (is_string($password)) {
        // Create a hashed password
        $password = $this->hash($password);
    }

    // If the passwords match, perform a login
    if ($user->has('roles', ORM::factory('Role', ['name' => 'login'])) AND $user->password === $password) {
        if ($remember === true) {
            // Token data
            $data = [
                'user_id' => $user->pk(),
                'expires' => time() + $this->_config['lifetime'],
                'user_agent' => sha1(Request::$user_agent),
            ];

            // Create a new autologin token
            $token = ORM::factory('User_Token')
                ->values($data)
                ->create();

            // Set the autologin cookie
            Cookie::set('authautologin', $token->token, $this->_config['lifetime']);
        }

        // Finish the login
        $this->complete_login($user);

        return true;
    }

    // Login failed
    return false;
}

protected complete_login( object $user ) (defined in Kohana_Auth_ORM)

Complete the login for a user by incrementing the logins and setting session data: user_id, username, roles.

Parameters

  • object $user required - User ORM object

Return Values

  • void

Source Code

protected function complete_login($user)
{
    $user->complete_login();

    return parent::complete_login($user);
}