nextcloud/apps/encryption/settings/settings-personal.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2015-02-24 21:05:19 +03:00
<?php
/**
2015-03-27 03:35:36 +03:00
* Copyright (c) 2015 Clark Tomlinson <clark@owncloud.com>
2015-02-24 21:05:19 +03:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
// Add CSS stylesheet
2015-03-27 03:35:36 +03:00
\OC_Util::addStyle('encryption', 'settings-personal');
2015-02-24 21:05:19 +03:00
2015-03-27 03:35:36 +03:00
$tmpl = new OCP\Template('encryption', 'settings-personal');
2015-02-24 21:05:19 +03:00
2015-03-27 03:35:36 +03:00
$user = \OCP\User::getUser();
2015-02-24 21:05:19 +03:00
$view = new \OC\Files\View('/');
$util = new \OCA\Files_Encryption\Util($view, $user);
$session = new \OCA\Files_Encryption\Session($view);
$privateKeySet = $session->getPrivateKey() !== false;
// did we tried to initialize the keys for this session?
$initialized = $session->getInitialized();
2015-03-27 03:35:36 +03:00
$recoveryAdminEnabled = \OC::$server->getConfig()->getAppValue('encryption', 'recoveryAdminEnabled');
2015-02-24 21:05:19 +03:00
$recoveryEnabledForUser = $util->recoveryEnabledForUser();
$result = false;
if ($recoveryAdminEnabled || !$privateKeySet) {
2015-03-27 03:35:36 +03:00
\OCP\Util::addscript('encryption', 'settings-personal');
2015-02-24 21:05:19 +03:00
$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
$tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser);
$tmpl->assign('privateKeySet', $privateKeySet);
$tmpl->assign('initialized', $initialized);
$result = $tmpl->fetchPage();
}
return $result;