2016-06-08 16:25:44 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-06-09 19:03:31 +03:00
|
|
|
* @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
|
2016-06-08 16:25:44 +03:00
|
|
|
*
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-04-25 14:06:49 +03:00
|
|
|
* @author Roger Szabo <roger.szabo@web.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2016-06-08 16:25:44 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2016-06-09 19:03:31 +03:00
|
|
|
|
|
|
|
|
2016-06-08 16:25:44 +03:00
|
|
|
namespace OCA\Admin_Audit\Actions;
|
|
|
|
|
2016-06-09 19:03:31 +03:00
|
|
|
|
|
|
|
use OCA\Admin_Audit\Actions\Action;
|
|
|
|
use OCP\IGroup;
|
|
|
|
use OCP\IUser;
|
|
|
|
|
2016-06-08 16:25:44 +03:00
|
|
|
/**
|
2016-06-09 19:03:31 +03:00
|
|
|
* Class GroupManagement logs all group manager related events
|
2016-06-08 16:25:44 +03:00
|
|
|
*
|
2016-06-09 19:03:31 +03:00
|
|
|
* @package OCA\Admin_Audit
|
2016-06-08 16:25:44 +03:00
|
|
|
*/
|
2016-06-09 19:03:31 +03:00
|
|
|
class GroupManagement extends Action {
|
|
|
|
|
2016-06-08 16:25:44 +03:00
|
|
|
/**
|
2016-06-09 19:03:31 +03:00
|
|
|
* log add user to group event
|
2016-06-08 16:25:44 +03:00
|
|
|
*
|
2016-06-09 19:03:31 +03:00
|
|
|
* @param IGroup $group
|
|
|
|
* @param IUser $user
|
2016-06-08 16:25:44 +03:00
|
|
|
*/
|
2016-06-09 19:03:31 +03:00
|
|
|
public function addUser(IGroup $group, IUser $user) {
|
|
|
|
$this->log('User "%s" added to group "%s"',
|
|
|
|
[
|
|
|
|
'group' => $group->getGID(),
|
|
|
|
'user' => $user->getUID()
|
|
|
|
],
|
2016-06-08 16:25:44 +03:00
|
|
|
[
|
2016-06-09 19:03:31 +03:00
|
|
|
'user', 'group'
|
2016-06-08 16:25:44 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-06-09 19:03:31 +03:00
|
|
|
* log remove user from group event
|
2016-06-08 16:25:44 +03:00
|
|
|
*
|
2016-06-09 19:03:31 +03:00
|
|
|
* @param IGroup $group
|
|
|
|
* @param IUser $user
|
2016-06-08 16:25:44 +03:00
|
|
|
*/
|
2016-06-09 19:03:31 +03:00
|
|
|
public function removeUser(IGroup $group, IUser $user) {
|
|
|
|
$this->log('User "%s" removed from group "%s"',
|
2016-06-08 16:25:44 +03:00
|
|
|
[
|
2016-06-09 19:03:31 +03:00
|
|
|
'group' => $group->getGID(),
|
|
|
|
'user' => $user->getUID()
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'user', 'group'
|
2016-06-08 16:25:44 +03:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2017-04-25 14:06:49 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* log create group to group event
|
|
|
|
*
|
|
|
|
* @param IGroup $group
|
|
|
|
*/
|
|
|
|
public function createGroup(IGroup $group) {
|
|
|
|
$this->log('Group created: "%s"',
|
|
|
|
[
|
|
|
|
'group' => $group->getGID()
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'group'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2016-06-08 16:25:44 +03:00
|
|
|
|
2017-04-25 14:06:49 +03:00
|
|
|
/**
|
|
|
|
* log delete group to group event
|
|
|
|
*
|
|
|
|
* @param IGroup $group
|
|
|
|
*/
|
|
|
|
public function deleteGroup(IGroup $group) {
|
|
|
|
$this->log('Group deleted: "%s"',
|
|
|
|
[
|
|
|
|
'group' => $group->getGID()
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'group'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2016-06-08 16:25:44 +03:00
|
|
|
}
|