diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-08-26 17:30:07 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-08-26 17:30:07 +0200 |
commit | 72e9a2ce57ee88503db83614cec5ccda71f0b58e (patch) | |
tree | 8bc301ca22d9ca08ea54426bcb61f62bd1c1cb75 /apps/admin_audit/lib | |
parent | 32bad688bdb4fea55eba9d4255fc55f1c60a0aca (diff) | |
download | nextcloud-server-72e9a2ce57ee88503db83614cec5ccda71f0b58e.tar.gz nextcloud-server-72e9a2ce57ee88503db83614cec5ccda71f0b58e.zip |
moved to apps repository
Diffstat (limited to 'apps/admin_audit/lib')
-rw-r--r-- | apps/admin_audit/lib/hooks_handlers.php | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/apps/admin_audit/lib/hooks_handlers.php b/apps/admin_audit/lib/hooks_handlers.php deleted file mode 100644 index 17a553837da..00000000000 --- a/apps/admin_audit/lib/hooks_handlers.php +++ /dev/null @@ -1,73 +0,0 @@ -<?php - -class OC_Admin_Audit_Hooks_Handlers { - static public function pre_login($params) { - $path = $params['uid']; - self::log('Trying login '.$user); - } - static public function post_login($params) { - $path = $params['uid']; - self::log('Login '.$user); - } - static public function logout($params) { - $user = OCP\User::getUser(); - self::log('Logout '.$user); - } - - static public function rename($params) { - $oldpath = $params[OC_Filesystem::signal_param_oldpath]; - $newpath = $params[OC_Filesystem::signal_param_newpath]; - $user = OCP\User::getUser(); - self::log('Rename "'.$oldpath.'" to "'.$newpath.'" by '.$user); - } - static public function create($params) { - $path = $params[OC_Filesystem::signal_param_path]; - $user = OCP\User::getUser(); - self::log('Create "'.$path.'" by '.$user); - } - static public function copy($params) { - $oldpath = $params[OC_Filesystem::signal_param_oldpath]; - $newpath = $params[OC_Filesystem::signal_param_newpath]; - $user = OCP\User::getUser(); - self::log('Copy "'.$oldpath.'" to "'.$newpath.'" by '.$user); - } - static public function write($params) { - $path = $params[OC_Filesystem::signal_param_path]; - $user = OCP\User::getUser(); - self::log('Write "'.$path.'" by '.$user); - } - static public function read($params) { - $path = $params[OC_Filesystem::signal_param_path]; - $user = OCP\User::getUser(); - self::log('Read "'.$path.'" by '.$user); - } - static public function delete($params) { - $path = $params[OC_Filesystem::signal_param_path]; - $user = OCP\User::getUser(); - self::log('Delete "'.$path.'" by '.$user); - } - static public function share_public($params) { - $path = $params['source']; - $token = $params['token']; - $user = OCP\User::getUser(); - self::log('Shared "'.$path.'" with public, token="'.$token.'" by '.$user); - } - static public function share_public_download($params) { - $path = $params['source']; - $token = $params['token']; - $user = $_SERVER['REMOTE_ADDR']; - self::log('Download of shared "'.$path.'" token="'.$token.'" by '.$user); - } - static public function share_user($params) { - $path = $params['source']; - $permissions = $params['permissions']; - $with = $params['with']; - $user = OCP\User::getUser(); - //$rw = $permissions & OC_Share::WRITE ? 'w' : 'o'; //FIXME OC_Share no longer exists, hack to check permissions - $rw = $permissions & 1 ? 'w' : 'o'; - self::log('Shared "'.$path.'" (r'.$rw.') with user "'.$with.'" by '.$user); - } - static protected function log($msg) { - OCP\Util::writeLog('admin_audit', $msg, OCP\Util::INFO); - } -} |