summaryrefslogtreecommitdiff
path: root/classes/dbupdater.php
blob: d1df31b40636614ac84e50276308a520678b07a0 (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
76
77
78
79
80
81
82
<?php
class DbUpdater {

	private $pdo;
	private $db_type;
	private $need_version;

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

	function get_schema_version() {
		return Config::get_schema_version(true);
	}

	function is_update_required() {
		return $this->get_schema_version() < $this->need_version;
	}

	function get_schema_lines($version) {
		$filename = "schema/versions/".$this->db_type."/$version.sql";

		if (file_exists($filename)) {
			return explode(";", (string)preg_replace("/[\r\n]/", "", (string)file_get_contents($filename)));
		} else {
			user_error("DB Updater: schema file for version $version is not found.");
			return false;
		}
	}

	function update_to($version, $html_output = true) {
		if ($this->get_schema_version() == $version - 1) {

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

			if (is_array($lines)) {

				$this->pdo->beginTransaction();

				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());
							}

							$this->pdo->rollBack();
							return false;
						}
					}
				}

				$db_version = $this->get_schema_version();

				if ($db_version == $version) {
					$this->pdo->commit();
					return true;
				} else {
					$this->pdo->rollBack();
					return false;
				}
			} else {
				return false;
			}
		} else {
			return false;
		}
	}

}