ILIAS  trunk Revision v12.0_alpha-1221-g4e438232683
ILIAS\Cron\CLI\StartUp Class Reference
+ Collaboration diagram for ILIAS\Cron\CLI\StartUp:

Public Member Functions

 __construct (private readonly string $client, private readonly string $username, ?\ilAuthSession $authSession=null)
 
 authenticate ()
 
 logout ()
 

Private Attributes

readonly ilAuthSession $auth_session
 
bool $is_authenticated = false
 

Detailed Description

Definition at line 25 of file StartUp.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Cron\CLI\StartUp::__construct ( private readonly string  $client,
private readonly string  $username,
?\ilAuthSession  $authSession = null 
)

@noRector

Definition at line 30 of file StartUp.php.

34 {
37
38 // TODO @see mantis 20371: To get rid of this, the authentication service has to provide a mechanism to pass the client_id
39 $_GET['client_id'] = $this->client;
40
41 require_once __DIR__ . '/../../../../../artifacts/bootstrap_default.php';
42 entry_point('ILIAS Legacy Initialisation Adapter');
43
44 if ($authSession === null) {
45 global $DIC;
46 $authSession = $DIC['ilAuthSession'];
47 }
48 $this->auth_session = $authSession;
49 }
const CONTEXT_CRON
Definition: ilContext.php:31
static init(string $a_type)
Init context by type.
Definition: ilContext.php:52
$client
$_GET['cmd']
Definition: lti.php:26
entry_point(string $name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: result1.php:21
global $DIC
Definition: shib_login.php:26

References $_GET, $client, $DIC, ilContext\CONTEXT_CRON, entry_point(), and ilContext\init().

+ Here is the call graph for this function:

Member Function Documentation

◆ authenticate()

ILIAS\Cron\CLI\StartUp::authenticate ( )

Definition at line 51 of file StartUp.php.

51 : bool
52 {
53 $credentials = new \ilAuthFrontendCredentials();
54 $credentials->setUsername($this->username);
55
57
58 $frontend_factory = new \ilAuthFrontendFactory();
59 $frontend_factory->setContext(\ilAuthFrontendFactory::CONTEXT_CLI);
60
61 $provider_factory = new \ilAuthProviderCliFactory();
62
63 $frontend = $frontend_factory->getFrontend(
64 $this->auth_session,
65 $status,
66 $credentials,
67 $provider_factory->getProviders($credentials)
68 );
69
70 $frontend->authenticate();
71
72 switch ($status->getStatus()) {
73 case \ilAuthStatus::STATUS_AUTHENTICATED:
74 $this->is_authenticated = true;
75 \ilLoggerFactory::getLogger('auth')->debug('Authentication successful; Redirecting to starting page.');
76
77 // https://mantis.ilias.de/view.php?id=47354
78 \ilInitialisation::initLanguage(true);
79
80 return true;
81
82 case \ilAuthStatus::STATUS_AUTHENTICATION_FAILED:
83 default:
84 throw new CronException($status->getTranslatedReason());
85 }
86 }
static getInstance()
Get status instance.
static getLogger(string $a_component_id)
Get component logger.

References ilAuthFrontendFactory\CONTEXT_CLI, ilAuthStatus\getInstance(), and ilLoggerFactory\getLogger().

+ Here is the call graph for this function:

◆ logout()

ILIAS\Cron\CLI\StartUp::logout ( )

Definition at line 88 of file StartUp.php.

88 : void
89 {
90 if ($this->is_authenticated) {
92 $this->auth_session->logout();
93 }
94 }
static setClosingContext(int $a_context)
set closing context (for statistics)
const int SESSION_CLOSE_USER

References ilSession\SESSION_CLOSE_USER, and ilSession\setClosingContext().

+ Here is the call graph for this function:

Field Documentation

◆ $auth_session

readonly ilAuthSession ILIAS\Cron\CLI\StartUp::$auth_session
private

Definition at line 27 of file StartUp.php.

◆ $is_authenticated

bool ILIAS\Cron\CLI\StartUp::$is_authenticated = false
private

Definition at line 28 of file StartUp.php.


The documentation for this class was generated from the following file: