ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilDatabaseSetupAgent.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Setup\Agent
;
22
use
ILIAS\Setup\Agent\HasNoNamedObjective
;
23
use
ILIAS\Setup\Config
;
24
use
ILIAS\Setup\Objective
;
25
use
ILIAS\Setup\Objective\NullObjective
;
26
use
ILIAS\Setup\ObjectiveCollection
;
27
use
ILIAS\Setup\Metrics\Storage
;
28
use
ILIAS\Setup\ilMysqlMyIsamToInnoDbMigration
;
29
use
ILIAS\Setup\ObjectiveConstructor
;
30
use
ILIAS\Refinery\Factory
as
Refinery
;
31
use
ILIAS\Refinery\Transformation
;
32
33
class
ilDatabaseSetupAgent
implements
Agent
34
{
35
use
HasNoNamedObjective
;
36
37
public
function
__construct
(
protected
Refinery
$refinery
)
38
{
39
}
40
44
public
function
hasConfig
(): bool
45
{
46
return
true
;
47
}
48
52
public
function
getArrayToConfigTransformation
():
Transformation
53
{
54
// TODO: Migrate this to refinery-methods once possible.
55
return
$this->
refinery
->custom()->transformation(
function
(
$data
): \
ilDatabaseSetupConfig
{
56
$data
[
"password"
] ??=
null
;
// password can be empty
57
$password = $this->
refinery
->to()->data(
"password"
);
58
return
new \ilDatabaseSetupConfig(
59
$data
[
"type"
] ??
"innodb"
,
60
$data
[
"host"
] ??
"localhost"
,
61
$data
[
"database"
] ??
"ilias"
,
62
$data
[
"user"
] ??
null
,
63
$data
[
"password"
] ? $password->transform(
$data
[
"password"
]) :
null
,
64
$data
[
"create_database"
] ??
true
,
65
$data[
"collation"
] ??
null
,
66
(
int
) ($data[
"port"
] ?? 3306),
67
$data[
"path_to_db_dump"
] ??
null
68
);
69
});
70
}
71
75
public
function
getInstallObjective
(?
Config
$config =
null
):
Objective
76
{
77
if
(!$config instanceof \
ilDatabaseSetupConfig
) {
78
return
new
NullObjective
();
79
}
80
return
new
ObjectiveCollection
(
81
"Complete objectives from Services\Database"
,
82
false
,
83
new
ilDatabaseConfigStoredObjective
($config),
84
new
ilDatabaseEnvironmentValidObjective
(),
85
new
\
ilDatabaseUpdatedObjective
()
86
);
87
}
88
92
public
function
getUpdateObjective
(?
Config
$config =
null
):
Objective
93
{
94
$p = [];
95
$p[] = new \ilDatabaseUpdatedObjective();
96
$p[] =
new
ilDatabaseEnvironmentValidObjective
();
97
return
new
ObjectiveCollection
(
98
"Complete objectives from Services\Database"
,
99
false
,
100
...$p
101
);
102
}
103
107
public
function
getBuildObjective
():
Objective
108
{
109
return
new
NullObjective
();
110
}
111
115
public
function
getStatusObjective
(
Storage
$storage):
Objective
116
{
117
return
new
ilDatabaseMetricsCollectedObjective
($storage);
118
}
119
123
public
function
getMigrations
(): array
124
{
125
return
[
126
new
ilMysqlMyIsamToInnoDbMigration
()
127
];
128
}
129
130
public
function
getNamedObjectives
(?
Config
$config =
null
): array
131
{
132
return
[
133
'resetFailedSteps'
=>
new
ObjectiveConstructor
(
134
'reset null-states in il_db_steps'
,
135
static
fn():
Objective
=>
new
ilDatabaseResetStepsObjective
()
136
)
137
];
138
}
139
}
ilDatabaseConfigStoredObjective
Definition:
class.ilDatabaseConfigStoredObjective.php:25
ILIAS\Setup\ObjectiveCollection
A objective collection is a objective that is achieved once all subobjectives are achieved...
Definition:
ObjectiveCollection.php:26
Storage
ilDatabaseSetupAgent\getBuildObjective
getBuildObjective()
Definition:
class.ilDatabaseSetupAgent.php:107
$data
$data
Definition:
ltiregistration.php:29
ilDatabaseMetricsCollectedObjective
Definition:
class.ilDatabaseMetricsCollectedObjective.php:26
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
ilDatabaseSetupAgent
Definition:
class.ilDatabaseSetupAgent.php:33
ilDatabaseSetupConfig
Definition:
class.ilDatabaseSetupConfig.php:24
ILIAS\Setup\Objective
An objective is a desired state of the system that is supposed to be created by the setup...
Definition:
Objective.php:30
ilDatabaseSetupAgent\getInstallObjective
getInstallObjective(?Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:75
ilDatabaseSetupAgent\hasConfig
hasConfig()
Definition:
class.ilDatabaseSetupAgent.php:44
ILIAS\Setup\Metrics\Storage
Definition:
Storage.php:23
ilDatabaseSetupAgent\getMigrations
getMigrations()
Definition:
class.ilDatabaseSetupAgent.php:123
ILIAS\Setup\Agent
Definition:
class.Agent.php:26
ILIAS\Setup\ilMysqlMyIsamToInnoDbMigration
Definition:
class.ilMysqlMyIsamToInnoDbMigration.php:27
Config
HasNoNamedObjective
Transformation
ILIAS\Setup\Objective\NullObjective
A non-objective, nothing to do to achieve it...
Definition:
NullObjective.php:28
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilDatabaseSetupAgent\getNamedObjectives
getNamedObjectives(?Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:130
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:76
ObjectiveConstructor
ilDatabaseSetupAgent\getUpdateObjective
getUpdateObjective(?Config $config=null)
Definition:
class.ilDatabaseSetupAgent.php:92
Factory
ilDatabaseUpdatedObjective
ObjectiveCollection
ilDatabaseSetupAgent\__construct
__construct(protected Refinery $refinery)
Definition:
class.ilDatabaseSetupAgent.php:37
ILIAS\Setup\Objective
Definition:
AdminConfirmedObjective.php:21
HasNoNamedObjective
ilDatabaseSetupAgent\getStatusObjective
getStatusObjective(Storage $storage)
Definition:
class.ilDatabaseSetupAgent.php:115
ILIAS\Setup\ObjectiveConstructor
Definition:
ObjectiveConstructor.php:29
ilDatabaseResetStepsObjective
Definition:
class.ilDatabaseResetStepsObjective.php:25
ILIAS\Refinery\Transformation
A transformation is a function from one datatype to another.
Definition:
Transformation.php:34
ILIAS\Setup\Config
A configuration for the setup.
Definition:
Config.php:26
ilMysqlMyIsamToInnoDbMigration
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
NullObjective
ilDatabaseSetupAgent\getArrayToConfigTransformation
getArrayToConfigTransformation()
Definition:
class.ilDatabaseSetupAgent.php:52
ILIAS\Setup\Agent
Definition:
HasNoNamedObjective.php:21
ilDatabaseEnvironmentValidObjective
Definition:
class.ilDatabaseEnvironmentValidObjective.php:25
components
ILIAS
Database
classes
Setup
class.ilDatabaseSetupAgent.php
Generated on Wed Apr 2 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)