Temporary.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  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 <vincent@nextcloud.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 OC\Files\Storage;
  27. /**
  28. * local storage backend in temporary folder for testing purpose
  29. */
  30. class Temporary extends Local {
  31. public function __construct($arguments = null) {
  32. parent::__construct(['datadir' => \OC::$server->getTempManager()->getTemporaryFolder()]);
  33. }
  34. public function cleanUp() {
  35. \OC_Helper::rmdirr($this->datadir);
  36. }
  37. public function __destruct() {
  38. parent::__destruct();
  39. $this->cleanUp();
  40. }
  41. public function getDataDir() {
  42. return $this->datadir;
  43. }
  44. }