driver.php 4.4 KB

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