54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
<?php
|
|
|
|
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';
|
|
OC::$CLASSPATH['OCA\Encryption\Capabilities'] = 'files_encryption/lib/capabilities.php';
|
|
OC::$CLASSPATH['OCA\Encryption\Helper'] = 'files_encryption/lib/helper.php';
|
|
|
|
OC_FileProxy::register( new OCA\Encryption\Proxy() );
|
|
|
|
// User related hooks
|
|
OCA\Encryption\Helper::registerUserHooks();
|
|
|
|
// Sharing related hooks
|
|
OCA\Encryption\Helper::registerShareHooks();
|
|
|
|
// Webdav related hooks
|
|
OCA\Encryption\Helper::registerWebdavHooks();
|
|
|
|
// Filesystem related hooks
|
|
OCA\Encryption\Helper::registerFilesystemHooks();
|
|
|
|
stream_wrapper_register( 'crypt', 'OCA\Encryption\Stream' );
|
|
|
|
$view = new \OC\Files\View( '/' );
|
|
|
|
$session = new OCA\Encryption\Session( $view );
|
|
|
|
if (
|
|
! $session->getPrivateKey( \OCP\USER::getUser() )
|
|
&& OCP\User::isLoggedIn()
|
|
&& 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();
|
|
|
|
}
|
|
|
|
// Register settings scripts
|
|
OCP\App::registerAdmin( 'files_encryption', 'settings-admin' );
|
|
OCP\App::registerPersonal( 'files_encryption', 'settings-personal' );
|
|
|