2013-04-04 17:15:14 +02:00
|
|
|
<?php
|
|
|
|
class DbUpdater {
|
|
|
|
|
2017-12-01 23:28:30 +01:00
|
|
|
private $pdo;
|
2013-04-17 19:40:04 +02:00
|
|
|
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 = Db::pdo(); //$pdo;
|
2013-04-17 19:40:04 +02:00
|
|
|
$this->db_type = $db_type;
|
2013-04-04 17:15:14 +02:00
|
|
|
$this->need_version = (int) $need_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSchemaVersion() {
|
2017-12-01 23:28:30 +01:00
|
|
|
$row = $this->pdo->query("SELECT schema_version FROM ttrss_version")->fetch();
|
|
|
|
return (int) $row['schema_version'];
|
2013-04-04 17:15:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function isUpdateRequired() {
|
|
|
|
return $this->getSchemaVersion() < $this->need_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSchemaLines($version) {
|
2013-04-17 19:40:04 +02:00
|
|
|
$filename = "schema/versions/".$this->db_type."/$version.sql";
|
2013-04-04 17:15:14 +02:00
|
|
|
|
|
|
|
if (file_exists($filename)) {
|
|
|
|
return explode(";", preg_replace("/[\r\n]/", "", file_get_contents($filename)));
|
|
|
|
} 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-26 19:04:24 +02:00
|
|
|
function performUpdateTo($version, $html_output = true) {
|
2013-04-04 17:15:14 +02:00
|
|
|
if ($this->getSchemaVersion() == $version - 1) {
|
|
|
|
|
|
|
|
$lines = $this->getSchemaLines($version);
|
|
|
|
|
|
|
|
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) {
|
2017-12-01 23:28:30 +01:00
|
|
|
if (!$this->pdo->query($line)) {
|
2016-04-26 19:04:24 +02:00
|
|
|
if ($html_output) {
|
|
|
|
print_notice("Query: $line");
|
2017-12-01 23:28:30 +01:00
|
|
|
print_error("Error: " . implode(", ", $this->pdo->errorInfo()));
|
2016-04-26 19:04:24 +02:00
|
|
|
} else {
|
|
|
|
_debug("Query: $line");
|
2017-12-01 23:28:30 +01:00
|
|
|
_debug("Error: " . implode(", ", $this->pdo->errorInfo()));
|
2016-04-26 19:04:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-04 17:15:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-17 19:40:04 +02:00
|
|
|
$db_version = $this->getSchemaVersion();
|
2013-04-04 17:15:14 +02:00
|
|
|
|
2013-04-17 19:40:04 +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 {
|
2017-07-02 19:53:07 +02:00
|
|
|
return false;
|
2013-04-04 17:15:14 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-26 19:24:18 +02:00
|
|
|
}
|