system_usermanager_settings_test.php 3.2 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
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
	Copyright (C) 2007 Scott Ullrich <sullrich@gmail.com>
	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("auth.inc");
31
include('head.inc');
Ad Schellevis's avatar
Ad Schellevis committed
32

33 34
if(isset($config['system']['authserver'][0]['host'])){
$auth_server = $config['system']['authserver'][0]['host'];
Ad Schellevis's avatar
Ad Schellevis committed
35 36
$authserver = $_GET['authserver'];
$authcfg = auth_get_authserver($authserver);
37
}
Ad Schellevis's avatar
Ad Schellevis committed
38 39 40

?>

41 42
<body>
	<form method="post" name="iform" id="iform">
43

Ad Schellevis's avatar
Ad Schellevis committed
44 45 46 47 48 49
<?php

if (!$authcfg) {
	printf(gettext("Could not find settings for %s%s"), htmlspecialchars($authserver), "<p/>");
} else {

50
	echo "<table class='table table-striped'>";
Ad Schellevis's avatar
Ad Schellevis committed
51

52 53
	echo "<tr><th colspan='2'>".sprintf(gettext("Testing %s LDAP settings... One moment please..."), $g['product_name'])."</th></tr>";
	echo "<tr><td>" . gettext("Attempting connection to") . " " . $authserver . "</td>";
Ad Schellevis's avatar
Ad Schellevis committed
54
	if(ldap_test_connection($authcfg)) {
55
		echo "<td><font color='green'>OK</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
56

57
		echo "<tr><td>" . gettext("Attempting bind to") . " " .  $authserver . "</td>";
Ad Schellevis's avatar
Ad Schellevis committed
58
		if(ldap_test_bind($authcfg)) {
59
			echo "<td><font color='green'>OK</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
60

61
			echo "<tr><td>" . gettext("Attempting to fetch Organizational Units from") . " " . $authserver . "</td>";
Ad Schellevis's avatar
Ad Schellevis committed
62 63
			$ous = ldap_get_user_ous(true, $authcfg);
			if(count($ous)>1) {
64
				echo "<td><font color=green>OK</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
65
				if(is_array($ous)) {
66
					echo "<tr><td colspan='2'>".gettext("Organization units found") . "</td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
67
					foreach($ous as $ou) {
68
						echo "<tr><td colspan='2'>" . $ou . "</td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
69 70 71
					}
				}
			} else
72
				echo "<td><font color='red'>" . gettext("failed") . "</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
73 74

		} else {
75
			echo "<td><font color='red'>" . gettext("failed") . "</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
76 77
		}
	} else {
78
		echo "<td><font color='red'>" . gettext("failed") . "</font></td></tr>";
Ad Schellevis's avatar
Ad Schellevis committed
79 80 81 82
	}
}

?>
83 84 85 86 87 88
	<tr>
		<td colspan="2" align="right">
			<input type="Button" value="<?=gettext("Close"); ?>" class="btn btn-default" onClick='Javascript:window.close();'>
		</td>
	</tr>
	</table>
Ad Schellevis's avatar
Ad Schellevis committed
89 90 91
	</form>
</body>
</html>