update_020602.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. ###
  3. # @name Update to version 2.6.2
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. # Add a checksum
  8. $result = $database->query("SELECT `id`, `url` FROM `lychee_photos` WHERE `checksum` IS NULL;");
  9. if (!$result) {
  10. Log::error($database, 'update_020602', __LINE__, 'Could not find photos without checksum (' . $database->error . ')');
  11. return false;
  12. }
  13. while ($photo = $result->fetch_object()) {
  14. $checksum = sha1_file(LYCHEE_UPLOADS_BIG . $photo->url);
  15. if ($checksum!==false) {
  16. $setChecksum = $database->query("UPDATE `lychee_photos` SET `checksum` = '$checksum' WHERE `id` = '$photo->id';");
  17. if (!$setChecksum) {
  18. Log::error($database, 'update_020602', __LINE__, 'Could not update checksum (' . $database->error . ')');
  19. return false;
  20. }
  21. } else {
  22. Log::error($database, 'update_020602', __LINE__, 'Could not calculate checksum for photo with id ' . $photo->id);
  23. return false;
  24. }
  25. }
  26. # Set version
  27. $result = $database->query("UPDATE lychee_settings SET value = '020602' WHERE `key` = 'version';");
  28. if (!$result) {
  29. Log::error($database, 'update_020602', __LINE__, 'Could not update database (' . $database->error . ')');
  30. return false;
  31. }
  32. ?>