summaryrefslogtreecommitdiff
path: root/classes/dbupdater.php
blob: cb1eecf4bb0e3d768347ac0cdae254f1ca4f5657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
class DbUpdater {

	private $dbh;
	private $db_type;
	private $need_version;

	function __construct($dbh, $db_type, $need_version) {
		$this->dbh = $dbh;
		$this->db_type = $db_type;
		$this->need_version = (int) $need_version;
	}

	function getSchemaVersion() {
		$result = db_query("SELECT schema_version FROM ttrss_version");
		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, $html_output = true) {
		if ($this->getSchemaVersion() == $version - 1) {

			$lines = $this->getSchemaLines($version);

			if (is_array($lines)) {

				db_query("BEGIN");

				foreach ($lines as $line) {
					if (strpos($line, "--") !== 0 && $line) {
						if (!db_query($line, false)) {
							if ($html_output) {
								print_notice("Query: $line");
								print_error("Error: " . db_last_query_error());
							} else {
								_debug("Query: $line");
								_debug("Error: " . db_last_query_error());
							}

							return false;
						}
					}
				}

				$db_version = $this->getSchemaVersion();

				if ($db_version == $version) {
					db_query("COMMIT");
					return true;
				} else {
					db_query("ROLLBACK");
					return false;
				}
			} else {
				return true;
			}
		} else {
			return false;
		}
	}

}