Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-07-01 13:06:14 +0300
committerJoas Schilling <coding@schilljs.com>2017-07-01 13:06:14 +0300
commita5430b68ff652e19db9fc1d05dbdb86a42705811 (patch)
tree6db63073b6c7f3c015ef6d22afe068c18f9719d7 /apps/admin_audit/lib
parent669f684434b1996689162c9771742dd6088582a0 (diff)
Listen to app enable/disable events
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/admin_audit/lib')
-rw-r--r--apps/admin_audit/lib/Actions/AppManagement.php58
-rw-r--r--apps/admin_audit/lib/AppInfo/Application.php27
2 files changed, 84 insertions, 1 deletions
diff --git a/apps/admin_audit/lib/Actions/AppManagement.php b/apps/admin_audit/lib/Actions/AppManagement.php
new file mode 100644
index 00000000000..e12ff2f694e
--- /dev/null
+++ b/apps/admin_audit/lib/Actions/AppManagement.php
@@ -0,0 +1,58 @@
+<?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 AppManagement extends Action {
+
+ /**
+ * @param string $appName
+ */
+ public function enableApp($appName) {
+ $this->log('App "%s" enabled',
+ ['app' => $appName],
+ ['app']
+ );
+ }
+
+ /**
+ * @param string $appName
+ * @param string[] $groups
+ */
+ public function enableAppForGroups($appName, array $groups) {
+ $this->log('App "%s" enabled for groups: %s',
+ ['app' => $appName, 'groups' => implode(', ', $groups)],
+ ['app', 'groups']
+ );
+ }
+
+ /**
+ * @param string $appName
+ */
+ public function disableApp($appName) {
+ $this->log('App "%s" disabled',
+ ['app' => $appName],
+ ['app']
+ );
+ }
+}
diff --git a/apps/admin_audit/lib/AppInfo/Application.php b/apps/admin_audit/lib/AppInfo/Application.php
index ed9d64590ae..6e68a48f84b 100644
--- a/apps/admin_audit/lib/AppInfo/Application.php
+++ b/apps/admin_audit/lib/AppInfo/Application.php
@@ -25,6 +25,7 @@ use OC\Files\Filesystem;
use OC\Files\Node\File;
use OC\Group\Manager;
use OC\User\Session;
+use OCA\AdminAudit\Actions\AppManagement;
use OCA\AdminAudit\Actions\Auth;
use OCA\AdminAudit\Actions\Files;
use OCA\AdminAudit\Actions\GroupManagement;
@@ -32,6 +33,7 @@ use OCA\AdminAudit\Actions\Sharing;
use OCA\AdminAudit\Actions\Trashbin;
use OCA\AdminAudit\Actions\UserManagement;
use OCA\AdminAudit\Actions\Versions;
+use OCP\App\ManagerEvent;
use OCP\AppFramework\App;
use OCP\IGroupManager;
use OCP\ILogger;
@@ -55,10 +57,15 @@ class Application extends App {
*/
protected function registerHooks() {
$logger = $this->getContainer()->getServer()->getLogger();
+
$this->userManagementHooks($logger);
$this->groupHooks($logger);
- $this->sharingHooks($logger);
$this->authHooks($logger);
+
+ $this->appHooks($logger);
+
+ $this->sharingHooks($logger);
+
$this->fileHooks($logger);
$this->trashbinHooks($logger);
$this->versionsHooks($logger);
@@ -106,6 +113,24 @@ class Application extends App {
Util::connectHook('OC_User', 'logout', $authActions, 'logout');
}
+ protected function appHooks(ILogger $logger) {
+
+ $eventDispatcher = $this->getContainer()->getServer()->getEventDispatcher();
+ $eventDispatcher->addListener(ManagerEvent::EVENT_APP_ENABLE, function(ManagerEvent $event) use ($logger) {
+ $appActions = new AppManagement($logger);
+ $appActions->enableApp($event->getAppID());
+ });
+ $eventDispatcher->addListener(ManagerEvent::EVENT_APP_ENABLE_FOR_GROUPS, function(ManagerEvent $event) use ($logger) {
+ $appActions = new AppManagement($logger);
+ $appActions->enableAppForGroups($event->getAppID(), $event->getGroups());
+ });
+ $eventDispatcher->addListener(ManagerEvent::EVENT_APP_DISABLE, function(ManagerEvent $event) use ($logger) {
+ $appActions = new AppManagement($logger);
+ $appActions->disableApp($event->getAppID());
+ });
+
+ }
+
protected function fileHooks(ILogger $logger) {
$fileActions = new Files($logger);
$eventDispatcher = $this->getContainer()->getServer()->getEventDispatcher();