2010-05-08 00:50:59 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2011-02-09 17:50:27 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-05-08 00:50:59 +04:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for abstraction of filesystem functions
|
2011-07-29 23:36:03 +04:00
|
|
|
* This class won't call any filesystem functions for itself but but will pass them to the correct OC_Filestorage object
|
2010-05-08 00:50:59 +04:00
|
|
|
* this class should also handle all the file premission related stuff
|
2011-04-18 14:16:47 +04:00
|
|
|
*
|
|
|
|
* Hooks provided:
|
|
|
|
* read(path)
|
2011-06-17 00:44:16 +04:00
|
|
|
* write(path, &run)
|
2011-06-20 00:23:05 +04:00
|
|
|
* post_write(path)
|
2011-06-17 00:44:16 +04:00
|
|
|
* create(path, &run) (when a file is created, both create and write will be emited in that order)
|
2011-06-20 00:23:05 +04:00
|
|
|
* post_create(path)
|
2011-06-17 00:44:16 +04:00
|
|
|
* delete(path, &run)
|
2011-06-20 00:23:05 +04:00
|
|
|
* post_delete(path)
|
2011-06-17 00:44:16 +04:00
|
|
|
* rename(oldpath,newpath, &run)
|
2011-06-20 00:23:05 +04:00
|
|
|
* post_rename(oldpath,newpath)
|
2011-06-17 00:44:16 +04:00
|
|
|
* copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emited in that order)
|
2011-06-20 00:23:05 +04:00
|
|
|
* post_rename(oldpath,newpath)
|
2011-06-17 00:44:16 +04:00
|
|
|
*
|
|
|
|
* the &run parameter can be set to false to prevent the operation from occuring
|
2010-05-08 00:50:59 +04:00
|
|
|
*/
|
2011-11-09 21:41:57 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
class OC_Filesystem{
|
2010-05-08 00:50:59 +04:00
|
|
|
static private $storages=array();
|
2011-10-18 23:01:49 +04:00
|
|
|
static private $mounts=array();
|
2010-09-06 22:02:17 +04:00
|
|
|
static private $storageTypes=array();
|
2012-01-31 15:44:01 +04:00
|
|
|
public static $loaded=false;
|
2012-01-20 03:40:52 +04:00
|
|
|
private $fakeRoot='';
|
|
|
|
static private $defaultInstance;
|
|
|
|
|
2012-01-15 02:12:32 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* classname which used for hooks handling
|
|
|
|
* used as signalclass in OC_Hooks::emit()
|
|
|
|
*/
|
|
|
|
const CLASSNAME = 'OC_Filesystem';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signalname emited before file renaming
|
|
|
|
* @param oldpath
|
|
|
|
* @param newpath
|
|
|
|
*/
|
|
|
|
const signal_rename = 'rename';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emited after file renaming
|
|
|
|
* @param oldpath
|
|
|
|
* @param newpath
|
|
|
|
*/
|
|
|
|
const signal_post_rename = 'post_rename';
|
2010-09-06 22:02:17 +04:00
|
|
|
|
2012-01-15 02:12:32 +04:00
|
|
|
/**
|
|
|
|
* signal emited before file/dir creation
|
|
|
|
* @param path
|
|
|
|
* @param run changing this flag to false in hook handler will cancel event
|
|
|
|
*/
|
|
|
|
const signal_create = 'create';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emited after file/dir creation
|
|
|
|
* @param path
|
|
|
|
* @param run changing this flag to false in hook handler will cancel event
|
|
|
|
*/
|
|
|
|
const signal_post_create = 'post_create';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emits before file/dir copy
|
|
|
|
* @param oldpath
|
|
|
|
* @param newpath
|
|
|
|
* @param run changing this flag to false in hook handler will cancel event
|
|
|
|
*/
|
|
|
|
const signal_copy = 'copy';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emits after file/dir copy
|
|
|
|
* @param oldpath
|
|
|
|
* @param newpath
|
|
|
|
*/
|
|
|
|
const signal_post_copy = 'post_copy';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emits before file/dir save
|
|
|
|
* @param path
|
|
|
|
* @param run changing this flag to false in hook handler will cancel event
|
|
|
|
*/
|
|
|
|
const signal_write = 'write';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emits after file/dir save
|
|
|
|
* @param path
|
|
|
|
*/
|
|
|
|
const signal_post_write = 'post_write';
|
2010-09-06 22:02:17 +04:00
|
|
|
|
2012-01-15 02:12:32 +04:00
|
|
|
/**
|
|
|
|
* signal emits when reading file/dir
|
|
|
|
* @param path
|
|
|
|
*/
|
|
|
|
const signal_read = 'read';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* signal emits when removing file/dir
|
|
|
|
* @param path
|
|
|
|
*/
|
|
|
|
const signal_delete = 'delete';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* parameters definitions for signals
|
|
|
|
*/
|
|
|
|
const signal_param_path = 'path';
|
|
|
|
const signal_param_oldpath = 'oldpath';
|
|
|
|
const signal_param_newpath = 'newpath';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* run - changing this flag to false in hook handler will cancel event
|
|
|
|
*/
|
|
|
|
const signal_param_run = 'run';
|
2012-01-20 03:40:52 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the mountpoint of the storage object for a path
|
|
|
|
( note: because a storage is not always mounted inside the fakeroot, the returned mountpoint is relative to the absolute root of the filesystem and doesn't take the chroot into account
|
|
|
|
*
|
|
|
|
* @param string path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
static public function getMountPoint($path){
|
2012-03-03 21:02:07 +04:00
|
|
|
OC_Hook::emit(self::CLASSNAME,'get_mountpoint',array('path'=>$path));
|
2012-01-20 03:40:52 +04:00
|
|
|
if(!$path){
|
|
|
|
$path='/';
|
|
|
|
}
|
|
|
|
if(substr($path,0,1)!=='/'){
|
|
|
|
$path='/'.$path;
|
|
|
|
}
|
|
|
|
$foundMountPoint='';
|
|
|
|
foreach(OC_Filesystem::$mounts as $mountpoint=>$storage){
|
|
|
|
if($mountpoint==$path){
|
|
|
|
return $mountpoint;
|
|
|
|
}
|
|
|
|
if(strpos($path,$mountpoint)===0 and strlen($mountpoint)>strlen($foundMountPoint)){
|
|
|
|
$foundMountPoint=$mountpoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $foundMountPoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the part of the path relative to the mountpoint of the storage it's stored in
|
|
|
|
* @param string path
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
static public function getInternalPath($path){
|
|
|
|
$mountPoint=self::getMountPoint($path);
|
|
|
|
$internalPath=substr($path,strlen($mountPoint));
|
|
|
|
return $internalPath;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get the storage object for a path
|
|
|
|
* @param string path
|
|
|
|
* @return OC_Filestorage
|
|
|
|
*/
|
|
|
|
static public function getStorage($path){
|
|
|
|
$mountpoint=self::getMountPoint($path);
|
|
|
|
if($mountpoint){
|
|
|
|
if(!isset(OC_Filesystem::$storages[$mountpoint])){
|
|
|
|
$mount=OC_Filesystem::$mounts[$mountpoint];
|
|
|
|
OC_Filesystem::$storages[$mountpoint]=OC_Filesystem::createStorage($mount['class'],$mount['arguments']);
|
|
|
|
}
|
|
|
|
return OC_Filesystem::$storages[$mountpoint];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static public function init($root){
|
|
|
|
if(self::$defaultInstance){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
self::$defaultInstance=new OC_FilesystemView($root);
|
2012-01-31 15:44:01 +04:00
|
|
|
self::$loaded=true;
|
2012-01-20 03:40:52 +04:00
|
|
|
}
|
2012-02-05 04:25:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the default filesystem view
|
|
|
|
* @return OC_FilesystemView
|
|
|
|
*/
|
|
|
|
static public function getView(){
|
|
|
|
return self::$defaultInstance;
|
|
|
|
}
|
2010-09-06 22:02:17 +04:00
|
|
|
|
2011-06-12 02:57:43 +04:00
|
|
|
/**
|
|
|
|
* tear down the filesystem, removing all storage providers
|
|
|
|
*/
|
|
|
|
static public function tearDown(){
|
|
|
|
foreach(self::$storages as $mountpoint=>$storage){
|
|
|
|
unset(self::$storages[$mountpoint]);
|
|
|
|
}
|
|
|
|
$fakeRoot='';
|
|
|
|
}
|
|
|
|
|
2010-09-06 22:02:17 +04:00
|
|
|
/**
|
|
|
|
* create a new storage of a specific type
|
|
|
|
* @param string type
|
|
|
|
* @param array arguments
|
2011-07-29 23:36:03 +04:00
|
|
|
* @return OC_Filestorage
|
2010-09-06 22:02:17 +04:00
|
|
|
*/
|
2011-11-09 01:21:25 +04:00
|
|
|
static private function createStorage($class,$arguments){
|
|
|
|
if(class_exists($class)){
|
|
|
|
return new $class($arguments);
|
2010-09-06 22:02:17 +04:00
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-09-02 22:47:15 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* change the root to a fake toor
|
|
|
|
* @param string fakeRoot
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
static public function chroot($fakeRoot){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->chroot($path);
|
2010-09-02 22:47:15 +04:00
|
|
|
}
|
2011-11-09 21:41:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the fake root
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
static public function getRoot(){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->getRoot();
|
2010-09-02 22:47:15 +04:00
|
|
|
}
|
2012-01-20 03:40:52 +04:00
|
|
|
|
2010-05-08 00:50:59 +04:00
|
|
|
/**
|
2011-07-29 23:36:03 +04:00
|
|
|
* mount an OC_Filestorage in our virtual filesystem
|
|
|
|
* @param OC_Filestorage storage
|
2010-05-08 00:50:59 +04:00
|
|
|
* @param string mountpoint
|
|
|
|
*/
|
2011-11-09 01:21:25 +04:00
|
|
|
static public function mount($class,$arguments,$mountpoint){
|
2012-03-03 21:02:07 +04:00
|
|
|
if(substr($mountpoint,-1)!=='/'){
|
|
|
|
$mountpoint=$mountpoint.'/';
|
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
if(substr($mountpoint,0,1)!=='/'){
|
|
|
|
$mountpoint='/'.$mountpoint;
|
|
|
|
}
|
2011-11-09 01:21:25 +04:00
|
|
|
self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2012-01-26 20:56:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* create all storage backends mounted in the filesystem
|
|
|
|
*/
|
|
|
|
static private function mountAll(){
|
|
|
|
foreach(self::$mounts as $mountPoint=>$mount){
|
|
|
|
if(!isset(self::$storages[$mountPoint])){
|
|
|
|
self::$storages[$mountPoint]=self::createStorage($mount['type'],$mount['arguments']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
|
2011-04-22 19:50:04 +04:00
|
|
|
/**
|
|
|
|
* return the path to a local version of the file
|
|
|
|
* we need this because we can't know if a file is stored local or not from outside the filestorage and for some purposes a local file is needed
|
|
|
|
* @param string path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
static public function getLocalFile($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->getLocalFile($path);
|
2011-04-22 19:50:04 +04:00
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
|
2012-01-02 19:38:10 +04:00
|
|
|
/**
|
|
|
|
* check if the requested path is valid
|
|
|
|
* @param string path
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
static public function isValidPath($path){
|
|
|
|
if(substr($path,0,1)!=='/'){
|
|
|
|
$path='/'.$path;
|
|
|
|
}
|
|
|
|
if(strstr($path,'/../') || strrchr($path, '/') === '/..' ){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-11-09 01:36:05 +04:00
|
|
|
/**
|
|
|
|
* following functions are equivilent to their php buildin equivilents for arguments/return values.
|
|
|
|
*/
|
2010-05-08 00:50:59 +04:00
|
|
|
static public function mkdir($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->mkdir($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function rmdir($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->rmdir($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function opendir($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->opendir($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function is_dir($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->is_dir($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function is_file($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->is_file($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function stat($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->stat($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function filetype($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->filetype($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function filesize($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->filesize($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function readfile($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->readfile($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function is_readable($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->is_readable($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2012-02-05 17:00:49 +04:00
|
|
|
static public function is_writable($path){
|
|
|
|
return self::$defaultInstance->is_writable($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function file_exists($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->file_exists($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function filectime($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->filectime($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function filemtime($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->filemtime($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2012-03-01 02:42:40 +04:00
|
|
|
static public function touch($path, $mtime=null){
|
2012-02-14 12:59:54 +04:00
|
|
|
return self::$defaultInstance->touch($path, $mtime);
|
2012-02-10 14:30:38 +04:00
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
static public function file_get_contents($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->file_get_contents($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2010-07-07 14:30:30 +04:00
|
|
|
static public function file_put_contents($path,$data){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->file_put_contents($path,$data);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function unlink($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->unlink($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function rename($path1,$path2){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->rename($path1,$path2);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function copy($path1,$path2){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->copy($path1,$path2);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function fopen($path,$mode){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->fopen($path,$mode);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function toTmpFile($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->toTmpFile($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
|
|
|
static public function fromTmpFile($tmpFile,$path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->fromTmpFile($tmpFile,$path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2012-01-16 17:36:11 +04:00
|
|
|
|
2010-05-08 00:50:59 +04:00
|
|
|
static public function getMimeType($path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->getMimeType($path);
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2011-08-15 22:37:50 +04:00
|
|
|
static public function hash($type,$path){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->hash($type,$path);
|
2011-03-16 19:28:01 +03:00
|
|
|
}
|
2011-04-17 18:40:44 +04:00
|
|
|
|
|
|
|
static public function free_space($path='/'){
|
2012-01-20 03:40:52 +04:00
|
|
|
return self::$defaultInstance->free_space($path);
|
2011-04-17 18:40:44 +04:00
|
|
|
}
|
2011-04-24 18:09:07 +04:00
|
|
|
|
|
|
|
static public function search($query){
|
2012-01-31 19:12:49 +04:00
|
|
|
return OC_FileCache::search($query);
|
2011-08-15 22:37:50 +04:00
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2011-11-10 19:53:08 +04:00
|
|
|
|
|
|
|
require_once('filecache.php');
|