diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-11-22 22:09:09 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-11-22 22:35:02 +0100 |
commit | efe644137d1d2d8ad1e11fbf8cd3109a679d6fc1 (patch) | |
tree | f5dda5f2bedc112d5f1fdf1ad3b27425ff120ee2 /apps/encryption | |
parent | 9a0428835f54550d27217f9a9b60d105c436c8b6 (diff) | |
download | nextcloud-server-efe644137d1d2d8ad1e11fbf8cd3109a679d6fc1.tar.gz nextcloud-server-efe644137d1d2d8ad1e11fbf8cd3109a679d6fc1.zip |
[encryption] Remove dependency fetching inside the constructor and move them to method call parameters
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/encryption')
-rw-r--r-- | apps/encryption/appinfo/app.php | 9 | ||||
-rw-r--r-- | apps/encryption/lib/AppInfo/Application.php | 21 |
2 files changed, 11 insertions, 19 deletions
diff --git a/apps/encryption/appinfo/app.php b/apps/encryption/appinfo/app.php index 1b5f18813c3..66127e5f975 100644 --- a/apps/encryption/appinfo/app.php +++ b/apps/encryption/appinfo/app.php @@ -27,12 +27,13 @@ namespace OCA\Encryption\AppInfo; \OCP\Util::addscript('encryption', 'encryption'); -$encryptionSystemReady = \OC::$server->getEncryptionManager()->isReady(); +$encryptionManager = \OC::$server->getEncryptionManager(); +$encryptionSystemReady = $encryptionManager->isReady(); /** @var Application $app */ $app = \OC::$server->query(Application::class); if ($encryptionSystemReady) { - $app->registerEncryptionModule(); - $app->registerHooks(); - $app->setUp(); + $app->registerEncryptionModule($encryptionManager); + $app->registerHooks(\OC::$server->getConfig()); + $app->setUp($encryptionManager); } diff --git a/apps/encryption/lib/AppInfo/Application.php b/apps/encryption/lib/AppInfo/Application.php index a5cbb30870c..6674abc972d 100644 --- a/apps/encryption/lib/AppInfo/Application.php +++ b/apps/encryption/lib/AppInfo/Application.php @@ -44,23 +44,15 @@ use OCP\Encryption\IManager; use OCP\IConfig; class Application extends \OCP\AppFramework\App { - - /** @var IManager */ - private $encryptionManager; - /** @var IConfig */ - private $config; - /** * @param array $urlParams */ public function __construct($urlParams = []) { parent::__construct('encryption', $urlParams); - $this->encryptionManager = \OC::$server->getEncryptionManager(); - $this->config = \OC::$server->getConfig(); } - public function setUp() { - if ($this->encryptionManager->isEnabled()) { + public function setUp(IManager $encryptionManager) { + if ($encryptionManager->isEnabled()) { /** @var Setup $setup */ $setup = $this->getContainer()->query(Setup::class); $setup->setupSystem(); @@ -70,8 +62,8 @@ class Application extends \OCP\AppFramework\App { /** * register hooks */ - public function registerHooks() { - if (!$this->config->getSystemValueBool('maintenance')) { + public function registerHooks(IConfig $config) { + if (!$config->getSystemValueBool('maintenance')) { $container = $this->getContainer(); $server = $container->getServer(); // Register our hooks and fire them. @@ -96,11 +88,10 @@ class Application extends \OCP\AppFramework\App { } } - public function registerEncryptionModule() { + public function registerEncryptionModule(IManager $encryptionManager) { $container = $this->getContainer(); - - $this->encryptionManager->registerEncryptionModule( + $encryptionManager->registerEncryptionModule( Encryption::ID, Encryption::DISPLAY_NAME, function () use ($container) { |