183 lines
4.5 KiB
PHP
183 lines
4.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* @author Clark Tomlinson <clark@owncloud.com>
|
||
|
* @since 3/11/15, 11:03 AM
|
||
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||
|
* @license AGPL-3.0
|
||
|
*
|
||
|
* This code is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||
|
* as published by the Free Software Foundation.
|
||
|
*
|
||
|
* 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, version 3,
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||
|
*
|
||
|
*/
|
||
|
namespace OCA\Encryption\AppInfo;
|
||
|
|
||
|
|
||
|
use OCA\Encryption\Crypto\Crypt;
|
||
|
use OCA\Encryption\HookManager;
|
||
|
use OCA\Encryption\Hooks\AppHooks;
|
||
|
use OCA\Encryption\Hooks\FileSystemHooks;
|
||
|
use OCA\Encryption\Hooks\ShareHooks;
|
||
|
use OCA\Encryption\Hooks\UserHooks;
|
||
|
use OCA\Encryption\KeyManager;
|
||
|
use OCA\Encryption\Migrator;
|
||
|
use OCA\Encryption\Recovery;
|
||
|
use OCA\Encryption\Users\Setup;
|
||
|
use OCP\App;
|
||
|
use OCP\AppFramework\IAppContainer;
|
||
|
use OCP\Encryption\IManager;
|
||
|
use OCP\IConfig;
|
||
|
|
||
|
|
||
|
class Encryption extends \OCP\AppFramework\App {
|
||
|
/**
|
||
|
* @var IManager
|
||
|
*/
|
||
|
private $encryptionManager;
|
||
|
/**
|
||
|
* @var IConfig
|
||
|
*/
|
||
|
private $config;
|
||
|
|
||
|
/**
|
||
|
* @param $appName
|
||
|
* @param array $urlParams
|
||
|
* @param IManager $encryptionManager
|
||
|
* @param IConfig $config
|
||
|
*/
|
||
|
public function __construct($appName, $urlParams = array(), IManager $encryptionManager, IConfig $config) {
|
||
|
parent::__construct($appName, $urlParams);
|
||
|
$this->encryptionManager = $encryptionManager;
|
||
|
$this->config = $config;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public function boot() {
|
||
|
$this->registerServices();
|
||
|
$this->registerHooks();
|
||
|
$this->registerEncryptionModule();
|
||
|
$this->registerSettings();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public function registerHooks() {
|
||
|
if (!$this->config->getSystemValue('maintenance', false)) {
|
||
|
|
||
|
$container = $this->getContainer();
|
||
|
$server = $container->getServer();
|
||
|
// Register our hooks and fire them.
|
||
|
$hookManager = new HookManager();
|
||
|
|
||
|
$hookManager->registerHook([
|
||
|
new UserHooks($container->query('KeyManager'),
|
||
|
$server->getLogger(),
|
||
|
$container->query('UserSetup'),
|
||
|
$container->query('Migrator'),
|
||
|
$server->getUserSession()),
|
||
|
// new ShareHooks(),
|
||
|
// new FileSystemHooks(),
|
||
|
// new AppHooks()
|
||
|
]);
|
||
|
|
||
|
$hookManager->fireHooks();
|
||
|
|
||
|
} else {
|
||
|
// Logout user if we are in maintenance to force re-login
|
||
|
$this->getContainer()->getServer()->getUserSession()->logout();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public function registerEncryptionModule() {
|
||
|
// $this->encryptionManager->registerEncryptionModule(new \OCA\Encryption\Crypto\Encryption());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public function registerServices() {
|
||
|
$container = $this->getContainer();
|
||
|
|
||
|
$container->registerService('Crypt',
|
||
|
function (IAppContainer $c) {
|
||
|
$server = $c->getServer();
|
||
|
return new Crypt($server->getLogger(),
|
||
|
$server->getUserSession(),
|
||
|
$server->getConfig());
|
||
|
});
|
||
|
|
||
|
$container->registerService('KeyManager',
|
||
|
function (IAppContainer $c) {
|
||
|
$server = $c->getServer();
|
||
|
|
||
|
return new KeyManager($server->getEncryptionKeyStorage(),
|
||
|
$c->query('Crypt'),
|
||
|
$server->getConfig(),
|
||
|
$server->getUserSession());
|
||
|
});
|
||
|
|
||
|
|
||
|
$container->registerService('Recovery',
|
||
|
function (IAppContainer $c) {
|
||
|
$server = $c->getServer();
|
||
|
|
||
|
return new Recovery(
|
||
|
$server->getUserSession(),
|
||
|
$c->query('Crypt'),
|
||
|
$server->getSecureRandom(),
|
||
|
$c->query('KeyManager'),
|
||
|
$server->getConfig(),
|
||
|
$server->getEncryptionKeyStorage());
|
||
|
});
|
||
|
|
||
|
$container->registerService('UserSetup',
|
||
|
function (IAppContainer $c) {
|
||
|
$server = $c->getServer();
|
||
|
return new Setup($server->getLogger(),
|
||
|
$server->getUserSession(),
|
||
|
$c->query('Crypt'),
|
||
|
$c->query('KeyManager'));
|
||
|
});
|
||
|
|
||
|
$container->registerService('Migrator',
|
||
|
function (IAppContainer $c) {
|
||
|
$server = $c->getServer();
|
||
|
|
||
|
return new Migrator($server->getUserSession(),
|
||
|
$server->getConfig(),
|
||
|
$server->getUserManager(),
|
||
|
$server->getLogger(),
|
||
|
$c->query('Crypt'));
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
public function registerSettings() {
|
||
|
|
||
|
// script('encryption', 'encryption');
|
||
|
// script('encryption', 'detect-migration');
|
||
|
|
||
|
|
||
|
// Register settings scripts
|
||
|
App::registerAdmin('encryption', 'settings/settings-admin');
|
||
|
App::registerPersonal('encryption', 'settings/settings-personal');
|
||
|
}
|
||
|
}
|