1
0

ClearGeneratedAvatarCache.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
  4. *
  5. * @author John Molakvoæ <skjnldsv@protonmail.com>
  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;
  24. use OC\AvatarManager;
  25. use OCP\IConfig;
  26. use OCP\Migration\IOutput;
  27. use OCP\Migration\IRepairStep;
  28. use OCP\Util;
  29. class ClearGeneratedAvatarCache implements IRepairStep {
  30. /** @var AvatarManager */
  31. protected $avatarManager;
  32. /** @var IConfig */
  33. private $config;
  34. public function __construct(IConfig $config, AvatarManager $avatarManager) {
  35. $this->config = $config;
  36. $this->avatarManager = $avatarManager;
  37. }
  38. public function getName() {
  39. return 'Clear every generated avatar on major updates';
  40. }
  41. /**
  42. * Check if this repair step should run
  43. *
  44. * @return boolean
  45. */
  46. private function shouldRun() {
  47. $versionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0.0');
  48. // was added to 15.0.0.4
  49. return version_compare($versionFromBeforeUpdate, '15.0.0.4', '<=');
  50. }
  51. public function run(IOutput $output) {
  52. if ($this->shouldRun()) {
  53. try {
  54. $this->avatarManager->clearCachedAvatars();
  55. $output->info('Avatar cache cleared');
  56. } catch (\Exception $e) {
  57. $output->warning('Unable to clear the avatar cache');
  58. }
  59. }
  60. }
  61. }