1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00
ttrss/classes/dbupdater.php

83 lines
1.8 KiB
PHP
Raw Normal View History

2013-04-04 17:15:14 +02:00
<?php
class DbUpdater {
2017-12-01 23:28:30 +01:00
private $pdo;
private $db_type;
2013-04-04 17:15:14 +02:00
private $need_version;
2017-12-01 23:28:30 +01:00
function __construct($pdo, $db_type, $need_version) {
$this->pdo = $pdo;
$this->db_type = $db_type;
2013-04-04 17:15:14 +02:00
$this->need_version = (int) $need_version;
}
2021-02-15 14:14:00 +01:00
function get_schema_version() {
2021-02-25 19:42:05 +01:00
return Config::get_schema_version(true);
2013-04-04 17:15:14 +02:00
}
2021-02-15 14:14:00 +01:00
function is_update_required() {
return $this->get_schema_version() < $this->need_version;
2013-04-04 17:15:14 +02:00
}
2021-02-15 14:14:00 +01:00
function get_schema_lines($version) {
$filename = "schema/versions/".$this->db_type."/$version.sql";
2013-04-04 17:15:14 +02:00
if (file_exists($filename)) {
return explode(";", (string)preg_replace("/[\r\n]/", "", (string)file_get_contents($filename)));
2013-04-04 17:15:14 +02:00
} else {
2017-12-01 23:28:30 +01:00
user_error("DB Updater: schema file for version $version is not found.");
2013-04-04 17:15:14 +02:00
return false;
}
}
2021-02-15 14:14:00 +01:00
function update_to($version, $html_output = true) {
if ($this->get_schema_version() == $version - 1) {
2013-04-04 17:15:14 +02:00
2021-02-15 14:14:00 +01:00
$lines = $this->get_schema_lines($version);
2013-04-04 17:15:14 +02:00
if (is_array($lines)) {
2017-12-01 23:28:30 +01:00
$this->pdo->beginTransaction();
2013-04-04 17:15:14 +02:00
foreach ($lines as $line) {
if (strpos($line, "--") !== 0 && $line) {
if ($html_output)
print "<pre>$line</pre>";
else
Debug::log("> $line");
try {
$this->pdo->query($line); // PDO returns errors as exceptions now
} catch (PDOException $e) {
if ($html_output) {
print "<div class='text-error'>Error: " . $e->getMessage() . "</div>";
} else {
Debug::log("Error: " . $e->getMessage());
}
2019-03-06 17:09:28 +01:00
$this->pdo->rollBack();
return false;
}
2013-04-04 17:15:14 +02:00
}
}
2021-02-15 14:14:00 +01:00
$db_version = $this->get_schema_version();
2013-04-04 17:15:14 +02:00
if ($db_version == $version) {
2017-12-01 23:28:30 +01:00
$this->pdo->commit();
2013-04-04 17:15:14 +02:00
return true;
} else {
2017-12-01 23:28:30 +01:00
$this->pdo->rollBack();
2013-04-04 17:15:14 +02:00
return false;
}
} else {
return false;
2013-04-04 17:15:14 +02:00
}
} else {
return false;
}
}
}