diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-08-01 12:35:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-01 12:35:26 +0200 |
commit | edf9dee6913eae405ae0833b0e952f1d835b455d (patch) | |
tree | 4b3a11890292fb648c9d9ee3d94ee502666efa39 | |
parent | 2e2d1b6b5c4976a7c5fa999f4950fe9a24f6b173 (diff) | |
parent | 07d2f687863dd93315f081f775112159ee0ce92a (diff) | |
download | nextcloud-server-edf9dee6913eae405ae0833b0e952f1d835b455d.tar.gz nextcloud-server-edf9dee6913eae405ae0833b0e952f1d835b455d.zip |
Merge pull request #16586 from nextcloud/feature/16585_adminAuditShareCirclesRemotel/wiswedel
log circles and remote shares in admin_audit
-rw-r--r-- | apps/admin_audit/lib/Actions/Sharing.php | 79 |
1 files changed, 77 insertions, 2 deletions
diff --git a/apps/admin_audit/lib/Actions/Sharing.php b/apps/admin_audit/lib/Actions/Sharing.php index dea13e21c7e..e3ce0c41481 100644 --- a/apps/admin_audit/lib/Actions/Sharing.php +++ b/apps/admin_audit/lib/Actions/Sharing.php @@ -103,7 +103,46 @@ class Sharing extends Action { 'permissions', 'id', ] - ); + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_CIRCLE) { + $this->log( + 'The %s "%s" with ID "%s" has been shared to the circle "%s" with permissions "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'itemTarget', + 'itemSource', + 'shareWith', + 'permissions', + 'id', + ] + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_REMOTE) { + $this->log( + 'The %s "%s" with ID "%s" has been shared to the remote user "%s" with permissions "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'itemTarget', + 'itemSource', + 'shareWith', + 'permissions', + 'id', + ] + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_REMOTE_GROUP) { + $this->log( + 'The %s "%s" with ID "%s" has been shared to the remote group "%s" with permissions "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'itemTarget', + 'itemSource', + 'shareWith', + 'permissions', + 'id', + ] + ); } } @@ -171,7 +210,43 @@ class Sharing extends Action { 'shareWith', 'id', ] - ); + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_CIRCLE) { + $this->log( + 'The %s "%s" with ID "%s" has been unshared from the circle "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'fileTarget', + 'itemSource', + 'shareWith', + 'id', + ] + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_REMOTE) { + $this->log( + 'The %s "%s" with ID "%s" has been unshared from the remote user "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'fileTarget', + 'itemSource', + 'shareWith', + 'id', + ] + ); + } elseif($params['shareType'] === Share::SHARE_TYPE_REMOTE_GROUP) { + $this->log( + 'The %s "%s" with ID "%s" has been unshared from the remote group "%s" (Share ID: %s)', + $params, + [ + 'itemType', + 'fileTarget', + 'itemSource', + 'shareWith', + 'id', + ] + ); } } |