driver.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php namespace Laravel\Auth\Drivers;
  2. use Laravel\Str;
  3. use Laravel\Cookie;
  4. use Laravel\Config;
  5. use Laravel\Session;
  6. use Laravel\Crypter;
  7. abstract class Driver {
  8. /**
  9. * The user currently being managed by the driver.
  10. *
  11. * @var mixed
  12. */
  13. public $user;
  14. /**
  15. * The current value of the user's token.
  16. *
  17. * @var string|null
  18. */
  19. public $token;
  20. /**
  21. * Create a new login auth driver instance.
  22. *
  23. * @return void
  24. */
  25. public function __construct()
  26. {
  27. if (Session::started())
  28. {
  29. $this->token = Session::get($this->token());
  30. }
  31. // If a token did not exist in the session for the user, we will attempt
  32. // to load the value of a "remember me" cookie for the driver, which
  33. // serves as a long-lived client side authenticator for the user.
  34. if (is_null($this->token))
  35. {
  36. $this->token = $this->recall();
  37. }
  38. }
  39. /**
  40. * Determine if the user of the application is not logged in.
  41. *
  42. * This method is the inverse of the "check" method.
  43. *
  44. * @return bool
  45. */
  46. public function guest()
  47. {
  48. return ! $this->check();
  49. }
  50. /**
  51. * Determine if the user is logged in.
  52. *
  53. * @return bool
  54. */
  55. public function check()
  56. {
  57. return ! is_null($this->user());
  58. }
  59. /**
  60. * Get the current user of the application.
  61. *
  62. * If the user is a guest, null should be returned.
  63. *
  64. * @return mixed|null
  65. */
  66. public function user()
  67. {
  68. if ( ! is_null($this->user)) return $this->user;
  69. return $this->user = $this->retrieve($this->token);
  70. }
  71. /**
  72. * Get the given application user by ID.
  73. *
  74. * @param int $id
  75. * @return mixed
  76. */
  77. abstract public function retrieve($id);
  78. /**
  79. * Attempt to log a user into the application.
  80. *
  81. * @param array $arguments
  82. * @return void
  83. */
  84. abstract public function attempt($arguments = array());
  85. /**
  86. * Login the user assigned to the given token.
  87. *
  88. * The token is typically a numeric ID for the user.
  89. *
  90. * @param string $token
  91. * @param bool $remember
  92. * @return bool
  93. */
  94. public function login($token, $remember = false)
  95. {
  96. $this->token = $token;
  97. $this->store($token);
  98. if ($remember) $this->remember($token);
  99. return true;
  100. }
  101. /**
  102. * Log the user out of the driver's auth context.
  103. *
  104. * @return void
  105. */
  106. public function logout()
  107. {
  108. $this->user = null;
  109. $this->cookie($this->recaller(), null, -2000);
  110. Session::forget($this->token());
  111. $this->token = null;
  112. }
  113. /**
  114. * Store a user's token in the session.
  115. *
  116. * @param string $token
  117. * @return void
  118. */
  119. protected function store($token)
  120. {
  121. Session::put($this->token(), $token);
  122. }
  123. /**
  124. * Store a user's token in a long-lived cookie.
  125. *
  126. * @param string $token
  127. * @return void
  128. */
  129. protected function remember($token)
  130. {
  131. $token = Crypter::encrypt($token.'|'.Str::random(40));
  132. $this->cookie($this->recaller(), $token, Cookie::forever);
  133. }
  134. /**
  135. * Attempt to find a "remember me" cookie for the user.
  136. *
  137. * @return string|null
  138. */
  139. protected function recall()
  140. {
  141. $cookie = Cookie::get($this->recaller());
  142. // By default, "remember me" cookies are encrypted and contain the user
  143. // token as well as a random string. If it exists, we'll decrypt it
  144. // and return the first segment, which is the user's ID token.
  145. if ( ! is_null($cookie))
  146. {
  147. return head(explode('|', Crypter::decrypt($cookie)));
  148. }
  149. }
  150. /**
  151. * Store an authentication cookie.
  152. *
  153. * @param string $name
  154. * @param string $value
  155. * @param int $minutes
  156. * @return void
  157. */
  158. protected function cookie($name, $value, $minutes)
  159. {
  160. // When setting the default implementation of an authentication
  161. // cookie we'll use the same settings as the session cookie.
  162. // This typically makes sense as they both are sensitive.
  163. $config = Config::get('session');
  164. extract($config);
  165. Cookie::put($name, $value, $minutes, $path, $domain, $secure);
  166. }
  167. /**
  168. * Get the session key name used to store the token.
  169. *
  170. * @return string
  171. */
  172. protected function token()
  173. {
  174. return $this->name().'_login';
  175. }
  176. /**
  177. * Get the name used for the "remember me" cookie.
  178. *
  179. * @return string
  180. */
  181. protected function recaller()
  182. {
  183. return $this->name().'_remember';
  184. }
  185. /**
  186. * Get the name of the driver in a storage friendly format.
  187. *
  188. * @return string
  189. */
  190. protected function name()
  191. {
  192. return strtolower(str_replace('\\', '_', get_class($this)));
  193. }
  194. }