⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ldap-server.jspf

📁 openfire 服务器源码下载
💻 JSPF
字号:
<%@ page import="org.jivesoftware.util.LocaleUtils"%><%@ page import="org.jivesoftware.util.ParamUtils"%><%@ page import="org.jivesoftware.openfire.ldap.LdapManager"%><%@ page import="java.util.*" %><%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %><%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %><%    String host;    int port = 389;    String baseDN;    String adminDN;    String adminPassword;    boolean connectionPoolEnabled = true;    boolean sslEnabled = false;    boolean debugEnabled = false;    boolean referralsEnabled = false;    // Get parameters    boolean save = request.getParameter("save") != null;    boolean test = request.getParameter("test") != null;    LdapManager manager = LdapManager.getInstance();    Map<String, String> errors = new HashMap<String, String>();    if (save || test) {        host = ParamUtils.getParameter(request, "host");        if (host == null) {            errors.put("host", LocaleUtils.getLocalizedString("setup.ldap.server.host_error"));        }        port = ParamUtils.getIntParameter(request, "port", port);        if (port <= 0) {            errors.put("port", LocaleUtils.getLocalizedString("setup.ldap.server.port_error"));        }        baseDN = ParamUtils.getParameter(request, "basedn");        if (baseDN == null) {            errors.put("baseDN", LocaleUtils.getLocalizedString("setup.ldap.server.basedn_error"));        }        adminDN = ParamUtils.getParameter(request, "admindn");        adminPassword = ParamUtils.getParameter(request, "adminpwd");        connectionPoolEnabled =                ParamUtils.getBooleanParameter(request, "connectionpool", connectionPoolEnabled);        sslEnabled = ParamUtils.getBooleanParameter(request, "ssl", sslEnabled);        debugEnabled = ParamUtils.getBooleanParameter(request, "debug", debugEnabled);        referralsEnabled = ParamUtils.getBooleanParameter(request, "referrals", referralsEnabled);        if (errors.isEmpty()) {            // Store settings in a map and keep it in the session            Map<String, String> settings = new HashMap<String, String>();            settings.put("ldap.serverType", serverType);            settings.put("ldap.host", host);            settings.put("ldap.port", Integer.toString(port));            settings.put("ldap.baseDN", baseDN);            settings.put("ldap.adminDN", adminDN);            settings.put("ldap.adminPassword", adminPassword);            settings.put("ldap.connectionPoolEnabled",                    Boolean.toString(connectionPoolEnabled));            settings.put("ldap.sslEnabled", Boolean.toString(sslEnabled));            settings.put("ldap.debugEnabled", Boolean.toString(debugEnabled));            settings.put("ldap.autoFollowReferrals", Boolean.toString(referralsEnabled));            // Always disable connection pooling so that connections aren't left hanging open.            settings.put("ldap.connectionPoolEnabled", "false");            session.setAttribute("ldapSettings", settings);            if (save) {                // Save settings and redirect                Collection<String> hosts = new ArrayList<String>();                StringTokenizer st = new StringTokenizer(host, " ,\t\n\r\f");                while (st.hasMoreTokens()) {                    hosts.add(st.nextToken());                }                manager.setHosts(hosts);                manager.setPort(port);                manager.setBaseDN(baseDN);                manager.setAdminDN(adminDN);                manager.setAdminPassword(adminPassword);                manager.setConnectionPoolEnabled(connectionPoolEnabled);                manager.setSslEnabled(sslEnabled);                manager.setDebugEnabled(debugEnabled);                manager.setFollowReferralsEnabled(referralsEnabled);                // Redirect to next step.                response.sendRedirect(nextPage);                return;            }        }    } else {        // See if there are already values for the variables defined.        StringBuilder sb = new StringBuilder();        for (String aHost : LdapManager.getInstance().getHosts()) {            sb.append(aHost).append(", ");        }        host = sb.toString();        if (host.trim().length() > 0) {            host = host.substring(0, host.length() - 2);        }        port = manager.getPort();        baseDN = manager.getBaseDN();        adminDN = manager.getAdminDN();        adminPassword = manager.getAdminPassword();        connectionPoolEnabled = manager.isConnectionPoolEnabled();        sslEnabled = manager.isSslEnabled();        debugEnabled = manager.isDebugEnabled();        referralsEnabled = manager.isFollowReferralsEnabled();    }%><html><head>    <title><fmt:message key="setup.ldap.title" /></title>    <% for (Map.Entry<String, String> entry : meta.entrySet()) { %>    <meta name="<%= entry.getKey()%>" content="<%= entry.getValue()%>"/>    <% } %></head><body>    <% if (test && errors.isEmpty()) { %>        <a href="<%= testPage%>" id="lbmessage" title="<fmt:message key="global.test" />" style="display:none;"></a>        <script type="text/javascript">            function loadMsg() {                var lb = new lightbox(document.getElementById('lbmessage'));                lb.activate();            }            setTimeout('loadMsg()', 250);        </script>    <% } %>    <% if (initialSetup) { %>    <h1><fmt:message key="setup.ldap.profile" />: <span><fmt:message key="setup.ldap.connection_settings" /></span></h1>    <% } %>    <!-- BEGIN jive-contentBox_stepbar -->	<div id="jive-contentBox_stepbar">		<span class="jive-stepbar_step"><strong>1. <fmt:message key="setup.ldap.connection_settings" /></strong></span>		<span class="jive-stepbar_step"><em>2. <fmt:message key="setup.ldap.user_mapping" /></em></span>		<span class="jive-stepbar_step"><em>3. <fmt:message key="setup.ldap.group_mapping" /></em></span>	</div>	<!-- END jive-contentBox-stepbar -->    <!-- BEGIN jive-contentBox -->    <div class="jive-contentBox jive-contentBox_for-stepbar">	<h2><fmt:message key="setup.ldap.step_one" />: <span><fmt:message key="setup.ldap.connection_settings" /></span></h2>	<p><fmt:message key="setup.ldap.server.description" /></p>    <%  if (errors.size() > 0) { %>    <div class="error">        <% for (String error:errors.values()) { %>            <%= error%><br/>        <% } %>    </div>    <%  } %>    <form action="<%= currentPage%>" method="post">		<!-- BEGIN jive-contentBox_bluebox -->		<div class="jive-contentBox_bluebox">			<table border="0" cellpadding="0" cellspacing="2">			<tr>			    <td colspan="4"><strong><fmt:message key="setup.ldap.server.ldap_server" /></strong></td>			</tr>            <% if (initialSetup) { %>            <tr>                <td align="right" width="1%" nowrap="nowrap"><fmt:message key="setup.ldap.server.type" />:</td>                <td colspan="3" nowrap>                    <select name="servertype" size="1" id="jiveLDAPserverType" style="width:90%;">                        <option value="1" <%= serverType == null ? "selected" : "" %>><fmt:message key="setup.ldap.server.type_select" /></option>                        <option value="2" <%= "activedirectory".equals(serverType) ? "selected" : "" %>>Active Directory</option>                        <option value="3" <%= "openldap".equals(serverType) ? "selected" : "" %>>OpenLDAP</option>                        <option value="4" <%= "other".equals(serverType) ? "selected" : "" %>><fmt:message key="setup.ldap.server.type_other" /></option>                    </select><span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.type_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', 8000);"></span>                </td>			</tr>            <% } %>            <tr>			    <td align="right" width="1%" nowrap="nowrap"><fmt:message key="setup.ldap.server.host" />:</td>                <td width="1%">                    <table cellpadding="0" cellspacing="0" border="0" width="100%">                    <tr>                        <td width="1%" nowrap="nowrap">                            <input type="text" name="host" id="jiveLDAPphost" size="22" maxlength="50" value="<%= host!=null?host:"" %>">                        </td>                        <td width="99%">                            <span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.host_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', 8000);"></span>                        </td>                    </tr>                    </table>                </td>                <td align="right" width="1%" nowrap="nowrap">&nbsp;&nbsp; <fmt:message key="setup.ldap.server.port" />:</td>                <td><input type="text" name="port" id="jiveLDAPport" size="5" maxlength="5" value="<%= port %>"><span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.port_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', 8000);"></span></td>			</tr>			<tr>                <td align="right"><fmt:message key="setup.ldap.server.basedn" />:</td>                <td colspan="3">                    <input type="text" name="basedn" id="jiveLDAPbasedn" size="40" maxlength="150" value="<%= baseDN!=null?baseDN:""%>" style="width:90%;">                    <span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.basedn_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', 16000);"></span>                </td>			</tr>            <tr><td colspan="4">&nbsp;</td></tr>            <tr>			    <td colspan="4"><strong><fmt:message key="setup.ldap.server.auth" />:</strong></td>			</tr>			<tr>                <td align="right" width="1%" nowrap="nowrap"><fmt:message key="setup.ldap.server.admindn" />:</td>                <td colspan="3">                    <input type="text" name="admindn" id="jiveLDAPadmindn" size="40" maxlength="150" value="<%= adminDN!=null?adminDN:""%>" style="width:90%;">                    <span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.admindn_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', -1);"></span>                </td>			</tr>			<tr>                <td align="right" width="1%" nowrap="nowrap"><fmt:message key="setup.ldap.server.password" />:</td>                <td colspan="3"><input type="password" name="adminpwd" id="jiveLDAPadminpwd" size="22" maxlength="30" value="<%= adminPassword!=null?adminPassword:""%>"> <span class="jive-setup-helpicon" onmouseover="domTT_activate(this, event, 'content', '<fmt:message key="setup.ldap.server.password_help" />', 'styleClass', 'jiveTooltip', 'trail', true, 'delay', 300, 'lifetime', 8000);"></span></td>			</tr>			</table>		</div>		<!-- END jive-contentBox_bluebox -->		<!-- BEGIN jiveAdvancedButton -->		<div class="jiveAdvancedButton">			<a href="#" onclick="togglePanel(jiveAdvanced); return false;" id="jiveAdvancedLink"><fmt:message key="setup.ldap.advanced" /></a>		</div>		<!-- END jiveAdvancedButton -->		<!-- BEGIN jiveAdvancedPanelcs (advanced connection settings) -->		<div class="jiveadvancedPanelcs" id="jiveAdvanced" style="display: none;">			<div>				<table border="0" cellpadding="0" cellspacing="1">				<thead>				<tr>					<th width="10%"></th>					<th></th>					<th width="50"><fmt:message key="global.yes" /></th>					<th width="50"><fmt:message key="global.no" /></th>				</tr>				</thead>				<tbody>				<tr>					<td class="jive-advancedLabel" nowrap>						<fmt:message key="setup.ldap.server.connection_pool" />:					</td>					<td class="jive-advancedDesc jive-advancedBorderBottom jive-advancedBorderRight">					    <fmt:message key="setup.ldap.server.connection_pool_help" />					</td>					<td class="jive-advancedBorderBottom jive-advancedBorderRight" align="center">						<input type="radio" name="connectionpool" value="true" <% if (connectionPoolEnabled) { %>checked <% } %>>					</td>					<td class="jive-advancedBorderBottom" align="center">						<input type="radio" name="connectionpool" value="false" <% if (!connectionPoolEnabled) { %>checked <% } %>>					</td>				</tr>				<tr>					<td class="jive-advancedLabel" nowrap>						<fmt:message key="setup.ldap.server.ssl" />:					</td>					<td class="jive-advancedDesc jive-advancedBorderBottom jive-advancedBorderRight">						<fmt:message key="setup.ldap.server.ssl_help" />					</td>					<td class="jive-advancedBorderBottom jive-advancedBorderRight" align="center">						<input type="radio" name="ssl" value="true" <% if (sslEnabled) { %>checked <% } %>>					</td>					<td class="jive-advancedBorderBottom" align="center">						<input type="radio" name="ssl" value="false" <% if (!sslEnabled) { %>checked <% } %>>					</td>				</tr>				<tr>					<td class="jive-advancedLabel" nowrap>						<fmt:message key="setup.ldap.server.debug" />:					</td>					<td class="jive-advancedDesc jive-advancedBorderBottom jive-advancedBorderRight">						<fmt:message key="setup.ldap.server.debug_help" />					</td>					<td class="jive-advancedBorderBottom jive-advancedBorderRight" align="center">						<input type="radio" name="debug" value="true" <% if (debugEnabled) { %>checked <% } %>>					</td>					<td class="jive-advancedBorderBottom" align="center">						<input type="radio" name="debug" value="false" <% if (!debugEnabled) { %>checked <% } %>>					</td>				</tr>				<tr>					<td class="jive-advancedLabel" nowrap>						<fmt:message key="setup.ldap.server.referral" />:					</td>					<td class="jive-advancedDesc jive-advancedBorderBottom jive-advancedBorderRight">						<fmt:message key="setup.ldap.server.referral_help" />					</td>					<td class="jive-advancedBorderBottom jive-advancedBorderRight" align="center">						<input type="radio" name="referrals" value="true" <% if (referralsEnabled) { %>checked <% } %>>					</td>					<td class="jive-advancedBorderBottom" align="center">						<input type="radio" name="referrals" value="false" <% if (!referralsEnabled) { %>checked <% } %>>					</td>				</tr>				</tbody>				</table>			</div>		</div>		<!-- END jiveAdvancedPanelcs (advanced connection settings) -->		<!-- BEGIN jive-buttons -->		<div class="jive-buttons">			<!-- BEGIN right-aligned buttons -->			<div align="right">                <input type="Submit" name="test" value="<fmt:message key="setup.ldap.test" />" id="jive-setup-test" border="0">                <input type="Submit" name="save" value="<fmt:message key="setup.ldap.continue" />" id="jive-setup-save" border="0">			</div>			<!-- END right-aligned buttons -->		</div>		<!-- END jive-buttons -->	</form>	</div>	<!-- END jive-contentBox --></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -