2013-04-04 17:15:14 +02:00
|
|
|
<?php
|
|
|
|
class DbUpdater {
|
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
private $dbh;
|
2013-04-04 17:15:14 +02:00
|
|
|
private $db_type;
|
|
|
|
private $need_version;
|
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
function __construct($dbh, $db_type, $need_version) {
|
|
|
|
$this->dbh = $dbh;
|
2013-04-04 17:15:14 +02:00
|
|
|
$this->db_type = $db_type;
|
|
|
|
$this->need_version = (int) $need_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSchemaVersion() {
|
2013-04-17 14:23:15 +02:00
|
|
|
$result = db_query( "SELECT schema_version FROM ttrss_version");
|
2013-04-04 17:15:14 +02:00
|
|
|
return (int) db_fetch_result($result, 0, "schema_version");
|
|
|
|
}
|
|
|
|
|
|
|
|
function isUpdateRequired() {
|
|
|
|
return $this->getSchemaVersion() < $this->need_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSchemaLines($version) {
|
|
|
|
$filename = "schema/versions/".$this->db_type."/$version.sql";
|
|
|
|
|
|
|
|
if (file_exists($filename)) {
|
|
|
|
return explode(";", preg_replace("/[\r\n]/", "", file_get_contents($filename)));
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function performUpdateTo($version) {
|
|
|
|
if ($this->getSchemaVersion() == $version - 1) {
|
|
|
|
|
|
|
|
$lines = $this->getSchemaLines($version);
|
|
|
|
|
|
|
|
if (is_array($lines)) {
|
|
|
|
|
2013-04-17 14:23:15 +02:00
|
|
|
db_query( "BEGIN");
|
2013-04-04 17:15:14 +02:00
|
|
|
|
|
|
|
foreach ($lines as $line) {
|
|
|
|
if (strpos($line, "--") !== 0 && $line) {
|
2013-04-17 14:23:15 +02:00
|
|
|
db_query( $line);
|
2013-04-04 17:15:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$db_version = $this->getSchemaVersion();
|
|
|
|
|
|
|
|
if ($db_version == $version) {
|
2013-04-17 14:23:15 +02:00
|
|
|
db_query( "COMMIT");
|
2013-04-04 17:15:14 +02:00
|
|
|
return true;
|
|
|
|
} else {
|
2013-04-17 14:23:15 +02:00
|
|
|
db_query( "ROLLBACK");
|
2013-04-04 17:15:14 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} ?>
|