nextcloud/apps/files_external/lib/streamwrapper.php

111 lines
2.2 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2012-09-07 20:30:48 +04:00
namespace OC\Files\Storage;
2012-09-07 20:30:48 +04:00
abstract class StreamWrapper extends \OC\Files\Storage\Common{
private $ready = false;
protected function init(){
2013-02-09 19:46:55 +04:00
if($this->ready) {
return;
}
$this->ready = true;
//create the root folder if necesary
if(!$this->is_dir('')) {
$this->mkdir('');
}
}
abstract public function constructUrl($path);
2012-09-07 17:22:01 +04:00
public function mkdir($path) {
$this->init();
return mkdir($this->constructUrl($path));
}
2012-09-07 17:22:01 +04:00
public function rmdir($path) {
$this->init();
2012-09-07 17:22:01 +04:00
if($this->file_exists($path)) {
$succes = rmdir($this->constructUrl($path));
clearstatcache();
return $succes;
} else {
return false;
}
}
2012-09-07 17:22:01 +04:00
public function opendir($path) {
$this->init();
return opendir($this->constructUrl($path));
}
2012-09-07 17:22:01 +04:00
public function filetype($path) {
$this->init();
return filetype($this->constructUrl($path));
}
2012-09-07 17:22:01 +04:00
public function isReadable($path) {
return true;//not properly supported
}
2012-09-07 17:22:01 +04:00
public function isUpdatable($path) {
return true;//not properly supported
}
2012-09-07 17:22:01 +04:00
public function file_exists($path) {
$this->init();
return file_exists($this->constructUrl($path));
}
2012-09-07 17:22:01 +04:00
public function unlink($path) {
$this->init();
$succes = unlink($this->constructUrl($path));
clearstatcache();
return $succes;
}
public function fopen($path, $mode) {
$this->init();
return fopen($this->constructUrl($path), $mode);
}
public function touch($path, $mtime=null) {
$this->init();
2012-09-07 17:22:01 +04:00
if(is_null($mtime)) {
$fh = $this->fopen($path, 'a');
fwrite($fh, '');
fclose($fh);
} else {
return false;//not supported
}
}
public function getFile($path, $target) {
$this->init();
return copy($this->constructUrl($path), $target);
}
public function uploadFile($path, $target) {
$this->init();
return copy($path, $this->constructUrl($target));
}
public function rename($path1, $path2) {
$this->init();
return rename($this->constructUrl($path1), $this->constructUrl($path2));
}
2012-09-07 17:22:01 +04:00
public function stat($path) {
$this->init();
return stat($this->constructUrl($path));
}
}