19 declare(strict_types=1);
46 $class_map = require ILIAS_ABSOLUTE_PATH .
'/vendor/composer/vendor/composer/autoload_classmap.php';
53 $sql = explode(
"\n", trim($str));
54 foreach ($sql as $i => $statement) {
55 $sql[$i] = trim($statement);
56 if ($statement !==
"" && $statement[0] !==
"#") {
58 if (str_ends_with($statement,
";")) {
61 $q .=
" " . substr($statement, 0, -1);
66 $this->error = (string)
$check;
72 $q .=
" " . $statement;
76 if (isset(
$q) &&
$q !==
"") {
77 echo
"incomplete_statement: " .
$q .
"<br>";
98 if (isset(
$GLOBALS[
'ilCtrlStructureReader'])) {
99 $ilCtrlStructureReader =
$GLOBALS[
'ilCtrlStructureReader'];
100 } elseif ($DIC->offsetExists(
'ilCtrlStructureReader')) {
101 $ilCtrlStructureReader = $DIC[
'ilCtrlStructureReader'];
104 $this->ctrl_structure_iterator,
107 $DIC->offsetSet(
'ilCtrlStructureReader', $ilCtrlStructureReader);
110 $GLOBALS[
'ilCtrlStructureReader'] = $ilCtrlStructureReader;
112 if ($this->client_ini !==
null) {
113 $ilCtrlStructureReader->setIniFile($this->client_ini);
115 $ilDB = $DIC->database();
123 protected function applyUpdateNr(
int $nr,
bool $custom_update =
false): bool
125 $ilCtrlStructureReader =
null;
129 reset($this->filecontent);
135 while (!preg_match(
"/^<\#" . $nr .
">/", (
string) $this->filecontent[$i]) && $i < count($this->filecontent)) {
140 if ($i === count($this->filecontent)) {
141 $this->error =
'update_not_found';
150 while ($i < count($this->filecontent) && !preg_match(
"/^<#" . ($nr + 1) .
">/", (
string) $this->filecontent[$i])) {
151 $update[] = trim((
string) $this->filecontent[$i]);
160 foreach ($update as $row) {
161 if (preg_match(
"/<\?php/", $row)) {
163 if ($this->
execQuery($this->db, implode(
"\n", $sql)) ===
false) {
169 } elseif (preg_match(
"/\?>/", $row)) {
171 $code = implode(
"\n", $php);
172 if (eval($code) ===
false) {
173 $this->error =
'Parse error: ' . $code;
181 if ($mode ===
'sql') {
185 if ($mode ===
'php') {
191 if ($mode ===
'sql' && $sql !== [] && $this->
execQuery($this->db, implode(
"\n", $sql)) ===
false) {
197 if ($custom_update) {
216 $this->custom_updates_setting->set(
'db_version_custom', (
string) $a_version);
217 $this->custom_updates_current_version = $a_version;
234 reset($a_file_content);
237 foreach ($a_file_content as $row) {
238 if (preg_match(
"/^<#(\\d+)>/", (
string) $row, $regs)) {
248 if ($this->custom_updates_info_read && !$a_force) {
252 $this->custom_updates_setting =
new ilSetting();
253 $custom_updates_file = $this->PATH .
'./components/ILIAS/setup_/sql/dbupdate_custom.php';
254 if (is_file($custom_updates_file)) {
255 $this->custom_updates_content = @file($custom_updates_file);
256 $this->custom_updates_current_version = (
int) $this->custom_updates_setting->get(
'db_version_custom',
'0');
259 $this->custom_updates_info_read =
true;
264 $ilCtrlStructureReader =
null;
273 $this->updateMsg =
'no_changes';
274 if ($current_version < $file_version) {
276 for ($i = ($current_version + 1); $i <= $file_version; $i++) {
282 $this->updateMsg = implode(
"\n", $msg);
288 'msg' =>
'custom_update_applied',
293 $this->updateMsg = implode(
"\n", $msg);
readCustomUpdatesFileVersion(array $a_file_content)
getCustomUpdatesFileVersion()
__construct(protected ilDBInterface $db, protected ?ilIniFile $client_ini=null)
Class ilCtrlStructureCidGenerator.
ilSetting $custom_updates_setting
setCurrentVersion(?int $a_version)
array $custom_updates_content
Class ilCtrlStructureReader is responsible for reading ilCtrl's control structure.
applyUpdateNr(int $nr, bool $custom_update=false)
Apply a custom database update or a plugin update.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readCustomUpdatesInfo(bool $a_force=false)
int $custom_updates_file_version
Iterator $ctrl_structure_iterator
int $custom_updates_current_version
execQuery(ilDBInterface $db, string $str)
bool $custom_updates_info_read
query(string $query)
Run a (read-only) Query on the database.
Class ilCtrlArrayIterator.
initGlobalsRequiredForUpdateSteps(?ilCtrlStructureReader &$ilCtrlStructureReader, ?ilDBInterface &$ilDB)
setCustomUpdatesCurrentVersion(?int $a_version)
getCustomUpdatesCurrentVersion()