. * */ 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 */ class OC_FILESTORAGE_SHARED extends OC_FILESTORAGE { private $datadir; private $sourcePaths = array(); public function __construct($arguments) { $this->datadir = $arguments['datadir']; } public function getInternalPath($path) { $mountPoint = OC_FILESYSTEM::getMountPoint($path); $internalPath = substr($path, strlen($mountPoint)); return $internalPath; } public function getSource($target) { $target = $this->datadir.$target; if (array_key_exists($target, $this->sourcePaths)) { return $this->sourcePaths[$target]; } else { $source = OC_SHARE::getSource($target); $this->sourcePaths[$target] = $source; return $source; } } public function mkdir($path) { if ($path == "" || $path == "/") { return false; } else { $source = $this->getSource($path); if ($source) { if (OC_SHARE::isWriteable($this->datadir.$path)) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->mkdir($this->getInternalPath($source)); } } } } public function rmdir($path) { // The folder will be removed from the database, but won't be deleted from the owner's filesystem OC_SHARE::unshareFromSelf($this->datadir.$path); } // TODO Make sure new target is still in the current directory public function opendir($path) { if ($path == "" || $path == "/") { global $FAKEDIRS; $sharedItems = OC_SHARE::getItemsSharedWith(); foreach ($sharedItems as $item) { // TODO Implement a better fix $files[] = substr($item['target'], strpos($item['target'], "Share") + 5); } $FAKEDIRS['shared'] = $files; return opendir('fakedir://shared'); } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); $dh = $storage->opendir($this->getInternalPath($source)); $modifiedItems = OC_SHARE::getSharedFilesIn($source); if ($modifiedItems && $dh) { global $FAKEDIRS; $sources = array(); $targets = array(); foreach ($modifiedItems as $item) { $sources[] = basename($item['source']); $targets[] = basename($item['target']); } while (($filename = readdir($dh)) !== false) { if ($filename != "." && $filename != "..") { if (!in_array($filename, $sources)) { $files[] = $filename; } else { $files[] = $targets[array_search($filename, $sources)]; } } } $FAKEDIRS['shared'] = $files; return opendir('fakedir://shared'); } else { return $dh; } } } } public function is_dir($path) { if ($path == "" || $path == "/") { return true; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->is_dir($this->getInternalPath($source)); } } } public function is_file($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->is_file($this->getInternalPath($source)); } } // TODO fill in other components of array public function stat($path) { if ($path == "" || $path == "/") { $stat["dev"] = ""; $stat["ino"] = ""; $stat["mode"] = ""; $stat["nlink"] = ""; $stat["uid"] = ""; $stat["gid"] = ""; $stat["rdev"] = ""; $stat["size"] = $this->filesize($path); $stat["atime"] = $this->fileatime($path); $stat["mtime"] = $this->filemtime($path); $stat["ctime"] = $this->filectime($path); $stat["blksize"] = ""; $stat["blocks"] = ""; return $stat; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->stat($this->getInternalPath($source)); } } } public function filetype($path) { if ($path == "" || $path == "/") { return "dir"; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->filetype($this->getInternalPath($source)); } } } public function filesize($path) { if ($path == "" || $path == "/" || $this->is_dir($path)) { return $this->getFolderSize($path); } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->filesize($this->getInternalPath($source)); } } } public function getFolderSize($path) { if ($path == "" || $path == "/") { $dbpath = $_SESSION['user_id']."/files/Share/"; } else { $source = $this->getSource($path); $dbpath = $this->getInternalPath($source); } $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) { if ($this->is_file($path)) { $path = dirname($path); } $path = str_replace("//", "/", $path); if ($this->is_dir($path) && substr($path, -1) != "/") { $path .= "/"; } $size = 0; if ($dh = $this->opendir($path)) { 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); } } } if ($size > 0) { if ($path == "" || $path == "/") { $dbpath = $_SESSION['user_id']."/files/Share/"; } else { $source = $this->getSource($path); $dbpath = $this->getInternalPath($source); } $query = OC_DB::prepare("INSERT INTO *PREFIX*foldersize VALUES(?,?)"); $result = $query->execute(array($dbpath, $size)); } } return $size; } public function is_readable($path) { return true; } public function is_writeable($path) { if ($path == "" || $path == "/") { return true; } else { return OC_SHARE::isWriteable($this->datadir.$path); } } public function file_exists($path) { if ($path == "" || $path == "/") { return true; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->file_exists($this->getInternalPath($source)); } } } public function readfile($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->readfile($this->getInternalPath($source)); } } public function filectime($path) { if ($path == "" || $path == "/") { $ctime = 0; $dir = $this->opendir($path); while (($filename = readdir($dir)) != false) { $tempctime = $this->filectime($filename); if ($tempctime < $ctime) { $ctime = $tempctime; } } return $ctime; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->filectime($this->getInternalPath($source)); } } } public function filemtime($path) { if ($path == "" || $path == "/") { $mtime = 0; $dir = $this->opendir($path); while (($filename = readdir($dir)) != false) { $tempmtime = $this->filemtime($filename); if ($tempmtime > $mtime) { $mtime = $tempmtime; } } return $mtime; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->filemtime($this->getInternalPath($source)); } } } public function fileatime($path) { if ($path == "" || $path == "/") { $atime = 0; $dir = $this->opendir($path); while (($filename = readdir($dir)) != false) { $tempatime = $this->fileatime($filename); if ($tempatime > $atime) { $atime = $tempatime; } } return $atime; } else { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->fileatime($this->getInternalPath($source)); } } } public function file_get_contents($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->file_get_contents($this->getInternalPath($source)); } } // TODO OC_SHARE::getPermissions() public function file_put_contents($path, $data) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->file_put_contents($this->getInternalPath($source), $data); } } public function unlink($path) { // The file will be removed from the database, but won't be deleted from the owner's filesystem OC_SHARE::unshareFromSelf($this->datadir.$path); } public function rename($path1, $path2) { OC_SHARE::setTarget($this->datadir.$path1, $this->datadir.$path2); } public function copy($path1, $path2) { if ($path2 == "" || $path2 == "/") { // TODO Construct new shared item or should this not be allowed? } else { if ($this->is_writeable($path)) { $tmpFile = $this->toTmpFile($path1); return $this->fromTmpFile($tmpFile, $path2); } else { return false; } } } public function fopen($path, $mode) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->fopen($this->getInternalPath($source), $mode); } } public function toTmpFile($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->toTmpFile($this->getInternalPath($source)); } } public function fromTmpFile($tmpFile, $path) { if ($this->is_writeable($path)) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->fromTmpFile($tmpFile, $this->getInternalPath($source)); } } else { return false; } } public function fromUploadedFile($tmpPath, $path) { $source = $this->getSource($tmpPath); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->fromUploadedFile($this->getInternalPath($source), $path); } } public function getMimeType($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->getMimeType($this->getInternalPath($source)); } } public function delTree($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->delTree($this->getInternalPath($source)); } } public function find($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->find($this->getInternalPath($source)); } } public function getTree($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->getTree($this->getInternalPath($source)); } } public function hash($type, $path, $raw) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->hash($type, $this->getInternalPath($source), $raw); } } public function free_space($path) { $source = $this->getSource($path); if ($source) { $storage = OC_FILESYSTEM::getStorage($source); return $storage->free_space($this->getInternalPath($source)); } } // TODO query all shared files? public function search($query) { } } ?>