Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin/update-hashes.php
diff options
context:
space:
mode:
Diffstat (limited to 'bin/update-hashes.php')
-rw-r--r--bin/update-hashes.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/bin/update-hashes.php b/bin/update-hashes.php
index f7300d5..d63a8e9 100644
--- a/bin/update-hashes.php
+++ b/bin/update-hashes.php
@@ -96,22 +96,22 @@ while ($fileInfo = mysql_fetch_array($fileQry_result)) {
$hash = hash_file("sha256", $file);
$size = round((filesize($file) / 1024), 0); //in KB
- echo "{$fileInfo['name']} {$fileInfo['version']} (file {$fileInfo['file_id']}): ";
+ debug("{$fileInfo['name']} {$fileInfo['version']} (file {$fileInfo['file_id']}): ");
if ('sha256:'.$hash != $fileInfo['hash'] || $size != $fileInfo['size']) {
$hash_update_sql = "UPDATE files SET hash='sha256:{$hash}', size='{$size}' WHERE id={$fileInfo['file_id']}";
$hash_update_result = $db->write($hash_update_sql);
if ('sha256:'.$hash != $fileInfo['hash']) {
- echo "HASH - new: sha256:{$hash}; old: {$fileInfo['hash']}";
+ debug("HASH - new: sha256:{$hash}; old: {$fileInfo['hash']}");
}
if ($size != $fileInfo['size']) {
- echo "SIZE - new: {$size} KB; old: {$fileInfo['size']} KB";
+ debug("SIZE - new: {$size} KB; old: {$fileInfo['size']} KB");
}
- echo "\n";
+ debug('');
}
else {
- echo "No update needed.\n";
+ debug("No update needed.");
}
}
}
@@ -119,5 +119,11 @@ while ($fileInfo = mysql_fetch_array($fileQry_result)) {
// Close our db connection
$db->close();
+function debug($msg) {
+ if (CRON_DEBUG) {
+ echo "{$msg}\n";
+ }
+}
+
exit;
?>