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.
|
|
|
|
*/
|
|
|
|
|
2012-09-07 20:30:48 +04:00
|
|
|
namespace OC\Files\Storage;
|
2012-05-24 21:39:14 +04:00
|
|
|
|
2013-10-02 00:31:22 +04:00
|
|
|
abstract class StreamWrapper extends Common {
|
2014-02-06 19:30:58 +04:00
|
|
|
|
|
|
|
/**
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $path
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return string|null
|
|
|
|
*/
|
2012-05-24 21:39:14 +04:00
|
|
|
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) {
|
2013-10-02 00:31:22 +04:00
|
|
|
if ($this->file_exists($path)) {
|
2013-10-02 00:33:58 +04:00
|
|
|
$dh = $this->opendir($path);
|
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
if ($this->is_dir($path . '/' . $file)) {
|
|
|
|
$this->rmdir($path . '/' . $file);
|
|
|
|
} else {
|
|
|
|
$this->unlink($path . '/' . $file);
|
|
|
|
}
|
|
|
|
}
|
2013-11-29 15:58:57 +04:00
|
|
|
$url = $this->constructUrl($path);
|
|
|
|
$success = rmdir($url);
|
|
|
|
clearstatcache(false, $url);
|
2013-04-26 19:40:31 +04:00
|
|
|
return $success;
|
2012-11-30 19:27:11 +04:00
|
|
|
} else {
|
2012-05-24 21:39:14 +04:00
|
|
|
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) {
|
2013-11-22 21:18:08 +04:00
|
|
|
return @filetype($this->constructUrl($path));
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
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) {
|
2013-11-29 15:58:57 +04:00
|
|
|
$url = $this->constructUrl($path);
|
|
|
|
$success = unlink($url);
|
|
|
|
// normally unlink() is supposed to do this implicitly,
|
|
|
|
// but doing it anyway just to be sure
|
|
|
|
clearstatcache(false, $url);
|
2013-04-26 19:40:31 +04:00
|
|
|
return $success;
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2013-02-09 20:35:47 +04:00
|
|
|
public function fopen($path, $mode) {
|
|
|
|
return fopen($this->constructUrl($path), $mode);
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2013-10-02 00:31:22 +04:00
|
|
|
public function touch($path, $mtime = null) {
|
|
|
|
if ($this->file_exists($path)) {
|
|
|
|
if (is_null($mtime)) {
|
|
|
|
$fh = $this->fopen($path, 'a');
|
|
|
|
fwrite($fh, '');
|
|
|
|
fclose($fh);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false; //not supported
|
|
|
|
}
|
2012-11-30 19:27:11 +04:00
|
|
|
} else {
|
2013-10-02 00:31:22 +04:00
|
|
|
$this->file_put_contents($path, '');
|
2013-11-26 15:47:00 +04:00
|
|
|
return true;
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $path
|
|
|
|
* @param string $target
|
|
|
|
*/
|
2013-02-09 20:35:47 +04:00
|
|
|
public function getFile($path, $target) {
|
|
|
|
return copy($this->constructUrl($path), $target);
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $target
|
|
|
|
*/
|
2013-02-09 20:35:47 +04:00
|
|
|
public function uploadFile($path, $target) {
|
|
|
|
return copy($path, $this->constructUrl($target));
|
2012-05-24 21:39:14 +04:00
|
|
|
}
|
|
|
|
|
2013-02-09 20:35:47 +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));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|