update_030000.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Update to version 3.0.0
  4. */
  5. namespace Lychee\Database;
  6. use Lychee\Modules\Database;
  7. if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
  8. // Remove login
  9. // Login now saved as crypt without md5. Legacy code has been removed.
  10. $query = Database::prepare($connection, "UPDATE `?` SET `value` = '' WHERE `key` = 'username' LIMIT 1", array(LYCHEE_TABLE_SETTINGS));
  11. $resetUsername = $connection->query($query);
  12. if (!$resetUsername) {
  13. Log::error('update_030000', __LINE__, 'Could not reset username (' . $connection->error . ')');
  14. return false;
  15. }
  16. $query = Database::prepare($connection, "UPDATE `?` SET `value` = '' WHERE `key` = 'password' LIMIT 1", array(LYCHEE_TABLE_SETTINGS));
  17. $resetPassword = $connection->query($query);
  18. if (!$resetPassword) {
  19. Log::error('update_030000', __LINE__, 'Could not reset password (' . $connection->error . ')');
  20. return false;
  21. }
  22. // Make public albums private and reset password
  23. // Password now saved as crypt without md5. Legacy code has been removed.
  24. $query = Database::prepare($connection, "UPDATE `?` SET `public` = 0, `password` = NULL", array(LYCHEE_TABLE_ALBUMS));
  25. $resetPublic = $connection->query($query);
  26. if (!$resetPublic) {
  27. Log::error('update_030000', __LINE__, 'Could not reset public albums (' . $connection->error . ')');
  28. return false;
  29. }
  30. // Set version
  31. if (Database::setVersion($connection, '030000')===false) return false;
  32. ?>