2011-10-21 19:02:11 +04:00
|
|
|
<?php
|
|
|
|
|
2013-03-02 15:18:28 +04:00
|
|
|
OC::$CLASSPATH['OCA\Encryption\Crypt'] = 'files_encryption/lib/crypt.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Hooks'] = 'files_encryption/hooks/hooks.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Util'] = 'files_encryption/lib/util.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Keymanager'] = 'files_encryption/lib/keymanager.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Stream'] = 'files_encryption/lib/stream.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Proxy'] = 'files_encryption/lib/proxy.php';
|
|
|
|
OC::$CLASSPATH['OCA\Encryption\Session'] = 'files_encryption/lib/session.php';
|
2013-03-09 04:04:33 +04:00
|
|
|
OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php';
|
2013-05-09 21:36:18 +04:00
|
|
|
OC::$CLASSPATH['OCA\Encryption\Helper'] = 'files_encryption/lib/helper.php';
|
2011-10-21 19:02:11 +04:00
|
|
|
|
2013-05-27 19:26:58 +04:00
|
|
|
OC_FileProxy::register(new OCA\Encryption\Proxy());
|
2011-10-21 19:02:11 +04:00
|
|
|
|
2013-05-09 21:36:18 +04:00
|
|
|
// User related hooks
|
|
|
|
OCA\Encryption\Helper::registerUserHooks();
|
2011-10-21 19:02:11 +04:00
|
|
|
|
2013-05-09 21:36:18 +04:00
|
|
|
// Sharing related hooks
|
|
|
|
OCA\Encryption\Helper::registerShareHooks();
|
2013-01-14 23:07:28 +04:00
|
|
|
|
2013-05-09 21:36:18 +04:00
|
|
|
// Filesystem related hooks
|
|
|
|
OCA\Encryption\Helper::registerFilesystemHooks();
|
2013-04-27 22:18:05 +04:00
|
|
|
|
2013-05-27 19:26:58 +04:00
|
|
|
stream_wrapper_register('crypt', 'OCA\Encryption\Stream');
|
2013-04-10 19:37:03 +04:00
|
|
|
|
2013-05-15 16:32:50 +04:00
|
|
|
// check if we are logged in
|
|
|
|
if (OCP\User::isLoggedIn()) {
|
|
|
|
$view = new OC_FilesystemView('/');
|
|
|
|
$session = new \OCA\Encryption\Session($view);
|
|
|
|
|
|
|
|
// check if user has a private key
|
|
|
|
if (
|
|
|
|
!$session->getPrivateKey(\OCP\USER::getUser())
|
|
|
|
&& OCA\Encryption\Crypt::mode() === 'server'
|
|
|
|
) {
|
|
|
|
|
|
|
|
// Force the user to log-in again if the encryption key isn't unlocked
|
|
|
|
// (happens when a user is logged in before the encryption app is
|
|
|
|
// enabled)
|
|
|
|
OCP\User::logout();
|
|
|
|
|
|
|
|
header("Location: " . OC::$WEBROOT . '/');
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-02-23 01:20:46 +04:00
|
|
|
|
2013-02-09 21:01:38 +04:00
|
|
|
// Register settings scripts
|
2013-05-27 19:26:58 +04:00
|
|
|
OCP\App::registerAdmin('files_encryption', 'settings-admin');
|
|
|
|
OCP\App::registerPersonal('files_encryption', 'settings-personal');
|
2013-05-09 21:36:18 +04:00
|
|
|
|