From e5de3dd94bce44b584937eed84710d275faaa760 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 16 Mar 2011 17:28:01 +0100 Subject: [PATCH] added OC_FILESYSTEM::hash() syntax is the same has http://www.php.net/manual/en/function.hash-file.php --- inc/lib_filestorage.php | 8 ++++++++ inc/lib_filesystem.php | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/inc/lib_filestorage.php b/inc/lib_filestorage.php index 45becf7c8f..68f232d3a6 100644 --- a/inc/lib_filestorage.php +++ b/inc/lib_filestorage.php @@ -73,6 +73,7 @@ class OC_FILESTORAGE{ public function delTree($path){} public function find($path){} public function getTree($path){} + public function hash($type,$path,$raw){} } @@ -432,5 +433,12 @@ class OC_FILESTORAGE_LOCAL extends OC_FILESTORAGE{ } return $tree; } + + public function hash($type,$path,$raw){ + if($return=hash_file($type,$this->datadir.$path,$raw)){ + $this->notifyObservers($path,OC_FILEACTION_READ); + } + return $return; + } } ?> \ No newline at end of file diff --git a/inc/lib_filesystem.php b/inc/lib_filesystem.php index 26a0066aa7..66da4fc314 100644 --- a/inc/lib_filesystem.php +++ b/inc/lib_filesystem.php @@ -376,5 +376,10 @@ class OC_FILESYSTEM{ return $return; } } + static public function hash($type,$path,$raw=false){ + if(self::canRead($path) and $storage=self::getStorage($path)){ + return $storage->hash($type,self::getInternalPath($path),$raw); + } + } } ?>