Newer
Older

Robin Appelman
committed
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*

Robin Appelman
committed
* 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

Robin Appelman
committed
* version 3 of the License, or any later version.

Robin Appelman
committed
* 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

Robin Appelman
committed
* License along with this library. If not, see <http://www.gnu.org/licenses/>.

Robin Appelman
committed
*/
/**
* Class for abstraction of filesystem functions
* This class won't call any filesystem functions for itself but but will pass them to the correct OC_Filestorage object
* this class should also handle all the file permission related stuff
*
* Hooks provided:
* read(path)
* write(path, &run)
* post_write(path)
* create(path, &run) (when a file is created, both create and write will be emited in that order)
* post_create(path)
* delete(path, &run)
* post_delete(path)
* rename(oldpath,newpath, &run)
* post_rename(oldpath,newpath)
* copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emited in that order)
* post_rename(oldpath,newpath)
*
* the &run parameter can be set to false to prevent the operation from occuring

Robin Appelman
committed
*/

Robin Appelman
committed
static private $storages=array();
static private $loadedUsers=array();
public static $loaded=false;
/**
* @var OC_Filestorage $defaultInstance
*/
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
* 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';
/**
* 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';
/**
* 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';
/**
* 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) {
OC_Hook::emit(self::CLASSNAME, 'get_mountpoint', array('path'=>$path));
foreach($mountPoints as $mountpoint) {
if($mountpoint==$path) {
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) {
$internalPath=substr($path, strlen($mountPoint));
static private function mountPointsLoaded($user) {
return in_array($user, self::$loadedUsers);
}
/**
* get the storage object for a path
* @param string path
* @return OC_Filestorage
*/
$user = ltrim(substr($path, 0, strpos($path, '/', 1)), '/');
// check mount points if file was shared from a different user
if ($user != OC_User::getUser() && !self::mountPointsLoaded($user)) {
OC_Util::loadUserMountPoints($user);
self::loadSystemMountPoints($user);
self::$loadedUsers[] = $user;
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 private function loadSystemMountPoints($user) {
if(is_file(OC::$SERVERROOT.'/config/mount.php')) {
$mountConfig=include OC::$SERVERROOT.'/config/mount.php';
if(isset($mountConfig['global'])) {
foreach($mountConfig['global'] as $mountPoint=>$options) {
self::mount($options['class'], $options['options'], $mountPoint);
}
}
if(isset($mountConfig['group'])) {
foreach($mountConfig['group'] as $group=>$mounts) {
foreach($mounts as $mountPoint=>$options) {
$mountPoint=self::setUserVars($mountPoint, $user);
foreach($options as &$option) {
$option=self::setUserVars($option, $user);
}
self::mount($options['class'], $options['options'], $mountPoint);
}
}
}
}
if(isset($mountConfig['user'])) {
foreach($mountConfig['user'] as $user=>$mounts) {
if($user==='all' or strtolower($user)===strtolower($user)) {
foreach($mounts as $mountPoint=>$options) {
$mountPoint=self::setUserVars($mountPoint, $user);
foreach($options as &$option) {
$option=self::setUserVars($option, $user);
}
self::mount($options['class'], $options['options'], $mountPoint);
}
}
}
}
$mtime=filemtime(OC::$SERVERROOT.'/config/mount.php');
$previousMTime=OC_Appconfig::getValue('files','mountconfigmtime',0);
if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated
OC_FileCache::triggerUpdate();
OC_Appconfig::setValue('files', 'mountconfigmtime', $mtime);
}
}
}

Björn Schießle
committed
static public function init($root, $user = '') {
return false;
}
self::$defaultInstance=new OC_FilesystemView($root);

Björn Schießle
committed
if (!isset($user)) {
$user = OC_User::getUser();
}
self::loadSystemMountPoints($user);
self::$loaded=true;
/**
* fill in the correct values for $user, and $password placeholders
* @param string intput
* @return string
*/
private static function setUserVars($input, $user) {
if (isset($user)) {
} else {
return str_replace('$user', OC_User::getUser(), $input);
}
/**
* get the default filesystem view
* @return OC_FilesystemView
*/
return self::$defaultInstance;
}
/**
* tear down the filesystem, removing all storage providers
*/
/**
* create a new storage of a specific type
* @param string type
* @param array arguments
static private function createStorage($class,$arguments) {
if(class_exists($class)) {
try {
return new $class($arguments);
} catch (Exception $exception) {
OC_Log::write('core', $exception->getMessage(), OC_Log::ERROR);
return false;
}
OC_Log::write('core','storage backend '.$class.' not found',OC_Log::ERROR);
return false;
}
}

Robin Appelman
committed
/**

Robin Appelman
committed
* @param string fakeRoot
* @return bool
*/

Robin Appelman
committed
}
* @brief get the relative path of the root data directory for the current user
*
* Returns path like /admin/files
return self::$defaultInstance->getRoot();

Robin Appelman
committed
}
/**
* clear all mounts and storage backends
*/
self::$mounts=array();
self::$storages=array();
}

Robin Appelman
committed
/**
* mount an OC_Filestorage in our virtual filesystem
* @param OC_Filestorage storage

Robin Appelman
committed
* @param string mountpoint
*/
static public function mount($class,$arguments,$mountpoint) {
if($mountpoint[0]!='/') {
$mountpoint='/'.$mountpoint;
}
$mountpoint=$mountpoint.'/';
}

Robin Appelman
committed
self::$mounts[$mountpoint]=array('class'=>$class,'arguments'=>$arguments);

Robin Appelman
committed
}
/**
* 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) {
return self::$defaultInstance->getLocalFile($path);
/**
* @param string path
* @return string
*/
static public function getLocalFolder($path) {
return self::$defaultInstance->getLocalFolder($path);
}
/**
* return path to file which reflects one visible in browser
* @param string path
* @return string
*/
static public function getLocalPath($path) {
$datadir = OC_User::getHome(OC_User::getUser()).'/files';
$newpath = $path;
if (strncmp($newpath, $datadir, strlen($datadir)) == 0) {
$newpath = substr($path, strlen($datadir));
}
return $newpath;
}
/**
* check if the requested path is valid
* @param string path
* @return bool
*/
static public function isValidPath($path) {
if(!$path || $path[0]!=='/') {
if(strstr($path, '/../') || strrchr($path, '/') === '/..' ) {
return false;
}
return true;
}
/**
* checks if a file is blacklsited for storage in the filesystem
* Listens to write and rename hooks
* @param array $data from hook
*/
static public function isBlacklisted($data) {
$blacklist = array('.htaccess');
if (isset($data['path'])) {
$path = $data['path'];
} else if (isset($data['newpath'])) {
$path = $data['newpath'];
}
if (isset($path)) {
$filename = strtolower(basename($path));
if (in_array($filename, $blacklist)) {
$data['run'] = false;
}
/**
* following functions are equivilent to their php buildin equivilents for arguments/return values.
*/
return self::$defaultInstance->mkdir($path);

Robin Appelman
committed
}
return self::$defaultInstance->rmdir($path);

Robin Appelman
committed
}
return self::$defaultInstance->opendir($path);

Robin Appelman
committed
}
return self::$defaultInstance->readdir($path);
}
return self::$defaultInstance->is_dir($path);

Robin Appelman
committed
}
return self::$defaultInstance->is_file($path);

Robin Appelman
committed
}
return self::$defaultInstance->stat($path);

Robin Appelman
committed
}
return self::$defaultInstance->filetype($path);

Robin Appelman
committed
}
return self::$defaultInstance->filesize($path);

Robin Appelman
committed
}
return self::$defaultInstance->readfile($path);

Robin Appelman
committed
}

Michael Gapczynski
committed
/**
* @deprecated Replaced by isReadable() as part of CRUDS
*/
return self::$defaultInstance->is_readable($path);

Robin Appelman
committed
}

Michael Gapczynski
committed
/**
* @deprecated Replaced by isCreatable(), isUpdatable(), isDeletable() as part of CRUDS
*/
return self::$defaultInstance->is_writable($path);

Robin Appelman
committed
}

Michael Gapczynski
committed
static public function isCreatable($path) {
return self::$defaultInstance->isCreatable($path);
}
static public function isReadable($path) {
return self::$defaultInstance->isReadable($path);
}
static public function isUpdatable($path) {
return self::$defaultInstance->isUpdatable($path);
}
static public function isDeletable($path) {
return self::$defaultInstance->isDeletable($path);
}
static public function isSharable($path) {
return self::$defaultInstance->isSharable($path);
}
return self::$defaultInstance->file_exists($path);

Robin Appelman
committed
}
return self::$defaultInstance->filectime($path);

Robin Appelman
committed
}
return self::$defaultInstance->filemtime($path);

Robin Appelman
committed
}
static public function touch($path, $mtime=null) {
return self::$defaultInstance->touch($path, $mtime);
static public function file_get_contents($path) {
return self::$defaultInstance->file_get_contents($path);

Robin Appelman
committed
}
static public function file_put_contents($path,$data) {
return self::$defaultInstance->file_put_contents($path, $data);

Robin Appelman
committed
}
return self::$defaultInstance->unlink($path);

Robin Appelman
committed
}
static public function rename($path1,$path2) {
return self::$defaultInstance->rename($path1, $path2);

Robin Appelman
committed
}
static public function copy($path1,$path2) {

Robin Appelman
committed
}

Robin Appelman
committed
}
return self::$defaultInstance->toTmpFile($path);

Robin Appelman
committed
}
static public function fromTmpFile($tmpFile,$path) {
return self::$defaultInstance->fromTmpFile($tmpFile, $path);

Robin Appelman
committed
}
return self::$defaultInstance->getMimeType($path);

Robin Appelman
committed
}
static public function hash($type,$path, $raw = false) {
return self::$defaultInstance->hash($type, $path, $raw);
static public function free_space($path='/') {
return self::$defaultInstance->free_space($path);
return OC_FileCache::search($query);
/**
* check if a file or folder has been updated since $time
* @param int $time
* @return bool
*/
static public function hasUpdated($path,$time) {
return self::$defaultInstance->hasUpdated($path, $time);

Björn Schießle
committed
static public function removeETagHook($params, $root = false) {
if (isset($params['path'])) {
$path=$params['path'];
} else {
$path=$params['oldpath'];
}
if ($root) { // reduce path to the required part of it (no 'username/files')
$fakeRootView = new OC_FilesystemView($root);
$count = 1;

Björn Schießle
committed
$path=str_replace(OC_App::getStorage("files")->getAbsolutePath(), "", $fakeRootView->getAbsolutePath($path), $count);

Björn Schießle
committed
}
$path = self::normalizePath($path);
OC_Connector_Sabre_Node::removeETagPropertyForPath($path);
/**
* normalize a path
* @param string path
* @param bool $stripTrailingSlash
* @return string
*/
public static function normalizePath($path,$stripTrailingSlash=true) {
if($path=='') {
$path='/'.$path;
}
//remove trainling slash
if($stripTrailingSlash and strlen($path)>1 and substr($path, -1, 1)==='/') {
$path=substr($path, 0, -1);
$path=Normalizer::normalize($path);
}
return $path;
}

Robin Appelman
committed
}
OC_Hook::connect('OC_Filesystem', 'post_write', 'OC_Filesystem', 'removeETagHook');
OC_Hook::connect('OC_Filesystem', 'post_delete', 'OC_Filesystem', 'removeETagHook');
OC_Hook::connect('OC_Filesystem', 'post_rename', 'OC_Filesystem', 'removeETagHook');