RepairPendingCronJobs.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2018 Morris Jobke <hey@morrisjobke.de>
  4. *
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OC\Repair\NC14;
  24. use OCP\DB\QueryBuilder\IQueryBuilder;
  25. use OCP\IConfig;
  26. use OCP\IDBConnection;
  27. use OCP\Migration\IOutput;
  28. use OCP\Migration\IRepairStep;
  29. class RepairPendingCronJobs implements IRepairStep {
  30. const MAX_ROWS = 1000;
  31. /** @var IDBConnection */
  32. private $connection;
  33. /** @var IConfig */
  34. private $config;
  35. public function __construct(IDBConnection $connection, IConfig $config) {
  36. $this->connection = $connection;
  37. $this->config = $config;
  38. }
  39. public function getName() {
  40. return 'Repair pending cron jobs';
  41. }
  42. private function shouldRun() {
  43. $versionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0');
  44. return version_compare($versionFromBeforeUpdate, '14.0.0.9', '<');
  45. }
  46. /**
  47. * @suppress SqlInjectionChecker
  48. */
  49. private function repair() {
  50. $reset = $this->connection->getQueryBuilder();
  51. $reset->update('jobs')
  52. ->set('reserved_at', $reset->expr()->literal(0, IQueryBuilder::PARAM_INT))
  53. ->where($reset->expr()->neq('reserved_at', $reset->expr()->literal(0, IQueryBuilder::PARAM_INT)));
  54. return $reset->execute();
  55. }
  56. public function run(IOutput $output) {
  57. if ($this->shouldRun()) {
  58. $count = $this->repair();
  59. $output->info('Repaired ' . $count . ' pending cron job(s).');
  60. } else {
  61. $output->info('No need to repair pending cron jobs.');
  62. }
  63. }
  64. }