ttrss/update.php

166 lines
3.8 KiB
PHP
Raw Normal View History

<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
2007-03-02 12:46:43 +01:00
require_once "sessions.php";
2007-03-01 09:54:55 +01:00
require_once "sanity_check.php";
require_once "functions.php";
require_once "config.php";
require_once "db.php";
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if (DB_TYPE == "pgsql") {
pg_query($link, "set client_encoding = 'utf-8'");
pg_set_client_encoding("UNICODE");
}
login_sequence($link);
$owner_uid = $_SESSION["uid"];
if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
$_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
render_login_form($link);
2007-03-01 10:43:54 +01:00
exit;
2007-03-01 09:54:55 +01:00
}
?>
<html>
<head>
2007-02-24 18:16:33 +01:00
<title>Database Updater</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
2007-03-02 15:08:00 +01:00
<link rel="stylesheet" type="text/css" href="utility.css">
</head>
<body>
2007-02-24 18:16:33 +01:00
<script type='text/javascript'>
function confirmOP() {
2007-03-06 12:02:19 +01:00
return confirm(__("Update the database?"));
2007-02-24 18:16:33 +01:00
}
</script>
2007-03-02 15:08:00 +01:00
<div class="floatingLogo"><img src="images/ttrss_logo.png"></div>
2007-03-06 12:02:19 +01:00
<h1><?php echo __("Database Updater") ?></h1>
<?php
2007-03-01 09:54:55 +01:00
function getline($fp, $delim) {
$result = "";
while(!feof($fp)) {
$tmp = fgetc($fp);
if($tmp == $delim) {
return $result;
}
$result .= $tmp;
}
2007-03-01 09:54:55 +01:00
return $result;
}
2007-03-01 09:54:55 +01:00
$op = $_POST["op"];
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$version = db_fetch_result($result, 0, "schema_version");
$update_files = glob("schema/versions/".DB_TYPE."/*sql");
$update_versions = array();
foreach ($update_files as $f) {
$m = array();
preg_match_all("/schema\/versions\/".DB_TYPE."\/(\d*)\.sql/", $f, $m,
PREG_PATTERN_ORDER);
if ($m[1][0]) {
$update_versions[$m[1][0]] = $f;
}
2007-03-01 09:54:55 +01:00
}
ksort($update_versions, SORT_NUMERIC);
$latest_version = max(array_keys($update_versions));
if ($version == $latest_version) {
2007-03-06 12:02:19 +01:00
print "<p>".__("Tiny Tiny RSS database is up to date.")."</p>";
2007-03-02 15:08:00 +01:00
print "<form method=\"GET\" action=\"tt-rss.php\">
2007-03-06 12:02:19 +01:00
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
2007-03-02 15:08:00 +01:00
</form>";
2007-03-01 09:54:55 +01:00
return;
}
if (!$op) {
print_warning("Please backup your database before proceeding.");
2007-03-01 09:54:55 +01:00
2007-03-06 12:02:19 +01:00
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>";
2007-03-01 09:54:55 +01:00
/* print "<p>Available incremental updates:";
foreach (array_keys($update_versions) as $v) {
if ($v > $version) {
print " <a href='$update_versions[$v]'>$v</a>";
}
} */
print "</p>";
print "<form method='POST'>
<input type='hidden' name='op' value='do'>
2007-03-06 12:02:19 +01:00
<input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'>
2007-03-01 09:54:55 +01:00
</form>";
} else if ($op == "do") {
2007-03-06 12:02:19 +01:00
print "<p>".__("Performing updates...")."</p>";
2007-03-01 09:54:55 +01:00
$num_updates = 0;
foreach (array_keys($update_versions) as $v) {
if ($v == $version + 1) {
2007-03-06 12:02:19 +01:00
print "<p>".T_sprintf("Updating to version %d...", $v)."</p>";
2007-03-01 09:54:55 +01:00
$fp = fopen($update_versions[$v], "r");
if ($fp) {
while (!feof($fp)) {
$query = trim(getline($fp, ";"));
if ($query != "") {
2007-03-06 12:02:19 +01:00
print "<p class='query'>$query</p>";
2007-03-01 09:54:55 +01:00
db_query($link, $query);
}
}
}
2007-03-01 09:54:55 +01:00
fclose($fp);
2007-03-06 12:02:19 +01:00
print "<p>".__("Checking version... ");
2007-03-01 09:54:55 +01:00
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
$version = db_fetch_result($result, 0, "schema_version");
if ($version == $v) {
2007-03-06 12:02:19 +01:00
print __("OK!");
2007-03-01 09:54:55 +01:00
} else {
2007-03-06 12:02:19 +01:00
print "<b>".__("ERROR!")."</b>";
2007-03-01 09:54:55 +01:00
return;
}
$num_updates++;
2007-02-24 18:16:33 +01:00
}
}
2007-03-01 09:54:55 +01:00
2007-03-06 12:02:19 +01:00
print "<p>".T_sprintf("Finished. Performed <b>%d</b> update(s) up to schema
version <b>%d</b>.", $num_updates, $version)."</p>";
2007-03-01 09:54:55 +01:00
print "<form method=\"GET\" action=\"logout.php\">
2007-03-06 12:02:19 +01:00
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
2007-03-02 15:08:00 +01:00
</form>";
}
2007-03-01 09:54:55 +01:00
?>
</body>
</html>