misc updater tweaks
This commit is contained in:
parent
8dc062e527
commit
b4c27af79a
|
@ -7,7 +7,7 @@
|
||||||
$_SESSION["prefs_cache"] = array();
|
$_SESSION["prefs_cache"] = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_pref($link, $pref_name, $user_id = false, $die_on_error = true) {
|
function get_pref($link, $pref_name, $user_id = false, $die_on_error = false) {
|
||||||
|
|
||||||
$pref_name = db_escape_string($pref_name);
|
$pref_name = db_escape_string($pref_name);
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
$ERRORS[4] = _("Frontend sanity check failed.");
|
$ERRORS[4] = _("Frontend sanity check failed.");
|
||||||
|
|
||||||
$ERRORS[5] = _("Incorrect database schema version. <a href='update.php'>Please update</a>.");
|
$ERRORS[5] = _("Incorrect database schema version. <a href='update.php'>Please update</a>.");
|
||||||
|
|
||||||
$ERRORS[6] = _("Request not authorized.");
|
$ERRORS[6] = _("Request not authorized.");
|
||||||
|
|
||||||
|
|
|
@ -1526,16 +1526,17 @@ function storeInitParams(params, is_client) {
|
||||||
function fatalError(code, message) {
|
function fatalError(code, message) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
if (code != 6) {
|
if (code == 6) {
|
||||||
|
window.location.href = "login.php?rt=none";
|
||||||
|
} else if (code == 5) {
|
||||||
|
window.location.href = "update.php";
|
||||||
|
} else {
|
||||||
var fe = document.getElementById("fatal_error");
|
var fe = document.getElementById("fatal_error");
|
||||||
var fc = document.getElementById("fatal_error_msg");
|
var fc = document.getElementById("fatal_error_msg");
|
||||||
|
|
||||||
fc.innerHTML = "Code " + code + ": " + message;
|
fc.innerHTML = "Code " + code + ": " + message;
|
||||||
|
|
||||||
fe.style.display = "block";
|
fe.style.display = "block";
|
||||||
} else {
|
|
||||||
window.location.href = "login.php?rt=none";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
@ -1061,6 +1061,15 @@ a.cdmToggleLink:hover {
|
||||||
font-weight : normal;
|
font-weight : normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#fatal_error_msg a {
|
||||||
|
color : red;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fatal_error_msg a:hover {
|
||||||
|
color : red;
|
||||||
|
text-decoration : underline;
|
||||||
|
}
|
||||||
|
|
||||||
#noDaemonWarning {
|
#noDaemonWarning {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
background-color : #ecf4ff;
|
background-color : #ecf4ff;
|
||||||
|
|
209
update.php
209
update.php
|
@ -1,139 +1,154 @@
|
||||||
<?php
|
<?php
|
||||||
require_once "sessions.php";
|
require_once "sessions.php";
|
||||||
|
|
||||||
require_once "sanity_check.php";
|
require_once "sanity_check.php";
|
||||||
require_once "functions.php";
|
require_once "functions.php";
|
||||||
require_once "config.php";
|
require_once "config.php";
|
||||||
require_once "db.php";
|
require_once "db.php";
|
||||||
|
|
||||||
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
||||||
|
|
||||||
if (DB_TYPE == "pgsql") {
|
if (DB_TYPE == "pgsql") {
|
||||||
pg_query($link, "set client_encoding = 'utf-8'");
|
pg_query($link, "set client_encoding = 'utf-8'");
|
||||||
pg_set_client_encoding("UNICODE");
|
pg_set_client_encoding("UNICODE");
|
||||||
}
|
}
|
||||||
|
|
||||||
login_sequence($link);
|
login_sequence($link);
|
||||||
|
|
||||||
$owner_uid = $_SESSION["uid"];
|
$owner_uid = $_SESSION["uid"];
|
||||||
|
|
||||||
if ($_SESSION["access_level"] < 10) {
|
if ($_SESSION["access_level"] < 10) {
|
||||||
header("Location: login.php"); die;
|
header("Location: login.php"); die;
|
||||||
}
|
}
|
||||||
|
|
||||||
define('SCHEMA_VERSION', 13);
|
define('SCHEMA_VERSION', 13);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Database Updater</title>
|
<title>Database Updater</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="update.css">
|
<link rel="stylesheet" type="text/css" href="update.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<script type='text/javascript'>
|
||||||
|
function confirmOP() {
|
||||||
|
return confirm("Update the database?");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<h1>Database Updater</h1>
|
<h1>Database Updater</h1>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
function getline($fp, $delim) {
|
function getline($fp, $delim) {
|
||||||
$result = "";
|
$result = "";
|
||||||
while(!feof($fp)) {
|
while(!feof($fp)) {
|
||||||
$tmp = fgetc($fp);
|
$tmp = fgetc($fp);
|
||||||
|
|
||||||
if($tmp == $delim) {
|
if($tmp == $delim) {
|
||||||
return $result;
|
return $result;
|
||||||
}
|
|
||||||
$result .= $tmp;
|
|
||||||
}
|
}
|
||||||
return $result;
|
$result .= $tmp;
|
||||||
}
|
}
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
$op = $_REQUEST["op"];
|
$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");
|
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
||||||
$update_versions = array();
|
$version = db_fetch_result($result, 0, "schema_version");
|
||||||
|
|
||||||
foreach ($update_files as $f) {
|
$update_files = glob("schema/versions/".DB_TYPE."/*sql");
|
||||||
$m = array();
|
$update_versions = array();
|
||||||
preg_match_all("/schema\/versions\/".DB_TYPE."\/(\d*)\.sql/", $f, $m,
|
|
||||||
PREG_PATTERN_ORDER);
|
|
||||||
|
|
||||||
if ($m[1][0]) {
|
foreach ($update_files as $f) {
|
||||||
$update_versions[$m[1][0]] = $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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ksort($update_versions, SORT_NUMERIC);
|
||||||
|
|
||||||
|
$latest_version = max(array_keys($update_versions));
|
||||||
|
|
||||||
|
if ($version == $latest_version) {
|
||||||
|
print "<p>Tiny Tiny RSS database is up to date (version $version).</p>";
|
||||||
|
print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$op) {
|
||||||
|
print "<p class='warning'><b>Warning:</b> Please backup your database before proceeding.</p>";
|
||||||
|
|
||||||
|
print "<p>Your Tiny Tiny RSS database needs update to the latest
|
||||||
|
version ($version —> $latest_version).</p>";
|
||||||
|
|
||||||
|
/* print "<p>Available incremental updates:";
|
||||||
|
|
||||||
|
foreach (array_keys($update_versions) as $v) {
|
||||||
|
if ($v > $version) {
|
||||||
|
print " <a href='$update_versions[$v]'>$v</a>";
|
||||||
}
|
}
|
||||||
}
|
} */
|
||||||
|
|
||||||
ksort($update_versions, SORT_NUMERIC);
|
print "</p>";
|
||||||
|
|
||||||
$latest_version = max(array_keys($update_versions));
|
print "<form method='POST'>
|
||||||
|
<input type='hidden' name='op' value='do'>
|
||||||
|
<input type='submit' onclick='return confirmOP()' value='Perform updates'>
|
||||||
|
</form>";
|
||||||
|
|
||||||
if ($version == $latest_version) {
|
} else if ($op == "do") {
|
||||||
print "Database schema is up to date (version $version).";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!$op) {
|
print "<p>Performing updates (from version $version)...</p>";
|
||||||
print "<p class='warning'><b>Warning:</b> Please backup your database before proceeding.</p>";
|
|
||||||
|
|
||||||
print "<p>Your database schema version is $version. Latest version is ".
|
$num_updates = 0;
|
||||||
"$latest_version.</p>";
|
|
||||||
|
|
||||||
print "<p>Available incremental updates:";
|
foreach (array_keys($update_versions) as $v) {
|
||||||
|
if ($v == $version + 1) {
|
||||||
foreach (array_keys($update_versions) as $v) {
|
print "<p>Updating to version $v...</p>";
|
||||||
if ($v > $version) {
|
$fp = fopen($update_versions[$v], "r");
|
||||||
print " <a href='$update_versions[$v]'>$v</a>";
|
if ($fp) {
|
||||||
}
|
while (!feof($fp)) {
|
||||||
}
|
$query = trim(getline($fp, ";"));
|
||||||
|
if ($query != "") {
|
||||||
print "</p>";
|
print "<p class='query'><b>QUERY:</b> $query</p>";
|
||||||
print "<a href='update.php?op=do'>Click here to perform updates.</a>";
|
db_query($link, $query);
|
||||||
|
|
||||||
} else if ($op == "do") {
|
|
||||||
|
|
||||||
print "<p>Performing updates (version: $version)...</p>";
|
|
||||||
|
|
||||||
$num_updates = 0;
|
|
||||||
|
|
||||||
foreach (array_keys($update_versions) as $v) {
|
|
||||||
if ($v == $version + 1) {
|
|
||||||
print "<p>Updating to version $v...</p>";
|
|
||||||
$fp = fopen($update_versions[$v], "r");
|
|
||||||
if ($fp) {
|
|
||||||
while (!feof($fp)) {
|
|
||||||
$query = trim(getline($fp, ";"));
|
|
||||||
if ($query != "") {
|
|
||||||
print "<p class='query'><b>QUERY:</b> $query</p>";
|
|
||||||
db_query($link, $query);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose($fp);
|
|
||||||
|
|
||||||
print "<p>Checking version... ";
|
|
||||||
|
|
||||||
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
|
||||||
$version = db_fetch_result($result, 0, "schema_version");
|
|
||||||
|
|
||||||
if ($version == $v) {
|
|
||||||
print "OK!";
|
|
||||||
} else {
|
|
||||||
print "<b>ERROR!</b>";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$num_updates++;
|
|
||||||
}
|
}
|
||||||
}
|
fclose($fp);
|
||||||
|
|
||||||
print "<p>Finished. Performed $num_updates updates up to schema
|
print "<p>Checking version... ";
|
||||||
version $version.</p>";
|
|
||||||
|
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
||||||
|
$version = db_fetch_result($result, 0, "schema_version");
|
||||||
|
|
||||||
|
if ($version == $v) {
|
||||||
|
print "OK! ($version)";
|
||||||
|
} else {
|
||||||
|
print "<b>ERROR!</b>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$num_updates++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print "<p>Finished. Performed $num_updates updates up to schema
|
||||||
|
version $version.</p>";
|
||||||
|
|
||||||
|
print "<p><a href='tt-rss.php'>Return to Tiny Tiny RSS</a></p>";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue