1
0

Expire.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. * @author Robin Appelman <robin@icewind.nl>
  8. * @author Thomas Müller <thomas.mueller@tmit.eu>
  9. * @author Vincent Petry <pvince81@owncloud.com>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OCA\Files_Trashbin\Command;
  27. use OC\Command\FileAccess;
  28. use OCA\Files_Trashbin\Trashbin;
  29. use OCP\Command\ICommand;
  30. class Expire implements ICommand {
  31. use FileAccess;
  32. /**
  33. * @var string
  34. */
  35. private $user;
  36. /**
  37. * @param string $user
  38. */
  39. function __construct($user) {
  40. $this->user = $user;
  41. }
  42. public function handle() {
  43. $userManager = \OC::$server->getUserManager();
  44. if (!$userManager->userExists($this->user)) {
  45. // User has been deleted already
  46. return;
  47. }
  48. \OC_Util::tearDownFS();
  49. \OC_Util::setupFS($this->user);
  50. Trashbin::expire($this->user);
  51. \OC_Util::tearDownFS();
  52. }
  53. }