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' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert target path to source path and pass the function call to the correct storage provider
|
|
|
|
*/
|
2011-07-31 03:40:19 +04:00
|
|
|
class OC_Filestorage_Shared extends OC_Filestorage {
|
2011-06-16 22:40:21 +04:00
|
|
|
|
2011-07-12 21:10:29 +04:00
|
|
|
private $datadir;
|
2011-06-27 19:47:36 +04:00
|
|
|
private $sourcePaths = array();
|
|
|
|
|
2011-07-12 21:10:29 +04:00
|
|
|
public function __construct($arguments) {
|
|
|
|
$this->datadir = $arguments['datadir'];
|
2011-08-16 04:33:02 +04:00
|
|
|
if (!OC_Filesystem::is_dir($this->datadir)) {
|
|
|
|
OC_Filesystem::mkdir($this->datadir);
|
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
2011-06-23 03:47:57 +04:00
|
|
|
public function getInternalPath($path) {
|
2011-07-31 03:40:19 +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-12 21:10:29 +04:00
|
|
|
$target = $this->datadir.$target;
|
2011-07-05 19:56:02 +04:00
|
|
|
if (array_key_exists($target, $this->sourcePaths)) {
|
2011-06-27 19:47:36 +04:00
|
|
|
return $this->sourcePaths[$target];
|
|
|
|
} else {
|
2011-07-31 03:40:19 +04:00
|
|
|
$source = OC_Share::getSource($target);
|
2011-07-05 19:56:02 +04:00
|
|
|
$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-31 00:03:32 +04:00
|
|
|
if ($this->is_writeable($path)) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-08 03:22:23 +04:00
|
|
|
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
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Share::unshareFromMySelf($this->datadir.$path);
|
2011-07-31 22:48:23 +04:00
|
|
|
$this->clearFolderSizeCache($path);
|
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;
|
2011-07-16 22:24:59 +04:00
|
|
|
$path = $this->datadir.$path;
|
2011-07-31 03:40:19 +04:00
|
|
|
$sharedItems = OC_Share::getItemsInFolder($path);
|
2011-07-24 22:38:01 +04:00
|
|
|
if (empty($sharedItems)) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-07-31 22:48:23 +04:00
|
|
|
$files = array();
|
2011-06-25 03:20:08 +04:00
|
|
|
foreach ($sharedItems as $item) {
|
2011-07-16 22:24:59 +04:00
|
|
|
// If item is in the root of the shared storage provider add it to the fakedirs
|
|
|
|
if (dirname($item['target'])."/" == $path) {
|
|
|
|
$files[] = basename($item['target']);
|
|
|
|
}
|
2011-06-25 03:20:08 +04:00
|
|
|
}
|
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-09 02:21:20 +04:00
|
|
|
$dh = $storage->opendir($this->getInternalPath($source));
|
2011-07-16 22:24:59 +04:00
|
|
|
// Remove any duplicate or trailing '/'
|
|
|
|
$path = rtrim($this->datadir.$path, "/");
|
|
|
|
$path = preg_replace('{(/)\1+}', "/", $path);
|
2011-07-31 03:40:19 +04:00
|
|
|
$modifiedItems = OC_Share::getItemsInFolder($source);
|
2011-07-09 02:21:20 +04:00
|
|
|
if ($modifiedItems && $dh) {
|
|
|
|
global $FAKEDIRS;
|
|
|
|
$sources = array();
|
|
|
|
$targets = array();
|
|
|
|
foreach ($modifiedItems as $item) {
|
2011-07-16 23:15:18 +04:00
|
|
|
// If the item is in the current directory and has a different name than the source, add it to the arrays
|
|
|
|
if (dirname($item['target']) == $path && basename($item['source']) != basename($item['target'])) {
|
2011-07-16 22:24:59 +04:00
|
|
|
$sources[] = basename($item['source']);
|
|
|
|
$targets[] = basename($item['target']);
|
2011-07-23 22:41:01 +04:00
|
|
|
// If the item was unshared from self, add it it to the arrays
|
|
|
|
} elseif ($item['target'] == "/") {
|
|
|
|
$sources[] = basename($item['source']);
|
|
|
|
$targets[] = "";
|
2011-07-16 22:24:59 +04:00
|
|
|
}
|
2011-07-09 02:21:20 +04:00
|
|
|
}
|
2011-07-16 22:24:59 +04:00
|
|
|
// Don't waste time if there aren't any modified items in the current directory
|
|
|
|
if (empty($sources)) {
|
|
|
|
return $dh;
|
|
|
|
} else {
|
|
|
|
while (($filename = readdir($dh)) !== false) {
|
|
|
|
if ($filename != "." && $filename != "..") {
|
|
|
|
// If the file isn't in the sources array it isn't modified and can be added as is
|
|
|
|
if (!in_array($filename, $sources)) {
|
|
|
|
$files[] = $filename;
|
|
|
|
// The file has a different name than the source and is added to the fakedirs
|
|
|
|
} else {
|
2011-07-23 22:41:01 +04:00
|
|
|
$target = $targets[array_search($filename, $sources)];
|
|
|
|
// Don't add the file if it was unshared from self by the user
|
|
|
|
if ($target != "") {
|
|
|
|
$files[] = $target;
|
|
|
|
}
|
2011-07-16 22:24:59 +04:00
|
|
|
}
|
2011-07-13 02:22:59 +04:00
|
|
|
}
|
2011-07-09 02:21:20 +04:00
|
|
|
}
|
2011-07-16 22:24:59 +04:00
|
|
|
$FAKEDIRS['shared'] = $files;
|
|
|
|
return opendir('fakedir://shared');
|
2011-07-09 02:21:20 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $dh;
|
|
|
|
}
|
2011-06-25 03:20:08 +04:00
|
|
|
}
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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-07-31 22:48:23 +04:00
|
|
|
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 22:48:23 +04:00
|
|
|
$dbpath = OC_User::getUser()."/files/Share/".$path."/";
|
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) {
|
2011-07-31 22:48:23 +04:00
|
|
|
$dbpath = OC_User::getUser()."/files/Share/".$path;
|
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-07-31 22:48:23 +04:00
|
|
|
public function clearFolderSizeCache($path){
|
|
|
|
if ($this->is_file($path)) {
|
|
|
|
$path = dirname($path);
|
|
|
|
}
|
|
|
|
$path = str_replace("//", "/", $path);
|
|
|
|
if ($this->is_dir($path) && substr($path, -1) != "/") {
|
|
|
|
$path .= "/";
|
|
|
|
}
|
|
|
|
$query = OC_DB::prepare("DELETE FROM *PREFIX*foldersize WHERE path = ?");
|
|
|
|
$result = $query->execute(array($path));
|
|
|
|
if ($path != "/" && $path != "") {
|
|
|
|
$parts = explode("/", $path);
|
|
|
|
$part = array_pop($parts);
|
|
|
|
if (empty($part)) {
|
|
|
|
array_pop($parts);
|
|
|
|
}
|
|
|
|
$parent = implode("/", $parts);
|
|
|
|
$this->clearFolderSizeCache($parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-07-31 03:40:19 +04:00
|
|
|
if ($path == "" || $path == "/" || OC_Share::getPermissions($this->datadir.$path) & OC_Share::WRITE) {
|
2011-06-18 21:29:16 +04:00
|
|
|
return true;
|
|
|
|
} else {
|
2011-07-31 00:03:32 +04:00
|
|
|
return false;
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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-08-16 04:33:02 +04:00
|
|
|
if ($dh = $this->opendir($path)) {
|
|
|
|
while (($filename = readdir($dh)) !== false) {
|
|
|
|
$tempctime = $this->filectime($filename);
|
|
|
|
if ($tempctime < $ctime) {
|
|
|
|
$ctime = $tempctime;
|
|
|
|
}
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
2011-08-16 04:33:02 +04:00
|
|
|
return $ctime;
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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-08-16 04:33:02 +04:00
|
|
|
if ($dh = $this->opendir($path)) {
|
|
|
|
while (($filename = readdir($dh)) !== false) {
|
|
|
|
$tempmtime = $this->filemtime($filename);
|
|
|
|
if ($tempmtime > $mtime) {
|
|
|
|
$mtime = $tempmtime;
|
|
|
|
}
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
2011-08-16 04:33:02 +04:00
|
|
|
return $mtime;
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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-08-16 04:33:02 +04:00
|
|
|
if ($dh = $this->opendir($path)) {
|
|
|
|
while (($filename = readdir($dh)) !== false) {
|
|
|
|
$tempatime = $this->fileatime($filename);
|
|
|
|
if ($tempatime > $atime) {
|
|
|
|
$atime = $tempatime;
|
|
|
|
}
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
2011-08-16 04:33:02 +04:00
|
|
|
return $atime;
|
2011-06-23 02:16:41 +04:00
|
|
|
}
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function file_put_contents($path, $data) {
|
2011-07-31 00:03:32 +04:00
|
|
|
if ($this->is_writeable($path)) {
|
|
|
|
$source = $this->getSource($path);
|
|
|
|
if ($source) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-31 00:03:32 +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-15 05:04:09 +04:00
|
|
|
$target = $this->datadir.$path;
|
2011-07-31 00:03:32 +04:00
|
|
|
// If the user has delete permission for the item, the source item will be deleted
|
2011-07-31 03:40:19 +04:00
|
|
|
if (OC_Share::getPermissions($target) & OC_Share::DELETE) {
|
2011-07-31 00:03:32 +04:00
|
|
|
$source = $this->getSource($path);
|
|
|
|
if ($source) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-31 00:03:32 +04:00
|
|
|
return $storage->unlink($this->getInternalPath($source));
|
2011-07-16 21:06:59 +04:00
|
|
|
}
|
2011-07-31 00:03:32 +04:00
|
|
|
// The item will be removed from the database, but won't be touched on the owner's filesystem
|
2011-07-15 05:04:09 +04:00
|
|
|
} else {
|
2011-07-31 00:03:32 +04:00
|
|
|
// Check if the item is inside a shared folder
|
2011-07-31 03:40:19 +04:00
|
|
|
if (OC_Share::getParentFolders($target)) {
|
2011-07-31 00:03:32 +04:00
|
|
|
// If entry for item already exists
|
2011-07-31 03:40:19 +04:00
|
|
|
if (OC_Share::getItem($target)) {
|
|
|
|
OC_Share::setTarget($target, "/");
|
2011-07-31 00:03:32 +04:00
|
|
|
} else {
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Share::pullOutOfFolder($target, "/");
|
2011-07-31 00:03:32 +04:00
|
|
|
}
|
|
|
|
// Delete the database entry
|
|
|
|
} else {
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Share::unshareFromMySelf($target);
|
2011-07-31 00:03:32 +04:00
|
|
|
}
|
2011-07-31 22:48:23 +04:00
|
|
|
$this->clearFolderSizeCache($this->getInternalPath($target));
|
2011-07-15 05:04:09 +04:00
|
|
|
}
|
2011-07-16 22:58:12 +04:00
|
|
|
return true;
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rename($path1, $path2) {
|
2011-07-31 00:03:32 +04:00
|
|
|
// If the user has write permission for the item, the source item will be renamed
|
|
|
|
if ($this->is_writeable($path1)) {
|
|
|
|
$source = $this->getSource($path1);
|
|
|
|
if ($source) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-31 00:03:32 +04:00
|
|
|
return $storage->rename($path1, $path2);
|
|
|
|
}
|
|
|
|
// The item will be renamed in the database, but won't be touched on the owner's filesystem
|
2011-07-15 03:24:48 +04:00
|
|
|
} else {
|
2011-07-31 00:03:32 +04:00
|
|
|
$oldTarget = $this->datadir.$path1;
|
|
|
|
$newTarget = $this->datadir.$path2;
|
2011-07-31 03:40:19 +04:00
|
|
|
if (OC_Share::getItem($oldTarget)) {
|
|
|
|
OC_Share::setTarget($oldTarget, $newTarget);
|
2011-07-31 00:03:32 +04:00
|
|
|
// There is no entry in the database for the item, it must be inside a shared folder
|
|
|
|
} else {
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Share::pullOutOfFolder($oldTarget, $newTarget);
|
2011-07-31 00:03:32 +04:00
|
|
|
// If this is a folder being renamed, call setTarget in case there are any database entries inside the folder
|
|
|
|
if (self::is_dir($path1)) {
|
2011-07-31 03:40:19 +04:00
|
|
|
OC_Share::setTarget($oldTarget, $newTarget);
|
2011-07-31 00:03:32 +04:00
|
|
|
}
|
2011-07-16 22:29:22 +04:00
|
|
|
}
|
2011-07-31 22:48:23 +04:00
|
|
|
$this->clearFolderSizeCache($this->getInternalPath($oldTarget));
|
|
|
|
$this->clearFolderSizeCache($this->getInternalPath($newTarget));
|
2011-07-31 23:02:59 +04:00
|
|
|
return true;
|
2011-07-15 03:24:48 +04:00
|
|
|
}
|
2011-06-16 22:40:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function copy($path1, $path2) {
|
2011-07-13 23:27:16 +04:00
|
|
|
if ($path2 == "" || $path2 == "/") {
|
|
|
|
// TODO Construct new shared item or should this not be allowed?
|
|
|
|
} else {
|
2011-07-31 00:03:32 +04:00
|
|
|
if ($this->is_writeable($path2)) {
|
2011-07-13 23:27:16 +04:00
|
|
|
$tmpFile = $this->toTmpFile($path1);
|
|
|
|
return $this->fromTmpFile($tmpFile, $path2);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-13 23:27:16 +04:00
|
|
|
public function fromTmpFile($tmpFile, $path) {
|
|
|
|
if ($this->is_writeable($path)) {
|
|
|
|
$source = $this->getSource($path);
|
|
|
|
if ($source) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
2011-07-13 23:27:16 +04:00
|
|
|
return $storage->fromTmpFile($tmpFile, $this->getInternalPath($source));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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-07-31 23:02:59 +04:00
|
|
|
$target = $this->datadir.$path;
|
|
|
|
if (OC_Share::getPermissions($target) & OC_Share::DELETE) {
|
|
|
|
$source = $this->getSource($path);
|
|
|
|
if ($source) {
|
|
|
|
$storage = OC_Filesystem::getStorage($source);
|
|
|
|
return $storage->delTree($this->getInternalPath($source));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Check if the folder is inside a shared folder
|
|
|
|
if (OC_Share::getParentFolders($target)) {
|
|
|
|
// If entry for folder already exists
|
|
|
|
if (OC_Share::getItem($target)) {
|
|
|
|
OC_Share::setTarget($target, "/");
|
|
|
|
} else {
|
|
|
|
OC_Share::pullOutOfFolder($target, "/");
|
|
|
|
// Call setTarget in case there are any database entries for items inside this folder
|
|
|
|
OC_Share::setTarget($target, "/");
|
|
|
|
}
|
|
|
|
// Delete the database entry
|
|
|
|
} else {
|
|
|
|
OC_Share::unshareFromMySelf($target);
|
|
|
|
}
|
|
|
|
$this->clearFolderSizeCache($this->getInternalPath($target));
|
|
|
|
return true;
|
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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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) {
|
2011-07-31 03:40:19 +04:00
|
|
|
$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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|