nextcloud/apps/files_encryption/settings-personal.php

43 lines
1.3 KiB
PHP
Raw Normal View History

2012-08-02 12:39:30 +04:00
<?php
2012-08-02 15:55:23 +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
// 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
$user = \OCP\USER::getUser();
$view = new \OC\Files\View('/');
2013-05-30 01:13:45 +04:00
$util = new \OCA\Encryption\Util($view, $user);
$session = new \OCA\Encryption\Session($view);
$privateKeySet = $session->getPrivateKey() !== false;
2013-09-02 13:34:28 +04:00
// did we tried to initialize the keys for this session?
$initialized = $session->getInitialized();
2014-02-13 19:28:49 +04:00
$recoveryAdminEnabled = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryAdminEnabled');
$recoveryEnabledForUser = $util->recoveryEnabledForUser();
$result = false;
if ($recoveryAdminEnabled || !$privateKeySet) {
2012-08-02 12:39:30 +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);
$tmpl->assign('initialized', $initialized);
$result = $tmpl->fetchPage();
}
return $result;
2012-08-02 12:39:30 +04:00