diag_authentication.php 4.94 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
	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.
*/

29
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
30 31 32
require_once("PEAR.inc");
require_once("radius.inc");

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
function getUserGroups($username, $authcfg)
{
	global $config;

	$member_groups = array();

	$user = getUserEntry($username);
	if ($user !== false) {
		$allowed_groups = local_user_get_groups($user, true);
		if (isset($config['system']['group'])) {
			foreach ($config['system']['group'] as $group) {
				if (in_array($group['name'], $allowed_groups)) {
					$member_groups[] = $group['name'];
				}
			}
		}
	}
	return $member_groups;
}



$input_errors = array();
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
Ad Schellevis's avatar
Ad Schellevis committed
57 58 59
	$pconfig = $_POST;

	$authcfg = auth_get_authserver($_POST['authmode']);
60
	if (!$authcfg) {
Ad Schellevis's avatar
Ad Schellevis committed
61
		$input_errors[] = $_POST['authmode'] . " " . gettext("is not a valid authentication server");
62
	}
Ad Schellevis's avatar
Ad Schellevis committed
63

64
	if (empty($_POST['username']) || empty($_POST['password'])) {
Ad Schellevis's avatar
Ad Schellevis committed
65
		$input_errors[] = gettext("A username and password must be specified.");
66
	}
Ad Schellevis's avatar
Ad Schellevis committed
67

68
	if (count($input_errors) == 0) {
Ad Schellevis's avatar
Ad Schellevis committed
69 70 71 72 73 74 75 76 77 78 79 80 81
		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";
82

Ad Schellevis's avatar
Ad Schellevis committed
83 84 85 86
include("head.inc");

?>

87
<body>
Ad Schellevis's avatar
Ad Schellevis committed
88 89

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

91
<?php if (isset($savemsg)) print_info_box($savemsg);?>
Ad Schellevis's avatar
Ad Schellevis committed
92

93 94
<form id="iform" name="iform" action="<?php echo $_SERVER['REQUEST_URI'];?>" method="post">
<section class="page-content-main">
95
	<div class="container-fluid">
96
		<div class="row">
97

98
			<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors);?>
99

100
			<section class="col-xs-12">
101 102
                <div class="content-box">

Ad Schellevis's avatar
Ad Schellevis committed
103
					<header class="content-box-head container-fluid">
104 105 106
				   <h3>Test a server</h3>
				</header>

Ad Schellevis's avatar
Ad Schellevis committed
107
				    <div class="content-box-main">
108
				    <div class="table-responsive">
109 110 111 112 113
			        <table class="table table-striped __nomb">
				        <tbody>
					        <tr>
					          <td><?=gettext("Authentication Server"); ?></td>
					          <td><select name="authmode" id="authmode" class="form-control" >
114 115 116 117 118 119 120 121 122 123 124
									<?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>
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
					        </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>


142 143
				    </div>
				    </div>
144

145 146
				</div>
			</section>
147

148
		</div>
149

Ad Schellevis's avatar
Ad Schellevis committed
150
	</div>
151 152
</section>
</form>
Ad Schellevis's avatar
Ad Schellevis committed
153

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