Delete.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2024, Maxence Lange <maxence@artificial-owl.com>
  5. *
  6. * @author Maxence Lange <maxence@artificial-owl.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\Core\Command\Background;
  25. use OC\Core\Command\Base;
  26. use OCP\BackgroundJob\IJobList;
  27. use Symfony\Component\Console\Input\InputArgument;
  28. use Symfony\Component\Console\Input\InputInterface;
  29. use Symfony\Component\Console\Output\OutputInterface;
  30. use Symfony\Component\Console\Question\ConfirmationQuestion;
  31. class Delete extends Base {
  32. public function __construct(
  33. protected IJobList $jobList,
  34. ) {
  35. parent::__construct();
  36. }
  37. protected function configure(): void {
  38. $this
  39. ->setName('background-job:delete')
  40. ->setDescription('Remove a background job from database')
  41. ->addArgument(
  42. 'job-id',
  43. InputArgument::REQUIRED,
  44. 'The ID of the job in the database'
  45. );
  46. }
  47. protected function execute(InputInterface $input, OutputInterface $output): int {
  48. $jobId = (int) $input->getArgument('job-id');
  49. $job = $this->jobList->getById($jobId);
  50. if ($job === null) {
  51. $output->writeln('<error>Job with ID ' . $jobId . ' could not be found in the database</error>');
  52. return 1;
  53. }
  54. $output->writeln('Job class: ' . get_class($job));
  55. $output->writeln('Arguments: ' . json_encode($job->getArgument()));
  56. $output->writeln('');
  57. $question = new ConfirmationQuestion(
  58. '<comment>Do you really want to delete this background job ? It could create some misbehaviours in Nextcloud.</comment> (y/N) ', false,
  59. '/^(y|Y)/i'
  60. );
  61. $helper = $this->getHelper('question');
  62. if (!$helper->ask($input, $output, $question)) {
  63. $output->writeln('aborted.');
  64. return 0;
  65. }
  66. $this->jobList->remove($job, $job->getArgument());
  67. return 0;
  68. }
  69. }