You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BackgroundCleanupUpdaterBackupsJob.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2018 Morris Jobke <hey@morrisjobke.de>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. *
  9. * @license GNU AGPL version 3 or any later version
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License as
  13. * published by the Free Software Foundation, either version 3 of the
  14. * License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. namespace OC\Core\BackgroundJobs;
  26. use OCP\AppFramework\Utility\ITimeFactory;
  27. use OCP\BackgroundJob\QueuedJob;
  28. use OCP\IConfig;
  29. use Psr\Log\LoggerInterface;
  30. class BackgroundCleanupUpdaterBackupsJob extends QueuedJob {
  31. public function __construct(
  32. protected IConfig $config,
  33. protected LoggerInterface $log,
  34. ITimeFactory $time,
  35. ) {
  36. parent::__construct($time);
  37. }
  38. /**
  39. * This job cleans up all backups except the latest 3 from the updaters backup directory
  40. *
  41. * @param array $argument
  42. */
  43. public function run($argument): void {
  44. $updateDir = $this->config->getSystemValue('updatedirectory', null) ?? $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data');
  45. $instanceId = $this->config->getSystemValue('instanceid', null);
  46. if (!is_string($instanceId) || empty($instanceId)) {
  47. return;
  48. }
  49. $updaterFolderPath = $updateDir . '/updater-' . $instanceId;
  50. $backupFolderPath = $updaterFolderPath . '/backups';
  51. if (file_exists($backupFolderPath)) {
  52. $this->log->info("$backupFolderPath exists - start to clean it up");
  53. $dirList = [];
  54. $dirs = new \DirectoryIterator($backupFolderPath);
  55. foreach ($dirs as $dir) {
  56. // skip files and dot dirs
  57. if ($dir->isFile() || $dir->isDot()) {
  58. continue;
  59. }
  60. $mtime = $dir->getMTime();
  61. $realPath = $dir->getRealPath();
  62. if ($realPath === false) {
  63. continue;
  64. }
  65. $dirList[$mtime] = $realPath;
  66. }
  67. ksort($dirList);
  68. // drop the newest 3 directories
  69. $dirList = array_slice($dirList, 0, -3);
  70. $this->log->info("List of all directories that will be deleted: " . json_encode($dirList));
  71. foreach ($dirList as $dir) {
  72. $this->log->info("Removing $dir ...");
  73. \OC_Helper::rmdirr($dir);
  74. }
  75. $this->log->info("Cleanup finished");
  76. } else {
  77. $this->log->info("Could not find updater directory $backupFolderPath - cleanup step not needed");
  78. }
  79. }
  80. }