2011-06-12 00:14:24 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Michael Gapczynski
|
|
|
|
* @copyright 2011 Michael Gapczynski GapczynskiM@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
require_once( 'lib_share.php' );
|
|
|
|
|
|
|
|
OC_FILESYSTEM::registerStorageType('shared','OC_FILESTORAGE_SHARED',array('datadir'=>'string'));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert target path to source path and pass the function call to the correct storage provider
|
|
|
|
*/
|
2011-07-06 23:17:03 +04:00
|
|
|
class OC_FILESTORAGE_SHARED extends OC_FILESTORAGE {
|
2011-06-16 22:40:21 +04:00
|
|
|
|
2011-06-27 19:47:36 +04:00
|
|
|
private $sourcePaths = array();
|
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
// TODO uh... I don't know what to do here
|
|
|
|
public function __construct($parameters) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-06-23 03:47:57 +04:00
|
|
|
public function getInternalPath($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
$mountPoint = OC_FILESYSTEM::getMountPoint($path);
|
2011-06-27 19:47:36 +04:00
|
|
|
$internalPath = substr($path, strlen($mountPoint));
|
2011-06-18 21:29:16 +04:00
|
|
|
return $internalPath;
|
|
|
|
}
|
|
|
|
|
2011-06-27 19:47:36 +04:00
|
|
|
public function getSource($target) {
|
2011-07-05 19:56:02 +04:00
|
|
|
$target = OC_FILESYSTEM::getStorageMountPoint($this).$target;
|
|
|
|
if (array_key_exists($target, $this->sourcePaths)) {
|
2011-06-27 19:47:36 +04:00
|
|
|
return $this->sourcePaths[$target];
|
|
|
|
} else {
|
2011-07-05 19:56:02 +04:00
|
|
|
$source = OC_SHARE::getSource($target);
|
|
|
|
$this->sourcePaths[$target] = $source;
|
|
|
|
return $source;
|
2011-06-27 19:47:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
public function mkdir($path) {
|
2011-07-08 03:22:23 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
$source = $this->getSource($path);
|
|
|
|
if ($source) {
|
2011-07-08 03:26:25 +04:00
|
|
|
$target = OC_FILESYSTEM::getStorageMountPoint($this).$path;
|
|
|
|
if (OC_SHARE::isWriteable($target)) {
|
2011-07-08 03:22:23 +04:00
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
|
|
|
return $storage->mkdir($this->getInternalPath($source));
|
|
|
|
}
|
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rmdir($path) {
|
2011-07-08 03:22:23 +04:00
|
|
|
// The folder will be removed from the database, but won't be deleted from the owner's filesystem
|
|
|
|
$target = OC_FILESYSTEM::getStorageMountPoint($this).$path;
|
|
|
|
OC_SHARE::unshareFromSelf($target);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
2011-07-06 20:12:29 +04:00
|
|
|
// TODO Change files within shared folders that are renamed
|
2011-06-16 22:40:21 +04:00
|
|
|
public function opendir($path) {
|
2011-06-25 03:20:08 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
global $FAKEDIRS;
|
|
|
|
$sharedItems = OC_SHARE::getItemsSharedWith();
|
|
|
|
foreach ($sharedItems as $item) {
|
|
|
|
$files[] = $item['target'];
|
|
|
|
}
|
|
|
|
$FAKEDIRS['shared'] = $files;
|
|
|
|
return opendir('fakedir://shared');
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-25 03:20:08 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
|
|
|
return $storage->opendir($this->getInternalPath($source));
|
|
|
|
}
|
2011-06-22 19:40:09 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function is_dir($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->is_dir($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function is_file($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->is_file($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
2011-06-22 19:40:09 +04:00
|
|
|
|
|
|
|
// TODO fill in other components of array
|
2011-06-16 22:40:21 +04:00
|
|
|
public function stat($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
$stat["dev"] = "";
|
|
|
|
$stat["ino"] = "";
|
|
|
|
$stat["mode"] = "";
|
|
|
|
$stat["nlink"] = "";
|
|
|
|
$stat["uid"] = "";
|
|
|
|
$stat["gid"] = "";
|
|
|
|
$stat["rdev"] = "";
|
2011-06-23 03:47:57 +04:00
|
|
|
$stat["size"] = $this->filesize($path);
|
|
|
|
$stat["atime"] = $this->fileatime($path);
|
|
|
|
$stat["mtime"] = $this->filemtime($path);
|
|
|
|
$stat["ctime"] = $this->filectime($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
$stat["blksize"] = "";
|
|
|
|
$stat["blocks"] = "";
|
|
|
|
return $stat;
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->stat($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filetype($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
2011-06-22 19:40:09 +04:00
|
|
|
return "dir";
|
2011-06-18 21:29:16 +04:00
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->filetype($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
2011-06-18 21:29:16 +04:00
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function filesize($path) {
|
2011-06-23 05:05:31 +04:00
|
|
|
if ($path == "" || $path == "/" || $this->is_dir($path)) {
|
|
|
|
return $this->getFolderSize($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->filesize($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-23 05:05:31 +04:00
|
|
|
public function getFolderSize($path) {
|
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
$dbpath = $_SESSION['user_id']."/files/Share/";
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-25 03:52:35 +04:00
|
|
|
$dbpath = $this->getInternalPath($source);
|
2011-06-23 05:05:31 +04:00
|
|
|
}
|
|
|
|
$query = OC_DB::prepare("SELECT size FROM *PREFIX*foldersize WHERE path=?");
|
|
|
|
$size = $query->execute(array($dbpath))->fetchAll();
|
|
|
|
if (count($size) > 0) {
|
|
|
|
return $size[0]['size'];
|
|
|
|
} else {
|
|
|
|
return $this->calculateFolderSize($path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function calculateFolderSize($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
if ($this->is_file($path)) {
|
|
|
|
$path = dirname($path);
|
|
|
|
}
|
|
|
|
$path = str_replace("//", "/", $path);
|
|
|
|
if ($this->is_dir($path) && substr($path, -1) != "/") {
|
|
|
|
$path .= "/";
|
|
|
|
}
|
2011-06-23 05:05:31 +04:00
|
|
|
$size = 0;
|
|
|
|
if ($dh = $this->opendir($path)) {
|
2011-06-27 19:47:36 +04:00
|
|
|
while (($filename = readdir($dh)) !== false) {
|
|
|
|
if ($filename != "." && $filename != "..") {
|
|
|
|
$subFile = $path.$filename;
|
|
|
|
if ($this->is_file($subFile)) {
|
|
|
|
$size += $this->filesize($subFile);
|
|
|
|
} else {
|
|
|
|
$size += $this->getFolderSize($subFile);
|
|
|
|
}
|
2011-06-23 05:05:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($size > 0) {
|
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
$dbpath = $_SESSION['user_id']."/files/Share/";
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
|
|
|
$dbpath = $this->getInternalPath($source);
|
2011-06-23 05:05:31 +04:00
|
|
|
}
|
|
|
|
$query = OC_DB::prepare("INSERT INTO *PREFIX*foldersize VALUES(?,?)");
|
|
|
|
$result = $query->execute(array($dbpath, $size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $size;
|
|
|
|
}
|
2011-07-06 20:12:29 +04:00
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
public function is_readable($path) {
|
2011-07-06 20:12:29 +04:00
|
|
|
return true;
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function is_writeable($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-07-06 23:28:50 +04:00
|
|
|
$target = OC_FILESYSTEM::getStorageMountPoint($this).$path;
|
|
|
|
return OC_SHARE::isWriteable($target);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function file_exists($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->file_exists($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function readfile($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->readfile($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filectime($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
2011-06-23 02:16:41 +04:00
|
|
|
$ctime = 0;
|
2011-06-23 03:47:57 +04:00
|
|
|
$dir = $this->opendir($path);
|
2011-06-23 02:16:41 +04:00
|
|
|
while (($filename = readdir($dir)) != false) {
|
2011-06-23 03:47:57 +04:00
|
|
|
$tempctime = $this->filectime($filename);
|
2011-06-23 03:17:31 +04:00
|
|
|
if ($tempctime < $ctime) {
|
2011-06-23 02:16:41 +04:00
|
|
|
$ctime = $tempctime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $ctime;
|
2011-06-18 21:29:16 +04:00
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->filectime($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function filemtime($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
2011-06-23 02:16:41 +04:00
|
|
|
$mtime = 0;
|
2011-06-23 03:47:57 +04:00
|
|
|
$dir = $this->opendir($path);
|
2011-06-23 02:16:41 +04:00
|
|
|
while (($filename = readdir($dir)) != false) {
|
2011-06-23 03:47:57 +04:00
|
|
|
$tempmtime = $this->filemtime($filename);
|
2011-06-23 02:16:41 +04:00
|
|
|
if ($tempmtime > $mtime) {
|
|
|
|
$mtime = $tempmtime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $mtime;
|
2011-06-18 21:29:16 +04:00
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->filemtime($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fileatime($path) {
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($path == "" || $path == "/") {
|
2011-06-23 02:16:41 +04:00
|
|
|
$atime = 0;
|
2011-06-23 03:47:57 +04:00
|
|
|
$dir = $this->opendir($path);
|
2011-06-23 02:16:41 +04:00
|
|
|
while (($filename = readdir($dir)) != false) {
|
2011-06-23 03:47:57 +04:00
|
|
|
$tempatime = $this->fileatime($filename);
|
2011-06-23 02:16:41 +04:00
|
|
|
if ($tempatime > $atime) {
|
|
|
|
$atime = $tempatime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $atime;
|
2011-06-18 21:29:16 +04:00
|
|
|
} else {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-18 21:29:16 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->fileatime($this->getInternalPath($source));
|
2011-06-18 21:29:16 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function file_get_contents($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->file_get_contents($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO OC_SHARE::getPermissions()
|
|
|
|
public function file_put_contents($path, $data) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->file_put_contents($this->getInternalPath($source), $data);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function unlink($path) {
|
2011-07-06 23:17:03 +04:00
|
|
|
// The file will be removed from the database, but won't be deleted from the owner's filesystem
|
|
|
|
$target = OC_FILESYSTEM::getStorageMountPoint($this).$path;
|
|
|
|
OC_SHARE::unshareFromSelf($target);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rename($path1, $path2) {
|
2011-07-06 23:17:03 +04:00
|
|
|
$oldTarget = OC_FILESYSTEM::getStorageMountPoint($this).$path1;
|
|
|
|
$newTarget = OC_FILESYSTEM::getStorageMountPoint($this).$path2;
|
|
|
|
OC_SHARE::setTarget($oldTarget, $newTarget);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function copy($path1, $path2) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path1);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->copy($this->getInternalPath($source), $path2);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fopen($path, $mode) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->fopen($this->getInternalPath($source), $mode);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function toTmpFile($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->toTmpFile($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fromTmpFile($tmpPath, $path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($tmpPath);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->fromTmpFile($this->getInternalPath($source), $path);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fromUploadedFile($tmpPath, $path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($tmpPath);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->fromUploadedFile($this->getInternalPath($source), $path);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getMimeType($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->getMimeType($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function delTree($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->delTree($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function find($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->find($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTree($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->getTree($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hash($type, $path, $raw) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->hash($type, $this->getInternalPath($source), $raw);
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function free_space($path) {
|
2011-06-27 19:47:36 +04:00
|
|
|
$source = $this->getSource($path);
|
2011-06-16 22:40:21 +04:00
|
|
|
if ($source) {
|
|
|
|
$storage = OC_FILESYSTEM::getStorage($source);
|
2011-06-23 03:47:57 +04:00
|
|
|
return $storage->free_space($this->getInternalPath($source));
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
}
|
2011-06-12 00:14:24 +04:00
|
|
|
|
2011-06-16 22:40:21 +04:00
|
|
|
// TODO query all shared files?
|
|
|
|
public function search($query) {
|
|
|
|
|
|
|
|
}
|
2011-06-12 00:14:24 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|