]> git.wh0rd.org - tt-rss.git/blob - db-updater.php
Merge pull request #89 from alsvartr/auth_radius
[tt-rss.git] / db-updater.php
1 <?php
2 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
3 get_include_path());
4
5 require_once "functions.php";
6 require_once "sessions.php";
7 require_once "sanity_check.php";
8 require_once "config.php";
9 require_once "db.php";
10
11 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
12
13 if (!init_connection($link)) return;
14 login_sequence($link);
15
16 $owner_uid = $_SESSION["uid"];
17
18 if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
19 $_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
20 render_login_form($link);
21 exit;
22 }
23
24
25 ?>
26
27 <html>
28 <head>
29 <title>Database Updater</title>
30 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
31 <link rel="stylesheet" type="text/css" href="utility.css">
32 </head>
33
34 <body>
35
36 <script type='text/javascript'>
37 function confirmOP() {
38 return confirm(__("Update the database?"));
39 }
40 </script>
41
42 <div class="floatingLogo"><img src="images/logo_small.png"></div>
43
44 <h1><?php echo __("Database Updater") ?></h1>
45
46 <div class="content">
47
48 <?php
49 function getline($fp, $delim) {
50 $result = "";
51 while(!feof($fp)) {
52 $tmp = fgetc($fp);
53
54 if($tmp == $delim) {
55 return $result;
56 }
57 $result .= $tmp;
58 }
59 return $result;
60 }
61
62 $op = $_POST["op"];
63
64 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
65 $version = db_fetch_result($result, 0, "schema_version");
66
67 $update_files = glob("schema/versions/".DB_TYPE."/*sql");
68 $update_versions = array();
69
70 foreach ($update_files as $f) {
71 $m = array();
72 preg_match_all("/schema\/versions\/".DB_TYPE."\/(\d*)\.sql/", $f, $m,
73 PREG_PATTERN_ORDER);
74
75 if ($m[1][0]) {
76 $update_versions[$m[1][0]] = $f;
77 }
78 }
79
80 ksort($update_versions, SORT_NUMERIC);
81
82 $latest_version = max(array_keys($update_versions));
83
84 if ($version == $latest_version) {
85
86 if ($version != SCHEMA_VERSION) {
87 print_error(__("Could not update database"));
88
89 print "<p>" .
90 __("Could not find necessary schema file, need version:") .
91 " " . SCHEMA_VERSION . __(", found: ") . $latest_version . "</p>";
92
93 } else {
94 print_notice(__("Tiny Tiny RSS database is up to date."));
95 print "<form method=\"GET\" action=\"index.php\">
96 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
97 </form>";
98 }
99
100 } else if ($version <= $latest_version && !$op) {
101
102 print_warning(__("Please backup your database before proceeding."));
103
104 print "<p>" . T_sprintf("Your Tiny Tiny RSS database needs update to the latest version (<b>%d</b> to <b>%d</b>).", $version, $latest_version) . "</p>";
105
106 /* print "<p>Available incremental updates:";
107
108 foreach (array_keys($update_versions) as $v) {
109 if ($v > $version) {
110 print " <a href='$update_versions[$v]'>$v</a>";
111 }
112 } */
113
114 print "</p>";
115
116 print "<form method='POST'>
117 <input type='hidden' name='op' value='do'>
118 <input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'>
119 </form>";
120
121 } else if ($op == "do") {
122
123 print "<p>".__("Performing updates...")."</p>";
124
125 $num_updates = 0;
126
127 foreach (array_keys($update_versions) as $v) {
128 if ($v == $version + 1) {
129 print "<p>".T_sprintf("Updating to version %d...", $v)."</p>";
130 db_query($link, "BEGIN");
131 $fp = fopen($update_versions[$v], "r");
132 if ($fp) {
133 while (!feof($fp)) {
134 $query = trim(getline($fp, ";"));
135 if ($query != "") {
136 print "<p class='query'>$query</p>";
137 db_query($link, $query);
138 }
139 }
140 }
141 fclose($fp);
142 db_query($link, "COMMIT");
143
144 print "<p>".__("Checking version... ");
145
146 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
147 $version = db_fetch_result($result, 0, "schema_version");
148
149 if ($version == $v) {
150 print __("OK!");
151 } else {
152 print "<b>".__("ERROR!")."</b>";
153 return;
154 }
155
156 $num_updates++;
157 }
158 }
159
160 print "<p>".vsprintf(ngettext("Finished. Performed <b>%d</b> update up to schema version <b>%d</b>.",
161 "Finished. Performed <b>%d</b> updates up to schema version <b>%d</b>.", $num_updates), $num_updates, $version)."</p>";
162
163 print "<form method=\"GET\" action=\"backend.php\">
164 <input type=\"hidden\" name=\"op\" value=\"logout\">
165 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
166 </form>";
167
168 } else if ($version >= $latest_version) {
169
170 print_error(__("Your database schema is from a newer version of Tiny Tiny RSS."));
171
172 print "<p>" . T_sprintf("Found schema version: <b>%d</b>, required: <b>%d</b>.", $version, $latest_version) . "</p>";
173
174 print "<p>" . __("Schema upgrade impossible. Please update Tiny Tiny RSS files to the newer version and continue.") . "</p>";
175
176 print "<form method=\"GET\" action=\"backend.php\">
177 <input type=\"hidden\" name=\"op\" value=\"logout\">
178 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
179 </form>";
180
181
182 }
183
184 ?>
185
186 </div>
187
188 </body>
189 </html>
190