* // Get the current user of the application * $user = Auth::user(); * * // Access a property on the current user of the application * $email = Auth::user()->email; * * * @return object */ public static function user() { if ( ! is_null(static::$user)) return static::$user; static::$user = call_user_func(Config::get('auth.user'), Session::get(Auth::user_key)); $cookie = Cookie::get(Auth::remember_key); if (is_null(static::$user) and ! is_null($cookie)) { static::$user = static::recall($cookie); } return static::$user; } /** * Attempt to login a user based on a long-lived "remember me" cookie. * * We should be able to trust the cookie is valid, since all cookies * set by Laravel include a fingerprint hash. So, the cookie should * be safe to use within this method. * * @param string $cookie * @return mixed */ protected static function recall($cookie) { $cookie = explode('|', Crypter::decrypt($cookie)); if ( ! is_null($user = call_user_func(Config::get('auth.user'), $cookie[0]))) { static::login($user); return $user; } } /** * Attempt to log a user into the application. * * If the credentials are valid, the user will be logged into the application * and their user ID will be stored in the session via the "login" method. * * The user may also be "remembered", which will keep the user logged into the * application for one year or until they logout. The user is rememberd via * an encrypted cookie. * * @param string $username * @param string $password * @param bool $remember * @return bool */ public static function attempt($username, $password = null, $remember = false) { $config = Config::get('auth'); $user = call_user_func($config['attempt'], $username, $password, $config); if ( ! is_null($user)) { static::login($user, $config, $remember); return true; } return false; } /** * Log a user into the application. * * @param object $user * @param bool $remember * @return void */ public static function login($user, $remember = false) { static::$user = $user; if ($remember) static::remember($user->id); Session::put(Auth::user_key, $user->id); } /** * Set a cookie so that users are "remembered" and don't need to login. * * @param string $id * @return void */ protected static function remember($id) { $cookie = Crypter::encrypt($id.'|'.Str::random(40)); // This method assumes the "remember me" cookie should have the same // configuration as the session cookie. Since this cookie, like the // session cookie, should be kept very secure, it's probably safe // to assume the settings are the same. $config = Config::get('session'); extract($config, EXTR_SKIP); Cookie::forever(Auth::remember_key, $cookie, $path, $domain, $secure); } /** * Log the current user out of the application. * * The "logout" closure in the authenciation configuration file will be * called. All authentication cookies will be deleted and the user ID * will be removed from the session. * * @return void */ public static function logout() { call_user_func(Config::get('auth.logout'), static::user()); static::$user = null; Cookie::forget(Auth::user_key); Cookie::forget(Auth::remember_key); Session::forget(Auth::user_key); } }