2012-09-07 16:30:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 10:28:53 +00:00
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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 16:30:48 +00:00
|
|
|
*/
|
|
|
|
namespace OC\Files\Storage;
|
|
|
|
|
|
|
|
/**
|
2013-02-05 15:24:40 +00:00
|
|
|
* local storage backend in temporary folder for testing purpose
|
2012-09-07 16:30:48 +00:00
|
|
|
*/
|
2012-09-22 13:03:17 +00:00
|
|
|
class Temporary extends Local{
|
2012-09-07 16:30:48 +00:00
|
|
|
public function __construct($arguments) {
|
2013-01-31 21:04:08 +00:00
|
|
|
parent::__construct(array('datadir' => \OC_Helper::tmpFolder()));
|
2012-09-07 16:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function cleanUp() {
|
|
|
|
\OC_Helper::rmdirr($this->datadir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
2013-02-09 16:16:13 +00:00
|
|
|
parent::__destruct();
|
2012-09-07 16:30:48 +00:00
|
|
|
$this->cleanUp();
|
|
|
|
}
|
2014-06-05 19:00:50 +00:00
|
|
|
|
|
|
|
public function getDataDir() {
|
|
|
|
return $this->datadir;
|
|
|
|
}
|
2012-09-07 16:30:48 +00:00
|
|
|
}
|