diff options
author | Joas Schilling <coding@schilljs.com> | 2017-07-01 12:19:01 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-07-01 12:19:01 +0200 |
commit | a4a99fa7b983ef115209acf64faa868a0456d26f (patch) | |
tree | c9dbc6f4b6190370e38bcd78113b82c35093619e /apps/admin_audit | |
parent | a5430b68ff652e19db9fc1d05dbdb86a42705811 (diff) | |
download | nextcloud-server-a4a99fa7b983ef115209acf64faa868a0456d26f.tar.gz nextcloud-server-a4a99fa7b983ef115209acf64faa868a0456d26f.zip |
Log console commands
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/admin_audit')
-rw-r--r-- | apps/admin_audit/lib/Actions/Console.php | 45 | ||||
-rw-r--r-- | apps/admin_audit/lib/AppInfo/Application.php | 11 |
2 files changed, 56 insertions, 0 deletions
diff --git a/apps/admin_audit/lib/Actions/Console.php b/apps/admin_audit/lib/Actions/Console.php new file mode 100644 index 00000000000..20553ef23d0 --- /dev/null +++ b/apps/admin_audit/lib/Actions/Console.php @@ -0,0 +1,45 @@ +<?php +/** + * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> + * + * @author Joas Schilling <coding@schilljs.com> + * + * @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/>. + * + */ + +namespace OCA\AdminAudit\Actions; + + +class Console extends Action { + /** + * @param $arguments + */ + public function runCommand($arguments) { + if ($arguments[1] === '_completion') { + // Don't log autocompletion + return; + } + + // Remove `./occ` + array_shift($arguments); + + $this->log('Console command executed: %s', + ['arguments' => implode(' ', $arguments)], + ['arguments'] + ); + } +} diff --git a/apps/admin_audit/lib/AppInfo/Application.php b/apps/admin_audit/lib/AppInfo/Application.php index 6e68a48f84b..2748efc56ff 100644 --- a/apps/admin_audit/lib/AppInfo/Application.php +++ b/apps/admin_audit/lib/AppInfo/Application.php @@ -27,6 +27,7 @@ use OC\Group\Manager; use OC\User\Session; use OCA\AdminAudit\Actions\AppManagement; use OCA\AdminAudit\Actions\Auth; +use OCA\AdminAudit\Actions\Console; use OCA\AdminAudit\Actions\Files; use OCA\AdminAudit\Actions\GroupManagement; use OCA\AdminAudit\Actions\Sharing; @@ -35,6 +36,7 @@ use OCA\AdminAudit\Actions\UserManagement; use OCA\AdminAudit\Actions\Versions; use OCP\App\ManagerEvent; use OCP\AppFramework\App; +use OCP\Console\ConsoleEvent; use OCP\IGroupManager; use OCP\ILogger; use OCP\IPreview; @@ -62,6 +64,7 @@ class Application extends App { $this->groupHooks($logger); $this->authHooks($logger); + $this->consoleHooks($logger); $this->appHooks($logger); $this->sharingHooks($logger); @@ -131,6 +134,14 @@ class Application extends App { } + protected function consoleHooks(ILogger $logger) { + $eventDispatcher = $this->getContainer()->getServer()->getEventDispatcher(); + $eventDispatcher->addListener(ConsoleEvent::EVENT_RUN, function(ConsoleEvent $event) use ($logger) { + $appActions = new Console($logger); + $appActions->runCommand($event->getArguments()); + }); + } + protected function fileHooks(ILogger $logger) { $fileActions = new Files($logger); $eventDispatcher = $this->getContainer()->getServer()->getEventDispatcher(); |