MoveAvatars.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @copyright 2016 Roeland Jago Douma <roeland@famdouma.nl>
  4. *
  5. * @author Julius Härtl <jus@bitgrid.net>
  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\Owncloud;
  24. use OCP\BackgroundJob\IJobList;
  25. use OCP\IConfig;
  26. use OCP\Migration\IOutput;
  27. use OCP\Migration\IRepairStep;
  28. class MoveAvatars implements IRepairStep {
  29. /** @var IJobList */
  30. private $jobList;
  31. /** @var IConfig */
  32. private $config;
  33. /**
  34. * MoveAvatars constructor.
  35. *
  36. * @param IJobList $jobList
  37. * @param IConfig $config
  38. */
  39. public function __construct(IJobList $jobList,
  40. IConfig $config) {
  41. $this->jobList = $jobList;
  42. $this->config = $config;
  43. }
  44. /**
  45. * @return string
  46. */
  47. public function getName() {
  48. return 'Add move avatar background job';
  49. }
  50. public function run(IOutput $output) {
  51. // only run once
  52. if ($this->config->getAppValue('core', 'moveavatarsdone') === 'yes') {
  53. $output->info('Repair step already executed');
  54. return;
  55. }
  56. if ($this->config->getSystemValue('enable_avatars', true) === false) {
  57. $output->info('Avatars are disabled');
  58. } else {
  59. $output->info('Add background job');
  60. $this->jobList->add(MoveAvatarsBackgroundJob::class);
  61. // if all were done, no need to redo the repair during next upgrade
  62. $this->config->setAppValue('core', 'moveavatarsdone', 'yes');
  63. }
  64. }
  65. }