Blame view

sources/apps/files_encryption/settings-personal.php 1.14 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  <?php
  /**
   * Copyright (c) 2013 Sam Tuke <samtuke@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  // Add CSS stylesheet
  \OC_Util::addStyle('files_encryption', 'settings-personal');
  
  $tmpl = new OCP\Template('files_encryption', 'settings-personal');
  
  $user = \OCP\USER::getUser();
  $view = new \OC_FilesystemView('/');
  $util = new \OCA\Encryption\Util($view, $user);
  $session = new \OCA\Encryption\Session($view);
  
  $privateKeySet = ($session->getPrivateKey() !== false) ? true : false;
  
  $recoveryAdminEnabled = OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled');
  $recoveryEnabledForUser = $util->recoveryEnabledForUser();
  
  $result = false;
  
  if ($recoveryAdminEnabled || !$privateKeySet) {
  
  	\OCP\Util::addscript('files_encryption', 'settings-personal');
  	\OCP\Util::addScript('settings', 'personal');
  
  	$tmpl->assign('recoveryEnabled', $recoveryAdminEnabled);
  	$tmpl->assign('recoveryEnabledForUser', $recoveryEnabledForUser);
  	$tmpl->assign('privateKeySet', $privateKeySet);
  
  	$result = $tmpl->fetchPage();
  }
  
  return $result;