Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-03-20 00:56:07 +0400
committerBart Visscher <bartv@thisnet.nl>2012-05-07 11:04:07 +0400
commit640ba1828f3edfdd2e71825828c51b734fb19d1c (patch)
tree065a68d3f08615144eb2b6a1d8b8494b867874b7 /apps/admin_audit/lib
parent2488cdb8a1066fa7561489dcea687a5bfae936fd (diff)
Start of audit app
Audit the filesystem action
Diffstat (limited to 'apps/admin_audit/lib')
-rw-r--r--apps/admin_audit/lib/hooks_handlers.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/admin_audit/lib/hooks_handlers.php b/apps/admin_audit/lib/hooks_handlers.php
new file mode 100644
index 00000000000..924878840a2
--- /dev/null
+++ b/apps/admin_audit/lib/hooks_handlers.php
@@ -0,0 +1,36 @@
+<?php
+
+class OC_Admin_Audit_Hooks_Handlers {
+ static public function rename($params) {
+ $oldpath = $params[OC_Filesystem::signal_param_oldpath];
+ $newpath = $params[OC_Filesystem::signal_param_newpath];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Rename "'.$oldpath.'" to "'.$newpath.'" by '.$user, OCP\Util::INFO);
+ }
+ static public function create($params) {
+ $path = $params[OC_Filesystem::signal_param_path];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Create "'.$path.'" by '.$user, OCP\Util::INFO);
+ }
+ static public function copy($params) {
+ $oldpath = $params[OC_Filesystem::signal_param_oldpath];
+ $newpath = $params[OC_Filesystem::signal_param_newpath];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Copy "'.$oldpath.'" to "'.$newpath.'" by '.$user, OCP\Util::INFO);
+ }
+ static public function write($params) {
+ $path = $params[OC_Filesystem::signal_param_path];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Write "'.$path.'" by '.$user, OCP\Util::INFO);
+ }
+ static public function read($params) {
+ $path = $params[OC_Filesystem::signal_param_path];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Read "'.$path.'" by '.$user, OCP\Util::INFO);
+ }
+ static public function delete($params) {
+ $path = $params[OC_Filesystem::signal_param_path];
+ $user = OCP\User::getUser();
+ OCP\Util::writeLog('admin_audit', 'Delete "'.$path.'" by '.$user, OCP\Util::INFO);
+ }
+}