ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPluginDBUpdate.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
31 {
32  protected const PLUGIN_UPDATE_FILE = "/sql/dbupdate.php";
33 
34  private \ilPluginInfo $plugin;
35 
36  private string $db_update_file;
37  private ?int $current_version;
38  private ?int $file_version = null;
39 
44  public function __construct(
45  \ilDBInterface $db,
46  \ilPluginInfo $plugin
47  ) {
48  $this->client_ini = null;
49  $this->db = $db;
50  $this->plugin = $plugin;
51 
52  $this->db_update_file = $this->getDBUpdateScriptName();
53 
54  $this->current_version = $plugin->getCurrentDBVersion() ?? 0;
55 
56  $this->readDBUpdateFile();
57  $this->readFileVersion();
58 
59  $class_map = require ILIAS_ABSOLUTE_PATH . '/vendor/composer/vendor/composer/autoload_classmap.php';
60  $this->ctrl_structure_iterator = new ilCtrlArrayIterator($class_map);
61  }
62 
63  private function readDBUpdateFile(): void
64  {
65  if (!file_exists($this->db_update_file)) {
66  $this->error = 'no_db_update_file';
67  $this->filecontent = [];
68  return;
69  }
70 
71  $this->filecontent = @file($this->db_update_file);
72  }
73 
74  private function readFileVersion(): void
75  {
76  //go through filecontent and search for last occurence of <#x>
77  reset($this->filecontent);
78  $regs = [];
79  $version = 0;
80  foreach ($this->filecontent as $row) {
81  if (preg_match('/^<\#([0-9]+)>/', $row, $regs)) {
82  $version = $regs[1];
83  }
84  }
85 
86  $this->file_version = (int) $version;
87  }
88 
89  public function getCurrentVersion(): int
90  {
92  }
93 
94  protected function setCurrentVersion(?int $a_version): void
95  {
96  $this->current_version = $a_version;
97  }
98 
99  protected function checkQuery(string $q): bool
100  {
101  if ((is_int(stripos($q, 'create table')) || is_int(stripos($q, 'alter table')) ||
102  is_int(stripos($q, 'drop table')))
103  && !is_int(stripos($q, $this->getTablePrefix()))) {
104  return false;
105  }
106 
107  return true;
108  }
109 
110  private function getTablePrefix(): string
111  {
112  $component = $this->plugin->getComponent();
113  $slot = $this->plugin->getPluginSlot();
114  return $component->getId() . '_' . $slot->getId() . '_' . $this->plugin->getId();
115  }
116 
117  private function getDBUpdateScriptName(): string
118  {
119  return $this->plugin->getPath() . self::PLUGIN_UPDATE_FILE;
120  }
121 
126  public function applyUpdate()
127  {
128  $ilCtrlStructureReader = null;
129  $ilDB = null;
130  $this->initGlobalsRequiredForUpdateSteps($ilCtrlStructureReader, $ilDB);
131 
132  $file_version = $this->file_version;
133  $current_version = $this->current_version;
134 
135  $this->updateMsg = 'no_changes';
136  if ($current_version < $file_version) {
137  $msg = [];
138  for ($i = ($current_version + 1); $i <= $file_version; $i++) {
139  if ($this->applyUpdateNr($i) === false) {
140  $msg[] = 'msg: update_error - ' . $this->error . '; nr: ' . $i . ';';
141  $this->updateMsg = implode("\n", $msg);
142 
143  return false;
144  }
145 
146  $msg[] = 'msg: update_applied; nr: ' . $i . ';';
147  }
148 
149  $this->updateMsg = implode('\n', $msg);
150  }
151  }
152 }
$version
Definition: plugin.php:24
Database Update class.
applyUpdate()
Apply update.
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
setCurrentVersion(?int $a_version)
Class ilCtrlArrayIterator.
Simple value class for information about a plugin.
initGlobalsRequiredForUpdateSteps(?ilCtrlStructureReader &$ilCtrlStructureReader, ?ilDBInterface &$ilDB)
Database Update class.
__construct(\ilDBInterface $db, \ilPluginInfo $plugin)
constructor MagicMethodsValidityInspection
$q
Definition: shib_logout.php:21