mirror of
https://github.com/e107inc/e107.git
synced 2025-02-06 23:39:11 +01:00
134 lines
3.9 KiB
PHP
134 lines
3.9 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
+ ----------------------------------------------------------------------------+
|
||
|
| e107 website system
|
||
|
|
|
||
|
| Steve Dunstan 2001-2002
|
||
|
| http://e107.org
|
||
|
| jalist@e107.org
|
||
|
|
|
||
|
| Released under the terms and conditions of the
|
||
|
| GNU General Public License (http://gnu.org).
|
||
|
|
|
||
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/alt_auth/ldap_conf.php,v $
|
||
|
| $Revision: 1.1.1.1 $
|
||
|
| $Date: 2006-12-02 04:34:43 $
|
||
|
| $Author: mcfly_e107 $
|
||
|
+----------------------------------------------------------------------------+
|
||
|
*/
|
||
|
$eplug_admin = true;
|
||
|
require_once("../../class2.php");
|
||
|
require_once(e_ADMIN."auth.php");
|
||
|
require_once(e_HANDLER."form_handler.php");
|
||
|
include_lan("languages/".e_LANGUAGE."/lan_ldap_auth.php");
|
||
|
define("ALT_AUTH_ACTION", "ldap");
|
||
|
require_once(e_PLUGIN."alt_auth/alt_auth_adminmenu.php");
|
||
|
|
||
|
|
||
|
$server_types[1]="LDAP";
|
||
|
$server_types[2]="ActiveDirectory";
|
||
|
$server_types[3]="eDirectory";
|
||
|
|
||
|
$ldap_ver[1]="2";
|
||
|
$ldap_ver[2]="3";
|
||
|
|
||
|
if($_POST['update'])
|
||
|
{
|
||
|
foreach($_POST as $k => $v)
|
||
|
{
|
||
|
if(preg_match("/ldap_/", $k))
|
||
|
{
|
||
|
if($sql -> db_Select("alt_auth", "*", "auth_type='ldap' AND auth_parmname='{$k}' "))
|
||
|
{
|
||
|
$sql -> db_Update("alt_auth", "auth_parmval='{$v}' WHERE auth_type='ldap' AND auth_parmname='{$k}' ");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$sql -> db_Insert("alt_auth", "'ldap','{$k}','{$v}' ");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
$message = LDAPLAN_10;
|
||
|
}
|
||
|
|
||
|
if(!function_exists('ldap_connect'))
|
||
|
{
|
||
|
$message = "<div style='color:#f00; font-weight:bold'>".LDAPLAN_11."</div>";
|
||
|
}
|
||
|
|
||
|
if($message)
|
||
|
{
|
||
|
$ns->tablerender("","<div style='text-align:center;'>".$message."</div>");
|
||
|
}
|
||
|
|
||
|
$ldap['ldap_edirfilter'] == "";
|
||
|
$sql -> db_Select("alt_auth", "*", "auth_type = 'ldap' ");
|
||
|
while($row = $sql->db_Fetch())
|
||
|
{
|
||
|
$ldap[$row['auth_parmname']] = $row['auth_parmval'];
|
||
|
}
|
||
|
|
||
|
$current_filter = "(&(cn=[USERNAME]){$ldap['ldap_edirfilter']})";
|
||
|
|
||
|
$frm = new form;
|
||
|
$text = $frm -> form_open("POST",e_SELF);
|
||
|
$text .= "<table style='width:96%'>";
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_12."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_select_open("ldap_servertype");
|
||
|
foreach($server_types as $v)
|
||
|
{
|
||
|
$sel = ($ldap['ldap_servertype'] == $v) ? " Selected" : "";
|
||
|
$text .= $frm -> form_option($v, $sel, $v);
|
||
|
}
|
||
|
$text .= $frm -> form_select_close();
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_1."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_text("ldap_server", 35, $ldap['ldap_server'], 120);
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_2."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_text("ldap_basedn", 35, $ldap['ldap_basedn'], 120);
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_3."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_text("ldap_user", 35, $ldap['ldap_user'], 120);
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_4."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_text("ldap_passwd", 35, $ldap['ldap_passwd'], 120);
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_5."</td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_select_open("ldap_version");
|
||
|
|
||
|
foreach($ldap_ver as $v)
|
||
|
{
|
||
|
$sel = ($ldap['ldap_version'] == $v) ? " Selected" : "";
|
||
|
$text .= $frm -> form_option($v, $sel, $v);
|
||
|
}
|
||
|
|
||
|
$text .= $frm -> form_select_close();
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader3'>".LDAPLAN_7."<br /><span class='smalltext'>".LDAPLAN_8."</span></td><td class='forumheader3'>";
|
||
|
$text .= $frm -> form_text("ldap_edirfilter", 35, $ldap['ldap_edirfilter'], 120);
|
||
|
$text .= "<br /><span class='smalltext'>".LDAPLAN_9."<br />{$current_filter}</span></td></tr>";
|
||
|
|
||
|
$text .= "<tr><td class='forumheader' colspan='2' style='text-align:center;'>";
|
||
|
$text .= $frm -> form_button("submit", "update", LDAPLAN_13);
|
||
|
$text .= "</td></tr>";
|
||
|
|
||
|
$text .= "</table>";
|
||
|
$text .= $frm -> form_close();
|
||
|
|
||
|
$ns -> tablerender(LDAPLAN_6,$text);
|
||
|
require_once(e_ADMIN."footer.php");
|
||
|
|
||
|
function ldap_conf_adminmenu()
|
||
|
{
|
||
|
alt_auth_adminmenu();
|
||
|
}
|
||
|
|
||
|
?>
|