]> source.dussan.org Git - nextcloud-server.git/commitdiff
move hook to erase versions from deleted files to the right place
authorBjoern Schiessle <schiessle@owncloud.com>
Thu, 28 Jun 2012 10:42:47 +0000 (12:42 +0200)
committerBjoern Schiessle <schiessle@owncloud.com>
Thu, 28 Jun 2012 10:42:47 +0000 (12:42 +0200)
apps/files_archive/appinfo/app.php
apps/files_versions/appinfo/app.php
apps/files_versions/lib/hooks_handler.php [deleted file]
apps/files_versions/versions.php

index e6026670264281f982f1729e9c12c0569158dc34..67376c4a03acf913e9c254e07ba6b67196d952a5 100644 (file)
@@ -7,9 +7,7 @@
  */
 
 OC::$CLASSPATH['OC_Filestorage_Archive']='apps/files_archive/lib/storage.php';
-OC::$CLASSPATH['OC_Files_Versions_Hooks_Handler'] = 'files_versions/lib/hooks_handler.php';
 
 OCP\Util::connectHook('OC_Filesystem','get_mountpoint','OC_Filestorage_Archive','autoMount');
-OCP\Util::connectHook('OC_Filesystem', 'delete', "OC_Files_Versions_Hooks_Handler", "removeVersions");
 
 OCP\Util::addscript( 'files_archive', 'archive' );
index bd06dc0ced3c12b05a7e286039ffaa87d126e7cf..5a559c0c9629c09dfd75f911f83868d27122ba0d 100644 (file)
@@ -9,3 +9,5 @@ OCP\Util::addscript('files_versions', 'versions');
 
 // Listen to write signals
 OCP\Util::connectHook('OC_Filesystem', 'post_write', "OCA_Versions\Storage", "write_hook");
+// Listen to delete signals
+OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA_Versions\Storage", "removeVersions");
\ No newline at end of file
diff --git a/apps/files_versions/lib/hooks_handler.php b/apps/files_versions/lib/hooks_handler.php
deleted file mode 100644 (file)
index 4be2d1c..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-/**
-* ownCloud - hooks handler of the Versions app
-*
-* @author Bjoern Schiessle
-* @copyright 2012 Bjoern Schiessle schiessle@owncloud.com
-* 
-* 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.
-*      
-* You should have received a copy of the GNU Lesser General Public 
-* License along with this library. If not, see <http://www.gnu.org/licenses/>.
-* 
-*/
-
-class OC_Files_Versions_Hooks_Handler {
-
-       public static function removeVersions($params) {
-               $rel_path =  $params[OC_Filesystem::signal_param_path];
-               $abs_path = \OCP\Config::getSystemValue('datadirectory').'/'.\OC_User::getUser()."/versions".$rel_path;
-               if(OCA_Versions\Storage::isversioned($rel_path)) {
-                       $versions = OCA_Versions\Storage::getVersions($rel_path);
-                       foreach ($versions as $v){
-                                       unlink($abs_path.'.v' . $v['version']);
-                       }
-               }
-       }
-}
-
-?>
\ No newline at end of file
index 9c0829ff1dee8b2a067d5275aa95a651c048ae58..787de0f78ad1ef966aad98fb187251b39efec89f 100644 (file)
@@ -309,5 +309,17 @@ class Storage {
        
         }
 
-
+        /**\r
+         * @brief Erase versions of deleted file\r
+         */
+        public static function removeVersions($params) {\r
+               $rel_path =  $params[\OC_Filesystem::signal_param_path];\r
+               $abs_path = \OCP\Config::getSystemValue('datadirectory').'/'.\OC_User::getUser()."/versions".$rel_path.'.v';\r
+               if(Storage::isversioned($rel_path)) {\r
+                       $versions = Storage::getVersions($rel_path);\r
+                       foreach ($versions as $v){\r
+                               unlink($abs_path . $v['version']);\r
+                       }\r
+               }\r
+        }
 }