ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilCronStartUp.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilCronStartUp
22
{
23
private
string
$client
;
24
private
string
$username
;
25
private
string
$password
;
26
private
ilAuthSession
$authSession
;
27
28
public
function
__construct
(
29
string
$a_client_id,
30
string
$a_login,
31
string
$a_password,
32
?
ilAuthSession
$authSession = null
33
) {
34
$this->client = $a_client_id;
35
$this->username = $a_login;
36
$this->password = $a_password;
37
39
require_once
'./Services/Context/classes/class.ilContext.php'
;
40
ilContext::init
(
ilContext::CONTEXT_CRON
);
41
42
// @see mantis 20371: To get rid of this, the authentication service has to provide a mechanism to pass the client_id
43
$_GET
[
'client_id'
] =
$this->client
;
45
require_once
'./include/inc.header.php'
;
46
47
if
(null === $authSession) {
48
global
$DIC
;
49
$authSession = $DIC[
'ilAuthSession'
];
50
}
51
$this->authSession =
$authSession
;
52
}
53
54
59
public
function
authenticate
(): bool
60
{
61
$credentials =
new
ilAuthFrontendCredentials
();
62
$credentials->setUsername($this->username);
63
$credentials->setPassword($this->password);
64
65
$provider_factory =
new
ilAuthProviderFactory
();
66
$providers = $provider_factory->getProviders($credentials);
67
68
$status =
ilAuthStatus::getInstance
();
69
70
$frontend_factory =
new
ilAuthFrontendFactory
();
71
$frontend_factory->setContext(
ilAuthFrontendFactory::CONTEXT_CLI
);
72
73
$frontend = $frontend_factory->getFrontend(
74
$this->authSession,
75
$status,
76
$credentials,
77
$providers
78
);
79
80
$frontend->authenticate();
81
82
switch
($status->getStatus()) {
83
case
ilAuthStatus::STATUS_AUTHENTICATED
:
84
ilLoggerFactory::getLogger
(
'auth'
)->debug(
'Authentication successful; Redirecting to starting page.'
);
85
return
true
;
86
87
88
case
ilAuthStatus::STATUS_AUTHENTICATION_FAILED
:
89
default
:
90
throw
new
ilCronException
($status->getTranslatedReason());
91
}
92
93
return
true
;
94
}
95
96
public
function
logout
(): void
97
{
98
ilSession::setClosingContext
(
ilSession::SESSION_CLOSE_USER
);
99
$this->authSession->logout();
100
}
101
}
ilCronException
Definition:
class.ilCronException.php:21
ilLoggerFactory\getLogger
static getLogger(string $a_component_id)
Get component logger.
Definition:
class.ilLoggerFactory.php:89
ilAuthStatus\STATUS_AUTHENTICATION_FAILED
const STATUS_AUTHENTICATION_FAILED
Definition:
class.ilAuthStatus.php:35
ilContext\CONTEXT_CRON
const CONTEXT_CRON
Definition:
class.ilContext.php:31
ilAuthFrontendFactory
Factory for auth frontend classes.
Definition:
class.ilAuthFrontendFactory.php:27
ilAuthProviderFactory
Auth provider factory.
Definition:
class.ilAuthProviderFactory.php:27
ilCronStartUp\__construct
__construct(string $a_client_id, string $a_login, string $a_password, ?ilAuthSession $authSession=null)
Definition:
class.ilCronStartUp.php:28
$DIC
global $DIC
Definition:
feed.php:28
ilAuthFrontendFactory\CONTEXT_CLI
const CONTEXT_CLI
Definition:
class.ilAuthFrontendFactory.php:36
ilCronStartUp\$client
string $client
Definition:
class.ilCronStartUp.php:23
$_GET
$_GET['client_id']
Definition:
saml1-acs.php:21
ilSession\SESSION_CLOSE_USER
const SESSION_CLOSE_USER
Definition:
class.ilSession.php:51
ilCronStartUp\$password
string $password
Definition:
class.ilCronStartUp.php:25
ilCronStartUp\logout
logout()
Definition:
class.ilCronStartUp.php:96
ilCronStartUp\$username
string $username
Definition:
class.ilCronStartUp.php:24
ilAuthStatus\STATUS_AUTHENTICATED
const STATUS_AUTHENTICATED
Definition:
class.ilAuthStatus.php:34
ilAuthStatus\getInstance
static getInstance()
Get status instance.
Definition:
class.ilAuthStatus.php:58
ilSession\setClosingContext
static setClosingContext(int $a_context)
set closing context (for statistics)
Definition:
class.ilSession.php:487
ilContext\init
static init(string $a_type)
Init context by type.
Definition:
class.ilContext.php:52
ilAuthSession
Definition:
class.ilAuthSession.php:24
ilAuthFrontendCredentials
Definition:
class.ilAuthFrontendCredentials.php:24
ilCronStartUp
Definition:
class.ilCronStartUp.php:21
ilCronStartUp\$authSession
ilAuthSession $authSession
Definition:
class.ilCronStartUp.php:26
ilCronStartUp\authenticate
authenticate()
Start authentication.
Definition:
class.ilCronStartUp.php:59
Services
Cron
classes
class.ilCronStartUp.php
Generated on Fri Apr 4 2025 22:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)