1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-04 13:10:49 +02:00
ttrss/classes/dbupdater.php

66 lines
1.4 KiB
PHP
Raw Normal View History

2013-04-04 17:15:14 +02:00
<?php
class DbUpdater {
2013-04-17 14:23:15 +02:00
private $dbh;
2013-04-17 18:12:14 +02:00
private $$this->dbh->type;
2013-04-04 17:15:14 +02:00
private $need_version;
2013-04-17 18:12:14 +02:00
function __construct($dbh, $$this->dbh->type, $need_version) {
2013-04-17 14:23:15 +02:00
$this->dbh = $dbh;
2013-04-17 18:12:14 +02:00
$this->$this->dbh->type = $db_type;
2013-04-04 17:15:14 +02:00
$this->need_version = (int) $need_version;
}
function getSchemaVersion() {
2013-04-17 18:12:14 +02:00
$result = $this->dbh->query("SELECT schema_version FROM ttrss_version");
return (int) $this->dbh->fetch_result($result, 0, "schema_version");
2013-04-04 17:15:14 +02:00
}
function isUpdateRequired() {
return $this->getSchemaVersion() < $this->need_version;
}
function getSchemaLines($version) {
2013-04-17 18:12:14 +02:00
$filename = "schema/versions/".$this->$this->dbh->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 {
return false;
}
}
function performUpdateTo($version) {
if ($this->getSchemaVersion() == $version - 1) {
$lines = $this->getSchemaLines($version);
if (is_array($lines)) {
2013-04-17 18:12:14 +02:00
$this->dbh->query("BEGIN");
2013-04-04 17:15:14 +02:00
foreach ($lines as $line) {
if (strpos($line, "--") !== 0 && $line) {
2013-04-17 18:12:14 +02:00
$this->dbh->query($line);
2013-04-04 17:15:14 +02:00
}
}
2013-04-17 18:12:14 +02:00
$$this->dbh->version = $this->getSchemaVersion();
2013-04-04 17:15:14 +02:00
2013-04-17 18:12:14 +02:00
if ($$this->dbh->version == $version) {
$this->dbh->query("COMMIT");
2013-04-04 17:15:14 +02:00
return true;
} else {
2013-04-17 18:12:14 +02:00
$this->dbh->query("ROLLBACK");
2013-04-04 17:15:14 +02:00
return false;
}
} else {
return true;
}
} else {
return false;
}
}
} ?>