2012-08-02 12:39:30 +04:00
|
|
|
<?php
|
2012-08-02 15:55:23 +04:00
|
|
|
/**
|
2013-02-05 21:06:15 +04:00
|
|
|
* Copyright (c) 2013 Sam Tuke <samtuke@owncloud.com>
|
2012-08-02 15:55:23 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2012-08-02 12:39:30 +04:00
|
|
|
|
2013-05-07 18:17:38 +04:00
|
|
|
// Add CSS stylesheet
|
2013-05-30 01:13:45 +04:00
|
|
|
\OC_Util::addStyle('files_encryption', 'settings-personal');
|
|
|
|
|
|
|
|
$tmpl = new OCP\Template('files_encryption', 'settings-personal');
|
2012-08-02 12:39:30 +04:00
|
|
|
|
2013-05-01 21:18:31 +04:00
|
|
|
$user = \OCP\USER::getUser();
|
2014-05-12 18:30:39 +04:00
|
|
|
$view = new \OC\Files\View('/');
|
2013-05-30 01:13:45 +04:00
|
|
|
$util = new \OCA\Encryption\Util($view, $user);
|
2013-06-03 17:27:31 +04:00
|
|
|
$session = new \OCA\Encryption\Session($view);
|
|
|
|
|
2013-09-02 13:26:11 +04:00
|
|
|
$privateKeySet = $session->getPrivateKey() !== false;
|
2013-09-02 13:34:28 +04:00
|
|
|
// did we tried to initialize the keys for this session?
|
2013-09-02 13:26:11 +04:00
|
|
|
$initialized = $session->getInitialized();
|
2013-05-01 21:18:31 +04:00
|
|
|
|
2014-02-13 19:28:49 +04:00
|
|
|
$recoveryAdminEnabled = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryAdminEnabled');
|
2013-05-01 21:18:31 +04:00
|
|
|
$recoveryEnabledForUser = $util->recoveryEnabledForUser();
|
|
|
|
|
2013-06-05 15:51:28 +04:00
|
|
|
$result = false;
|
2013-05-01 21:18:31 +04:00
|
|
|
|
2013-06-05 15:51:28 +04:00
|
|
|
if ($recoveryAdminEnabled || !$privateKeySet) {
|
2012-08-02 12:39:30 +04:00
|
|
|
|
2013-06-05 15:51:28 +04:00
|
|
|
\OCP\Util::addscript('files_encryption', 'settings-personal');
|
|
|
|
\OCP\Util::addScript('settings', 'personal');
|
|
|
|
|
|
|
|
$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
|
|
|
|
$tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser);
|
|
|
|
$tmpl->assign('privateKeySet', $privateKeySet);
|
2013-09-02 13:26:11 +04:00
|
|
|
$tmpl->assign('initialized', $initialized);
|
2013-06-05 15:51:28 +04:00
|
|
|
|
|
|
|
$result = $tmpl->fetchPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
2012-08-02 12:39:30 +04:00
|
|
|
|