diag_authentication.php 4.87 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014 Deciso B.V.
5
	Copyright (C) 2010 Ermal Luçi
Ad Schellevis's avatar
Ad Schellevis committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
	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.
*/

30
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31
require_once("PEAR.inc");
32
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
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
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
58 59 60
	$pconfig = $_POST;

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

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

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

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

?>

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

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

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

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

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

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

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

Ad Schellevis's avatar
Ad Schellevis committed
106
				    <div class="content-box-main">
107
				    <div class="table-responsive">
108 109 110 111 112
			        <table class="table table-striped __nomb">
				        <tbody>
					        <tr>
					          <td><?=gettext("Authentication Server"); ?></td>
					          <td><select name="authmode" id="authmode" class="form-control" >
113 114
									<?php
										$auth_servers = auth_get_authserver_list();
115
										foreach ($auth_servers as $auth_server_id => $auth_server):
116 117 118 119
											$selected = "";
											if ($auth_server['name'] == $pconfig['authmode'])
												$selected = "selected=\"selected\"";
									?>
120
									<option value="<?=$auth_server_id;?>" <?=$selected;?>><?=$auth_server['name'];?></option>
121 122 123
									<?php   endforeach; ?>
									</select>
								</td>
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
					        </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>


141 142
				    </div>
				    </div>
143

144 145
				</div>
			</section>
146

147
		</div>
148

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

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