37 lines
1.5 KiB
PHP
37 lines
1.5 KiB
PHP
|
<?php
|
||
|
|||
|
OC::$CLASSPATH['OCA\Encryption\Crypt'] = 'apps/files_encryption/lib/crypt.php';
|
||
OC::$CLASSPATH['OCA\Encryption\Hooks'] = 'apps/files_encryption/hooks/hooks.php';
|
|||
OC::$CLASSPATH['OCA\Encryption\Util'] = 'apps/files_encryption/lib/util.php';
|
|||
OC::$CLASSPATH['OCA\Encryption\Keymanager'] = 'apps/files_encryption/lib/keymanager.php';
|
|||
OC::$CLASSPATH['OCA\Encryption\Stream'] = 'apps/files_encryption/lib/stream.php';
|
|||
OC::$CLASSPATH['OCA\Encryption\Proxy'] = 'apps/files_encryption/lib/proxy.php';
|
|||
Revert "Revert "Development snapshot""
This reverts commit b66d38ecae3a2e7914520a90c5ef01cbc1432c10.
|
OC::$CLASSPATH['OCA\Encryption\Session'] = 'apps/files_encryption/lib/session.php';
|
||
|
|
||
OC_FileProxy::register( new OCA\Encryption\Proxy() );
|
|||
|
|
||
OCP\Util::connectHook( 'OC_User','post_login', 'OCA\Encryption\Hooks', 'login' );
|
|||
OCP\Util::connectHook( 'OC_Webdav_Properties', 'update', 'OCA\Encryption\Hooks', 'updateKeyfile' );
|
|||
OCP\Util::connectHook( 'OC_User','post_setPassword','OCA\Encryption\Hooks' ,'setPassphrase' );
|
|||
|
|
||
stream_wrapper_register( 'crypt', 'OCA\Encryption\Stream' );
|
|||
|
|
||
Revert "Revert "Development snapshot""
This reverts commit b66d38ecae3a2e7914520a90c5ef01cbc1432c10.
|
$session = new OCA\Encryption\Session();
|
||
|
|||
if (
|
|||
! $session->getPrivateKey( \OCP\USER::getUser() )
|
|||
&& OCP\User::isLoggedIn()
|
|||
&& OCA\Encryption\Crypt::mode() == 'server'
|
|||
) {
|
|||
|
|
||
// Force the user to re-log in 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();
|
||
|
|
||
|
}
|
||
|
|
||
OCP\App::registerAdmin( 'files_encryption', 'settings');
|
|||
OCP\App::registerPersonal( 'files_encryption', 'settings-personal' );
|