diag_authentication.php 4.41 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3 4
    Copyright (C) 2014 Deciso B.V.
	Copyright (C) 2010 Ermal Luçi
Ad Schellevis's avatar
Ad Schellevis committed
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
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	notice, this list of conditions and the following disclaimer in the
	documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

require("guiconfig.inc");
require_once("PEAR.inc");
require_once("radius.inc");

if ($_POST) {
	$pconfig = $_POST;
	unset($input_errors);

	$authcfg = auth_get_authserver($_POST['authmode']);
	if (!$authcfg)
		$input_errors[] = $_POST['authmode'] . " " . gettext("is not a valid authentication server");

	if (empty($_POST['username']) || empty($_POST['password']))
		$input_errors[] = gettext("A username and password must be specified.");

	if (!$input_errors) {
		if (authenticate_user($_POST['username'], $_POST['password'], $authcfg)) {
			$savemsg = gettext("User") . ": " . $_POST['username'] . " " . gettext("authenticated successfully.");
			$groups = getUserGroups($_POST['username'], $authcfg);
			$savemsg .= "<br />" . gettext("This user is a member of these groups") . ": <br />";
			foreach ($groups as $group)
				$savemsg .= "{$group} ";
		} else {
			$input_errors[] = gettext("Authentication failed.");
		}
	}
}
$pgtitle = array(gettext("Diagnostics"),gettext("Authentication"));
$shortcut_section = "authentication";
58

Ad Schellevis's avatar
Ad Schellevis committed
59 60 61 62
include("head.inc");

?>

63
<body>
Ad Schellevis's avatar
Ad Schellevis committed
64 65

<?php include("fbegin.inc"); ?>
66

Ad Schellevis's avatar
Ad Schellevis committed
67 68
<?php if ($savemsg) print_info_box($savemsg);?>

69 70
<form id="iform" name="iform" action="<?php echo $_SERVER['REQUEST_URI'];?>" method="post">
<section class="page-content-main">
71
	<div class="container-fluid">
72
		<div class="row">
73

74
			<?php if ($input_errors) print_input_errors($input_errors);?>
75

76
			<section class="col-xs-12">
77 78
                <div class="content-box">

Ad Schellevis's avatar
Ad Schellevis committed
79
					<header class="content-box-head container-fluid">
80 81 82
				   <h3>Test a server</h3>
				</header>

Ad Schellevis's avatar
Ad Schellevis committed
83
				    <div class="content-box-main">
84
				    <div class="table-responsive">
85 86 87 88 89
			        <table class="table table-striped __nomb">
				        <tbody>
					        <tr>
					          <td><?=gettext("Authentication Server"); ?></td>
					          <td><select name="authmode" id="authmode" class="form-control" >
90 91 92 93 94 95 96 97 98 99 100
									<?php
										$auth_servers = auth_get_authserver_list();
										foreach ($auth_servers as $auth_server):
											$selected = "";
											if ($auth_server['name'] == $pconfig['authmode'])
												$selected = "selected=\"selected\"";
									?>
									<option value="<?=$auth_server['name'];?>" <?=$selected;?>><?=$auth_server['name'];?></option>
									<?php   endforeach; ?>
									</select>
								</td>
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
					        </tr>
					        <tr>
					          <td><?=gettext("Username"); ?></td>
					          <td><input type="text" class="form-control formfld unknown" size="20" id="username" name="username" value="<?=htmlspecialchars($pconfig['username']);?>"></td>
					        </tr>
					        <tr>
					          <td><?=gettext("Password"); ?></td>
					          <td><input type="password" class="form-control formfld pwd" size="20" id="password" name="password" value="<?=htmlspecialchars($pconfig['password']);?>"></td>
					        </tr>
					        <tr>
					          <td>&nbsp;</td>
					          <td><input id="save" name="save" type="submit" class="btn btn-primary" value="<?=gettext("Test");?>" /></td>
					        </tr>
				        </tbody>
				    </table>


118 119
				    </div>
				    </div>
120

121 122
				</div>
			</section>
123

124
		</div>
125

Ad Schellevis's avatar
Ad Schellevis committed
126
	</div>
127 128
</section>
</form>
Ad Schellevis's avatar
Ad Schellevis committed
129

130
<?php include('foot.inc');?>