ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthStatus.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  private static ?ilAuthStatus $instance = null;
30 
31  private ilLanguage $lng;
32 
33  public const STATUS_UNDEFINED = 1;
34  public const STATUS_AUTHENTICATED = 2;
35  public const STATUS_AUTHENTICATION_FAILED = 3;
38 
39  private int $status = self::STATUS_UNDEFINED;
40  private string $reason = '';
41  private string $translated_reason = '';
42  private int $auth_user_id = 0;
43 
44 
45 
49  private function __construct()
50  {
51  global $DIC;
52  $this->lng = $DIC->language();
53  }
54 
58  public static function getInstance(): ilAuthStatus
59  {
60  if (self::$instance) {
61  return self::$instance;
62  }
63  return self::$instance = new ilAuthStatus();
64  }
65 
69  public function setStatus(int $a_status): void
70  {
71  $this->status = $a_status;
72  }
73 
78  public function getStatus(): int
79  {
80  return $this->status;
81  }
82 
87  public function setReason(string $a_reason): void
88  {
89  $this->reason = $a_reason;
90  }
91 
95  public function setTranslatedReason(string $a_reason): void
96  {
97  $this->translated_reason = $a_reason;
98  }
99 
103  public function getReason(): string
104  {
105  return $this->reason;
106  }
107 
111  public function getTranslatedReason(): string
112  {
113  if ($this->translated_reason !== '') {
115  }
116  return $this->lng->txt($this->getReason());
117  }
118 
119 
120  public function setAuthenticatedUserId(int $a_id): void
121  {
122  $this->auth_user_id = $a_id;
123  }
124 
128  public function getAuthenticatedUserId(): int
129  {
130  return $this->auth_user_id;
131  }
132 }
getReason()
Get reason for authentication success, fail, migration...
const STATUS_AUTHENTICATION_FAILED
static ilAuthStatus $instance
getAuthenticatedUserId()
Get authenticated user id.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getTranslatedReason()
Get translated reason.
setStatus(int $a_status)
Set auth status.
getStatus()
Get status.
global $DIC
Definition: shib_login.php:22
const STATUS_CODE_ACTIVATION_REQUIRED
static getInstance()
Get status instance.
setTranslatedReason(string $a_reason)
Set translated reason.
setReason(string $a_reason)
Set reason.
setAuthenticatedUserId(int $a_id)
__construct()
Constructor.
Auth status implementation.
const STATUS_ACCOUNT_MIGRATION_REQUIRED