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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
<?php
/**
* Postfix Admin
*
* LICENSE
* This source file is subject to the GPL license that is bundled with
* this package in the file LICENSE.TXT.
*
* Further details on the project are available at https://github.com/postfixadmin/postfixadmin
*
* @version $Id$
* @license GNU GPL v2 or later.
*
* File: totp-exemptions.php
* Used by users to view and change their totp exemption addresses.
* Template File: totp-excemtion.tpl
*
*
* Form POST \ GET Variables:
*
* fPassword_current
* fIp
* fDesc
* fUser
* fId
*
*/
require_once(__DIR__ . '/../common.php');
$smarty = PFASmarty::getInstance();
$smarty->configureTheme($smarty->getRelPath());
$username = authentication_get_username();
list($local_part, $domain) = explode('@', $username);
$pPassword_text = "";
$pUser_text = '';
$pUser = '';
$username = authentication_get_username();
if (authentication_has_role('global-admin')) {
$login = new Login('admin');
$totppf = new TotpPf('admin', $login);
$admin = 2;
} elseif (authentication_has_role('admin')) {
$login = new Login('admin');
$totppf = new TotpPf('admin', $login);
$admin = 1;
} else {
$login = new Login('mailbox');
$totppf = new TotpPf('mailbox', $login);
$admin = 0;
}
if ($_SERVER['REQUEST_METHOD'] == "POST") {
if (safepost('token') != $_SESSION['PFA_token']) {
die('Invalid token!');
}
if (isset($_POST['fCancel'])) {
header("Location: main.php");
exit(0);
}
if (isset($_POST['fPassword_current']) && $_POST['fPassword_current'] != '') {
$fPass = $_POST['fPassword_current'];
$fIp = $_POST['fIp'];
$fDesc = $_POST['fDesc'];
$fUser = $_POST['fUser'];
try {
if ($totppf->addException($username, $fPass, $fIp, $fUser, $fDesc)) {
flash_info($PALANG['pTotp_exception_result_success']);
header("Location: totp-exceptions.php");
exit(0);
} else {
flash_error($PALANG['pTotp_exception_result_error']);
}
} catch (\Exception $e) {
flash_error($e->getMessage());
}
}
if (isset($_POST['fId']) && $_POST['fId'] != '' && is_numeric($_POST['fId'])) {
$fId = $_POST['fId'];
$result = $totppf->deleteException($username, (int)$fId);
if ($result) {
flash_info($PALANG['pTotp_exceptions_revoked']);
}
}
}
// Generate list of existing exceptions
if ($admin == 2) {
$exceptions = $totppf->getAllExceptions();
} else {
$exceptions = $totppf->getExceptionsFor($username);
}
// User can revoke exceptions for own username
// Admins can revoke exceptions for own domain
// Global-admin can revoke all exceptions
foreach ($exceptions as $n => $ex) {
if ($ex['username'] == $username) {
$exceptions[$n]['edit'] = 1;
}
if ($admin == 2) {
$exceptions[$n]['edit'] = 1;
}
if ($admin == 1 && $ex['username'] == $domain) {
$exceptions[$n]['edit'] = 1;
}
}
$smarty->assign('SESSID_USERNAME', $username);
$smarty->assign('pPassword_text', $pPassword_text, false);
$smarty->assign('pUser_text', $pUser_text, false);
$smarty->assign('pUser', $pUser, false);
#$smarty->assign('', $, false);
$smarty->assign('pExceptions', $exceptions, false);
$smarty->assign('smarty_template', 'totp-exceptions');
$smarty->display('index.tpl');
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|