2012-09-07 20:30:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2012-09-07 20:30:48 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2012-09-07 20:30:48 +04:00
|
|
|
namespace OC\Files\Storage;
|
|
|
|
|
|
|
|
/**
|
2013-02-05 19:24:40 +04:00
|
|
|
* local storage backend in temporary folder for testing purpose
|
2012-09-07 20:30:48 +04:00
|
|
|
*/
|
2012-09-22 17:03:17 +04:00
|
|
|
class Temporary extends Local{
|
2015-06-19 14:54:00 +03:00
|
|
|
public function __construct($arguments = null) {
|
2015-12-18 13:19:53 +03:00
|
|
|
parent::__construct(array('datadir' => \OC::$server->getTempManager()->getTemporaryFolder()));
|
2012-09-07 20:30:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function cleanUp() {
|
|
|
|
\OC_Helper::rmdirr($this->datadir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
2013-02-09 20:16:13 +04:00
|
|
|
parent::__destruct();
|
2012-09-07 20:30:48 +04:00
|
|
|
$this->cleanUp();
|
|
|
|
}
|
2014-06-05 23:00:50 +04:00
|
|
|
|
|
|
|
public function getDataDir() {
|
|
|
|
return $this->datadir;
|
|
|
|
}
|
2012-09-07 20:30:48 +04:00
|
|
|
}
|