remove some debug output; move code to the right function

This commit is contained in:
Björn Schießle 2013-03-08 11:27:25 +01:00
parent 45869afa5a
commit 8d26400cb5
3 changed files with 9 additions and 7 deletions

View File

@ -21,12 +21,6 @@ class Hooks {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
$path = $params[\OC\Files\Filesystem::signal_param_path];
$pos = strrpos($path, '.part');
if ($pos) {
error_log("old path: $path");
$path = substr($path, 0, $pos);
error_log("new path: $path");
}
if($path<>'') {
Storage::store($path);
}

View File

@ -82,6 +82,14 @@ class Storage {
*/
public static function store($filename) {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
// if the file gets streamed we need to remove the .part extension
// to get the right target
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if ($ext === 'part') {
$filename = substr($filename, 0, strlen($filename)-5);
}
list($uid, $filename) = self::getUidAndFilename($filename);
$files_view = new \OC\Files\View('/'.$uid .'/files');

View File

@ -603,7 +603,7 @@ class View {
if ($path == null) {
return false;
}
foreach ($hooks as $h) if ($h == "write") error_log("write triggered by $operation for $path");
$run = $this->runHooks($hooks, $path);
list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix);
if ($run and $storage) {