Elgg  Version 5.1
PersistentLoginService.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg;
4 
7 
18 
19  use TimeUsing;
20 
24  protected $cookie_config;
25 
29  protected $cookie_token;
30 
34  protected $session;
35 
39  protected $crypto;
40 
45 
50  public $_callable_elgg_set_cookie = 'elgg_set_cookie';
51 
61  public function __construct(
62  UsersRememberMeCookiesTable $cookie_table,
64  \Elgg\Security\Crypto $crypto,
66  \Elgg\Http\Request $request) {
67  $this->persistent_cookie_table = $cookie_table;
68  $this->session = $session;
69  $this->crypto = $crypto;
70 
71  $global_cookies_config = $config->getCookieConfig();
72 
73  $this->cookie_config = $global_cookies_config['remember_me'];
74  $this->cookie_token = $request->cookies->get($this->cookie_config['name'], '');
75  }
76 
84  public function makeLoginPersistent(\ElggUser $user): void {
85  $token = $this->generateToken();
86  $hash = $this->hashToken($token);
87 
88  $this->persistent_cookie_table->insertHash($user, $hash);
89  $this->setCookie($token);
90  $this->setSessionToken($token);
91  }
92 
98  public function removePersistentLogin(): void {
99  if ($this->cookie_token) {
100  $client_hash = $this->hashToken($this->cookie_token);
101  $this->persistent_cookie_table->deleteHash($client_hash);
102  }
103 
104  $this->setCookie('');
105  $this->setSessionToken('');
106  }
107 
116  public function handlePasswordChange(\ElggUser $subject, \ElggUser $modifier = null): void {
117  $this->persistent_cookie_table->deleteAllHashes($subject);
118  if (!$modifier || ($modifier->guid !== $subject->guid) || !$this->cookie_token) {
119  return;
120  }
121 
122  $this->makeLoginPersistent($subject);
123  }
124 
131  public function bootSession(): ?\ElggUser {
132  if (!$this->cookie_token) {
133  return null;
134  }
135 
136  // is this token good?
137  $user = $this->getUserFromToken($this->cookie_token);
138  if ($user) {
139  $this->setSessionToken($this->cookie_token);
140 
141  return $user;
142  }
143 
144  $this->setCookie('');
145  return null;
146  }
147 
155  public function getUserFromToken(string $token): ?\ElggUser {
156  if (empty($token)) {
157  return null;
158  }
159 
160  $hash = $this->hashToken($token);
161  if (empty($hash)) {
162  return null;
163  }
164 
165  $user_row = $this->persistent_cookie_table->getRowFromHash($hash);
166  if (empty($user_row)) {
167  return null;
168  }
169 
170  $user = get_user($user_row->guid);
171  return ($user instanceof \ElggUser) ? $user : null;
172  }
173 
181  public function updateTokenUsage(\ElggUser $user): ?bool {
182  if (!$this->cookie_token) {
183  return null;
184  }
185 
186  // update the database record
187  // not interested in number of updated rows, as an update in the same second won't update the row
188  $this->persistent_cookie_table->updateHash($user, $this->hashToken($this->cookie_token));
189 
190  // also update the cookie lifetime client-side
191  $this->setCookie($this->cookie_token);
192 
193  return true;
194  }
195 
203  public function removeExpiredTokens($time): bool {
204  $time = Values::normalizeTime($time);
205 
206  $expires = Values::normalizeTime($this->cookie_config['expire']);
207  $diff = $time->diff($expires);
208 
209  $time->sub($diff);
210  if ($time->getTimestamp() > time()) {
211  return false;
212  }
213 
214  return (bool) $this->persistent_cookie_table->deleteExpiredHashes($time->getTimestamp());
215  }
216 
224  protected function hashToken(string $token): string {
225  // note: with user passwords, you'd want legit password hashing, but since these are randomly
226  // generated and long tokens, rainbow tables aren't any help.
227  return md5($token);
228  }
229 
237  protected function setCookie(string $token): void {
238  $cookie = new \ElggCookie($this->cookie_config['name']);
239  foreach (['expire', 'path', 'domain', 'secure', 'httpOnly'] as $key) {
240  $cookie->$key = $this->cookie_config[strtolower($key)];
241  }
242 
243  $cookie->value = $token;
244  if (!$token) {
245  $cookie->expire = $this->getCurrentTime('-30 days')->getTimestamp();
246  }
247 
248  call_user_func($this->_callable_elgg_set_cookie, $cookie);
249  }
250 
258  protected function setSessionToken(string $token): void {
259  if ($token) {
260  $this->session->set('code', $token);
261  } else {
262  $this->session->remove('code');
263  }
264  }
265 
274  protected function generateToken(): string {
275  return 'z' . $this->crypto->getRandomString(31);
276  }
277 }
makeLoginPersistent(\ElggUser $user)
Make the user&#39;s login persistent.
bootSession()
Boot the persistent login session, possibly returning the user who should be silently logged in...
$request
Definition: livesearch.php:12
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special the source code distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable If distribution of executable or object code is made by offering access to copy from a designated then offering equivalent access to copy the source code from the same place counts as distribution of the source even though third parties are not compelled to copy the source along with the object code You may not or distribute the Program except as expressly provided under this License Any attempt otherwise to sublicense or distribute the Program is void
Definition: LICENSE.txt:215
if(!$annotation instanceof ElggAnnotation) $time
Definition: time.php:20
trait TimeUsing
Adds methods for setting the current time (for testing)
Definition: TimeUsing.php:10
setSessionToken(string $token)
Store the token in the session (or remove it from the session)
Elgg Session Management.
Definition: ElggSession.php:19
Manage the users_remember_me_cookies table.
$config
Advanced site settings, debugging section.
Definition: debugging.php:6
getCurrentTime($modifier= '')
Get the (cloned) time.
Definition: TimeUsing.php:25
__construct(UsersRememberMeCookiesTable $cookie_table,\ElggSession $session,\Elgg\Security\Crypto $crypto,\Elgg\Config $config,\Elgg\Http\Request $request)
Constructor.
$user
Definition: ban.php:7
$expires
removeExpiredTokens($time)
Remove all persistent codes from the database which have expired based on the cookie config...
$token
get_user(int $guid)
Elgg users Functions to manage multiple or single users in an Elgg install.
Definition: users.php:16
if($container instanceof ElggGroup &&$container->guid!=elgg_get_page_owner_guid()) $key
Definition: summary.php:44
generateToken()
Generate a random token (base 64 URL)
if(isset($_COOKIE['elggperm'])) $session
Definition: login_as.php:29
updateTokenUsage(\ElggUser $user)
Update the timestamp linked to a persistent cookie code, this indicates that the code was used recent...
Request container.
Definition: Request.php:12
removePersistentLogin()
Remove the persisted login token from client and server.
setCookie(string $token)
Store the token in the client cookie (or remove the cookie)
hashToken(string $token)
Create a hash from the token.
handlePasswordChange(\ElggUser $subject,\ElggUser $modifier=null)
Handle a password change.
$subject
Definition: useradd.php:54
getUserFromToken(string $token)
Get a user from a persistent cookie token.