nextcloud/apps/files_external/lib/streamwrapper.php

115 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(){
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;
}
2012-09-07 17:22:01 +04:00
public function fopen($path,$mode) {
$this->init();
return fopen($this->constructUrl($path),$mode);
}
2012-09-07 17:22:01 +04:00
public function free_space($path) {
return 0;
}
2012-09-07 17:22:01 +04:00
public function touch($path,$mtime=null) {
$this->init();
2012-09-07 17:22:01 +04:00
if(is_null($mtime)) {
2012-12-03 21:02:22 +04:00
$fh = $this->fopen($path,'a');
fwrite($fh,'');
fclose($fh);
} else {
return false;//not supported
}
}
2012-09-07 17:22:01 +04:00
public function getFile($path,$target) {
$this->init();
return copy($this->constructUrl($path),$target);
}
2012-09-07 17:22:01 +04:00
public function uploadFile($path,$target) {
$this->init();
return copy($path,$this->constructUrl($target));
}
2012-09-07 17:22:01 +04:00
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));
}
}