2016-06-09 19:03:31 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-03-10 21:40:19 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-06-09 19:03:31 +03:00
|
|
|
/**
|
2017-07-01 12:28:03 +03:00
|
|
|
* @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author GrayFix <grayfix@gmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Tiago Flores <tiago.flores@yahoo.com.br>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2016-06-09 19:03:31 +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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-09 19:03:31 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-07-01 12:28:03 +03:00
|
|
|
namespace OCA\AdminAudit\AppInfo;
|
2016-06-09 19:03:31 +03:00
|
|
|
|
2020-06-29 17:09:58 +03:00
|
|
|
use Closure;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OC\Files\Filesystem;
|
|
|
|
use OC\Files\Node\File;
|
2020-07-08 14:49:11 +03:00
|
|
|
use OC\Group\Manager as GroupManager;
|
|
|
|
use OC\User\Session as UserSession;
|
2017-07-01 13:06:14 +03:00
|
|
|
use OCA\AdminAudit\Actions\AppManagement;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCA\AdminAudit\Actions\Auth;
|
2017-07-01 13:19:01 +03:00
|
|
|
use OCA\AdminAudit\Actions\Console;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCA\AdminAudit\Actions\Files;
|
|
|
|
use OCA\AdminAudit\Actions\GroupManagement;
|
2018-01-17 16:51:03 +03:00
|
|
|
use OCA\AdminAudit\Actions\Security;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCA\AdminAudit\Actions\Sharing;
|
|
|
|
use OCA\AdminAudit\Actions\Trashbin;
|
|
|
|
use OCA\AdminAudit\Actions\UserManagement;
|
|
|
|
use OCA\AdminAudit\Actions\Versions;
|
2017-07-01 13:06:14 +03:00
|
|
|
use OCP\App\ManagerEvent;
|
2017-07-01 12:28:03 +03:00
|
|
|
use OCP\AppFramework\App;
|
2020-06-08 19:43:16 +03:00
|
|
|
use OCP\AppFramework\Bootstrap\IBootContext;
|
|
|
|
use OCP\AppFramework\Bootstrap\IBootstrap;
|
|
|
|
use OCP\AppFramework\Bootstrap\IRegistrationContext;
|
2018-01-17 16:51:03 +03:00
|
|
|
use OCP\Authentication\TwoFactorAuth\IProvider;
|
2017-07-01 13:19:01 +03:00
|
|
|
use OCP\Console\ConsoleEvent;
|
2020-06-08 19:43:16 +03:00
|
|
|
use OCP\IConfig;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCP\IGroupManager;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IPreview;
|
2020-07-21 15:36:40 +03:00
|
|
|
use OCP\IServerContainer;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCP\IUserSession;
|
2020-06-08 19:43:16 +03:00
|
|
|
use OCP\Log\ILogFactory;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\Share;
|
2017-07-01 12:41:21 +03:00
|
|
|
use OCP\Util;
|
2020-07-16 18:08:03 +03:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
2017-07-01 12:41:21 +03:00
|
|
|
use Symfony\Component\EventDispatcher\GenericEvent;
|
2016-06-09 19:03:31 +03:00
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
class Application extends App implements IBootstrap {
|
2016-06-09 19:03:31 +03:00
|
|
|
|
2018-04-25 03:27:43 +03:00
|
|
|
/** @var ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
2017-07-01 12:28:03 +03:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct('admin_audit');
|
2018-04-25 03:27:43 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
public function register(IRegistrationContext $context): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function boot(IBootContext $context): void {
|
2020-06-29 17:09:58 +03:00
|
|
|
/** @var ILogger $logger */
|
|
|
|
$logger = $context->injectFn(
|
|
|
|
Closure::fromCallable([$this, 'getLogger'])
|
2020-06-08 19:43:16 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: once the hooks are migrated to lazy events, this should be done
|
|
|
|
* in \OCA\AdminAudit\AppInfo\Application::register
|
|
|
|
*/
|
|
|
|
$this->registerHooks($logger, $context->getServerContainer());
|
|
|
|
}
|
2018-04-25 03:27:43 +03:00
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function getLogger(IConfig $config,
|
|
|
|
ILogger $logger,
|
|
|
|
ILogFactory $logFactory): ILogger {
|
2018-04-25 18:42:14 +03:00
|
|
|
$default = $config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') . '/audit.log';
|
|
|
|
$logFile = $config->getAppValue('admin_audit', 'logfile', $default);
|
2020-06-08 19:43:16 +03:00
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($logFile === null) {
|
2020-06-08 19:43:16 +03:00
|
|
|
return $logger;
|
2018-04-25 03:27:43 +03:00
|
|
|
}
|
2020-06-08 19:43:16 +03:00
|
|
|
return $logFactory->getCustomLogger($logFile);
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register hooks in order to log them
|
|
|
|
*/
|
2020-06-08 19:43:16 +03:00
|
|
|
private function registerHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
IServerContainer $serverContainer) {
|
|
|
|
$this->userManagementHooks($logger, $serverContainer->get(IUserSession::class));
|
|
|
|
$this->groupHooks($logger, $serverContainer->get(IGroupManager::class));
|
2020-06-08 19:43:16 +03:00
|
|
|
$this->authHooks($logger);
|
2017-07-01 13:06:14 +03:00
|
|
|
|
2020-07-21 15:36:40 +03:00
|
|
|
/** @var EventDispatcherInterface $eventDispatcher */
|
|
|
|
$eventDispatcher = $serverContainer->get(EventDispatcherInterface::class);
|
|
|
|
$this->consoleHooks($logger, $eventDispatcher);
|
|
|
|
$this->appHooks($logger, $eventDispatcher);
|
2017-07-01 13:06:14 +03:00
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
$this->sharingHooks($logger);
|
2017-07-01 13:06:14 +03:00
|
|
|
|
2020-07-21 15:36:40 +03:00
|
|
|
$this->fileHooks($logger, $eventDispatcher);
|
2020-06-08 19:43:16 +03:00
|
|
|
$this->trashbinHooks($logger);
|
|
|
|
$this->versionsHooks($logger);
|
2018-01-17 16:51:03 +03:00
|
|
|
|
2020-07-21 15:36:40 +03:00
|
|
|
$this->securityHooks($logger, $eventDispatcher);
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function userManagementHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
IUserSession $userSession) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$userActions = new UserManagement($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
Util::connectHook('OC_User', 'post_createUser', $userActions, 'create');
|
|
|
|
Util::connectHook('OC_User', 'post_deleteUser', $userActions, 'delete');
|
|
|
|
Util::connectHook('OC_User', 'changeUser', $userActions, 'change');
|
2017-07-01 12:41:21 +03:00
|
|
|
|
2020-07-08 14:49:11 +03:00
|
|
|
assert($userSession instanceof UserSession);
|
2017-07-01 12:41:21 +03:00
|
|
|
$userSession->listen('\OC\User', 'postSetPassword', [$userActions, 'setPassword']);
|
2018-03-19 17:23:30 +03:00
|
|
|
$userSession->listen('\OC\User', 'assignedUserId', [$userActions, 'assign']);
|
|
|
|
$userSession->listen('\OC\User', 'postUnassignedUserId', [$userActions, 'unassign']);
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function groupHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
IGroupManager $groupManager) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$groupActions = new GroupManagement($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
|
2020-07-08 14:49:11 +03:00
|
|
|
assert($groupManager instanceof GroupManager);
|
2020-06-08 19:43:16 +03:00
|
|
|
$groupManager->listen('\OC\Group', 'postRemoveUser', [$groupActions, 'removeUser']);
|
|
|
|
$groupManager->listen('\OC\Group', 'postAddUser', [$groupActions, 'addUser']);
|
|
|
|
$groupManager->listen('\OC\Group', 'postDelete', [$groupActions, 'deleteGroup']);
|
|
|
|
$groupManager->listen('\OC\Group', 'postCreate', [$groupActions, 'createGroup']);
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function sharingHooks(ILogger $logger) {
|
|
|
|
$shareActions = new Sharing($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
|
2018-01-26 01:16:13 +03:00
|
|
|
Util::connectHook(Share::class, 'post_shared', $shareActions, 'shared');
|
|
|
|
Util::connectHook(Share::class, 'post_unshare', $shareActions, 'unshare');
|
2020-01-28 21:33:52 +03:00
|
|
|
Util::connectHook(Share::class, 'post_unshareFromSelf', $shareActions, 'unshare');
|
2018-01-26 01:16:13 +03:00
|
|
|
Util::connectHook(Share::class, 'post_update_permissions', $shareActions, 'updatePermissions');
|
|
|
|
Util::connectHook(Share::class, 'post_update_password', $shareActions, 'updatePassword');
|
|
|
|
Util::connectHook(Share::class, 'post_set_expiration_date', $shareActions, 'updateExpirationDate');
|
|
|
|
Util::connectHook(Share::class, 'share_link_access', $shareActions, 'shareAccessed');
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function authHooks(ILogger $logger) {
|
|
|
|
$authActions = new Auth($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
|
|
|
|
Util::connectHook('OC_User', 'pre_login', $authActions, 'loginAttempt');
|
|
|
|
Util::connectHook('OC_User', 'post_login', $authActions, 'loginSuccessful');
|
|
|
|
Util::connectHook('OC_User', 'logout', $authActions, 'logout');
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function appHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
EventDispatcherInterface $eventDispatcher) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(ManagerEvent::EVENT_APP_ENABLE, function (ManagerEvent $event) use ($logger) {
|
|
|
|
$appActions = new AppManagement($logger);
|
2017-07-01 13:06:14 +03:00
|
|
|
$appActions->enableApp($event->getAppID());
|
|
|
|
});
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, function (ManagerEvent $event) use ($logger) {
|
|
|
|
$appActions = new AppManagement($logger);
|
2017-07-01 13:06:14 +03:00
|
|
|
$appActions->enableAppForGroups($event->getAppID(), $event->getGroups());
|
|
|
|
});
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(ManagerEvent::EVENT_APP_DISABLE, function (ManagerEvent $event) use ($logger) {
|
|
|
|
$appActions = new AppManagement($logger);
|
2017-07-01 13:06:14 +03:00
|
|
|
$appActions->disableApp($event->getAppID());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function consoleHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
EventDispatcherInterface $eventDispatcher) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(ConsoleEvent::EVENT_RUN, function (ConsoleEvent $event) use ($logger) {
|
|
|
|
$appActions = new Console($logger);
|
2017-07-01 13:19:01 +03:00
|
|
|
$appActions->runCommand($event->getArguments());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function fileHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
EventDispatcherInterface $eventDispatcher) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$fileActions = new Files($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
$eventDispatcher->addListener(
|
|
|
|
IPreview::EVENT,
|
2020-04-09 14:53:40 +03:00
|
|
|
function (GenericEvent $event) use ($fileActions) {
|
2017-07-01 12:41:21 +03:00
|
|
|
/** @var File $file */
|
|
|
|
$file = $event->getSubject();
|
|
|
|
$fileActions->preview([
|
2020-01-21 13:22:10 +03:00
|
|
|
'path' => mb_substr($file->getInternalPath(), 5),
|
2017-07-01 12:41:21 +03:00
|
|
|
'width' => $event->getArguments()['width'],
|
|
|
|
'height' => $event->getArguments()['height'],
|
|
|
|
'crop' => $event->getArguments()['crop'],
|
2020-06-08 19:43:16 +03:00
|
|
|
'mode' => $event->getArguments()['mode']
|
2017-07-01 12:41:21 +03:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_rename,
|
|
|
|
$fileActions,
|
|
|
|
'rename'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_create,
|
|
|
|
$fileActions,
|
|
|
|
'create'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_copy,
|
|
|
|
$fileActions,
|
|
|
|
'copy'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_write,
|
|
|
|
$fileActions,
|
|
|
|
'write'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_post_update,
|
|
|
|
$fileActions,
|
|
|
|
'update'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_read,
|
|
|
|
$fileActions,
|
|
|
|
'read'
|
|
|
|
);
|
|
|
|
Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_delete,
|
|
|
|
$fileActions,
|
|
|
|
'delete'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function versionsHooks(ILogger $logger) {
|
|
|
|
$versionsActions = new Versions($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
Util::connectHook('\OCP\Versions', 'rollback', $versionsActions, 'rollback');
|
2020-06-08 19:43:16 +03:00
|
|
|
Util::connectHook('\OCP\Versions', 'delete', $versionsActions, 'delete');
|
2017-07-01 12:41:21 +03:00
|
|
|
}
|
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function trashbinHooks(ILogger $logger) {
|
|
|
|
$trashActions = new Trashbin($logger);
|
2017-07-01 12:41:21 +03:00
|
|
|
Util::connectHook('\OCP\Trashbin', 'preDelete', $trashActions, 'delete');
|
|
|
|
Util::connectHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', $trashActions, 'restore');
|
|
|
|
}
|
2018-01-17 16:51:03 +03:00
|
|
|
|
2020-06-08 19:43:16 +03:00
|
|
|
private function securityHooks(ILogger $logger,
|
2020-07-21 15:36:40 +03:00
|
|
|
EventDispatcherInterface $eventDispatcher) {
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(IProvider::EVENT_SUCCESS, function (GenericEvent $event) use ($logger) {
|
|
|
|
$security = new Security($logger);
|
2018-01-17 16:51:03 +03:00
|
|
|
$security->twofactorSuccess($event->getSubject(), $event->getArguments());
|
|
|
|
});
|
2020-06-08 19:43:16 +03:00
|
|
|
$eventDispatcher->addListener(IProvider::EVENT_FAILED, function (GenericEvent $event) use ($logger) {
|
|
|
|
$security = new Security($logger);
|
2018-01-17 16:51:03 +03:00
|
|
|
$security->twofactorFailed($event->getSubject(), $event->getArguments());
|
|
|
|
});
|
|
|
|
}
|
2016-06-09 19:03:31 +03:00
|
|
|
}
|