ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthSession.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  private const SESSION_AUTH_AUTHENTICATED = '_authsession_authenticated';
27  private const SESSION_AUTH_USER_ID = '_authsession_user_id';
28  private const SESSION_AUTH_EXPIRED = '_authsession_expired';
29 
30  private static ?ilAuthSession $instance = null;
31 
32  private ilLogger $logger;
33 
34  private string $id = '';
35  private int $user_id = 0;
36  private bool $expired = false;
37  private bool $authenticated = false;
38 
39  private function __construct(\ilLogger $logger)
40  {
41  $this->logger = $logger;
42  }
43 
49  public static function getInstance(\ilLogger $logger): ilAuthSession
50  {
51  if (self::$instance) {
52  return self::$instance;
53  }
54  return self::$instance = new self($logger);
55  }
56 
60  protected function getLogger(): ilLogger
61  {
62  return $this->logger;
63  }
64 
68  public function init(): bool
69  {
70  if (session_status() === PHP_SESSION_ACTIVE) {
71  $this->getLogger()->error(__METHOD__ . ' called with active session.');
72  $this->getLogger()->logStack(ilLogLevel::ERROR);
73  return false;
74  }
75 
76  session_start();
77 
78  $this->setId(session_id());
79 
80  $user_id = (int) (ilSession::get(self::SESSION_AUTH_USER_ID) ?? ANONYMOUS_USER_ID);
81 
82  if ($user_id) {
83  $this->getLogger()->debug('Resuming old session for user: ' . $user_id);
84  $this->setUserId($user_id);
85  $this->expired = (bool) ilSession::get(self::SESSION_AUTH_EXPIRED);
86  $this->authenticated = (bool) ilSession::get(self::SESSION_AUTH_AUTHENTICATED);
87 
88  $this->validateExpiration();
89  } else {
90  $this->getLogger()->debug('Started new session.');
92  $this->expired = false;
93  $this->authenticated = false;
94  }
95  return true;
96  }
97 
101  public function isValid(): bool
102  {
103  return !$this->isExpired() && $this->isAuthenticated();
104  }
105 
109  public function regenerateId(): void
110  {
111  $old_session_id = session_id();
112  session_regenerate_id(true);
113  $this->setId(session_id());
114  $this->getLogger()->info('Session regenerate id: [' . substr($old_session_id, 0, 5) . '] -> [' . substr($this->getId(), 0, 5) . ']');
115  }
116 
120  public function logout(): void
121  {
122  $this->getLogger()->debug('Logout called for: ' . $this->getUserId());
123  session_regenerate_id(true);
124  session_destroy();
125 
126  $this->init();
127  $this->setAuthenticated(true, ANONYMOUS_USER_ID);
128  }
129 
133  public function isAuthenticated(): bool
134  {
135  return $this->authenticated || $this->user_id === (int) ANONYMOUS_USER_ID;
136  }
137 
141  public function setAuthenticated(bool $a_status, int $a_user_id): void
142  {
143  $this->authenticated = $a_status;
144  $this->user_id = $a_user_id;
145  ilSession::set(self::SESSION_AUTH_AUTHENTICATED, $a_status);
146  ilSession::set(self::SESSION_AUTH_USER_ID, $a_user_id);
147  $this->setExpired(false);
148  if ($a_status) {
149  $this->regenerateId();
150  }
151  }
152 
156  public function isExpired(): bool
157  {
158  return $this->expired && $this->user_id !== (int) ANONYMOUS_USER_ID;
159  }
160 
164  public function setExpired(bool $a_status): void
165  {
166  $this->expired = $a_status;
167  ilSession::set(self::SESSION_AUTH_EXPIRED, (int) $a_status);
168  }
169 
173  public function setUserId(int $a_id): void
174  {
175  $this->user_id = $a_id;
176  }
177 
181  public function getUserId(): int
182  {
183  return $this->user_id;
184  }
185 
189  protected function validateExpiration(): bool
190  {
191  if ($this->isExpired()) {
192  // keep status
193  return false;
194  }
195 
196  if (time() > ilSession::lookupExpireTime($this->getId())) {
197  $this->setExpired(true);
198  return false;
199  }
200  return true;
201  }
202 
206  protected function setId(string $a_id): void
207  {
208  $this->id = $a_id;
209  }
210 
214  public function getId(): string
215  {
216  return $this->id;
217  }
218 }
static get(string $a_var)
logout()
Logout user => stop session.
setUserId(int $a_id)
Set authenticated user id.
const ANONYMOUS_USER_ID
Definition: constants.php:27
regenerateId()
Regenerate id.
isExpired()
Check if current is or was expired in last request.
isAuthenticated()
Check if session is authenticated.
static lookupExpireTime(string $a_session_id)
Lookup expire time for a specific session.
const SESSION_AUTH_AUTHENTICATED
getUserId()
Get authenticated user id.
init()
Start auth session.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setExpired(bool $a_status)
Set session expired.
getId()
get session id
isValid()
Check if current session is valid (authenticated and not expired)
setAuthenticated(bool $a_status, int $a_user_id)
Set authenticated.
validateExpiration()
Check expired value of session.
static ilAuthSession $instance
static getInstance(\ilLogger $logger)
Get instance.
__construct(\ilLogger $logger)
static set(string $a_var, $a_val)
Set a value.
setId(string $a_id)
Set id.