2012-05-24 21:39:14 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
abstract class OC_FileStorage_StreamWrapper extends OC_Filestorage_Common{
|
|
|
|
abstract public function constructUrl($path);
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function mkdir($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return mkdir($this->constructUrl($path));
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function rmdir($path) {
|
|
|
|
if($this->file_exists($path)) {
|
2012-05-24 21:39:14 +04:00
|
|
|
$succes=rmdir($this->constructUrl($path));
|
|
|
|
clearstatcache();
|
|
|
|
return $succes;
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function opendir($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return opendir($this->constructUrl($path));
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function filetype($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return filetype($this->constructUrl($path));
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function isReadable($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return true;//not properly supported
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function isUpdatable($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return true;//not properly supported
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function file_exists($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return file_exists($this->constructUrl($path));
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function unlink($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
$succes=unlink($this->constructUrl($path));
|
|
|
|
clearstatcache();
|
|
|
|
return $succes;
|
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
public function fopen($path, $mode) {
|
|
|
|
return fopen($this->constructUrl($path), $mode);
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function free_space($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
public function touch($path, $mtime=null) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if(is_null($mtime)) {
|
2012-05-24 21:39:14 +04:00
|
|
|
$fh=$this->fopen($path,'a');
|
|
|
|
fwrite($fh,'');
|
|
|
|
fclose($fh);
|
|
|
|
}else{
|
|
|
|
return false;//not supported
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
public function getFile($path, $target) {
|
|
|
|
return copy($this->constructUrl($path), $target);
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
public function uploadFile($path, $target) {
|
|
|
|
return copy($path, $this->constructUrl($target));
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2012-11-02 22:53:02 +04:00
|
|
|
public function rename($path1, $path2) {
|
|
|
|
return rename($this->constructUrl($path1), $this->constructUrl($path2));
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function stat($path) {
|
2012-05-24 21:39:14 +04:00
|
|
|
return stat($this->constructUrl($path));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|