diag_authentication.php 4.95 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 81 82
		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";
83

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

?>

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

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

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

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

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

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

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

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


143 144
				    </div>
				    </div>
145

146 147
				</div>
			</section>
148

149
		</div>
150

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

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