1
2
3
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
31
32
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<%--
- $RCSfile$
- $Revision$
- $Date$
--%>
<%@ page import="org.jivesoftware.util.ParamUtils,
org.jivesoftware.util.JiveGlobals,
java.util.Map,
java.util.HashMap,
java.net.InetAddress,
org.jivesoftware.messenger.XMPPServer"
%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<%@ include file="setup-global.jspf" %>
<% // Get parameters
String domain = ParamUtils.getParameter(request,"domain");
int embeddedPort = ParamUtils.getIntParameter(request, "embeddedPort", -1);
int securePort = ParamUtils.getIntParameter(request, "securePort", -1);
boolean sslEnabled = ParamUtils.getBooleanParameter(request, "sslEnabled", true);
boolean doContinue = request.getParameter("continue") != null;
// handle a continue request:
Map errors = new HashMap();
if (doContinue) {
// Validate parameters
if (domain == null) {
errors.put("domain","domain");
}
if (XMPPServer.getInstance().isStandAlone()) {
if (embeddedPort < 0) {
errors.put("embeddedPort","embeddedPort");
}
}
else {
embeddedPort = -1;
securePort = -1;
}
// Continue if there were no errors
if (errors.size() == 0) {
Map xmppSettings = new HashMap();
xmppSettings.put("xmpp.domain",domain);
xmppSettings.put("xmpp.socket.ssl.active",""+sslEnabled);
xmppSettings.put("xmpp.auth.anonymous", "true" );
session.setAttribute("xmppSettings", xmppSettings);
Map xmlSettings = new HashMap();
xmlSettings.put("adminConsole.port",Integer.toString(embeddedPort));
xmlSettings.put("adminConsole.securePort",Integer.toString(securePort));
session.setAttribute("xmlSettings", xmlSettings);
// update the sidebar status
session.setAttribute("jive.setup.sidebar.2","done");
session.setAttribute("jive.setup.sidebar.3","in_progress");
// successful, so redirect
response.sendRedirect("setup-datasource-settings.jsp");
return;
}
}
// Load the current values:
if (!doContinue) {
domain = JiveGlobals.getProperty("xmpp.domain");
embeddedPort = JiveGlobals.getXMLProperty("adminConsole.port", 9090);
securePort = JiveGlobals.getXMLProperty("adminConsole.securePort", 9091);
sslEnabled = JiveGlobals.getBooleanProperty("xmpp.socket.ssl.active", true);
// If the domain is still blank, guess at the value:
if (domain == null) {
domain = InetAddress.getLocalHost().getHostName().toLowerCase();
}
}
%>
<%@ include file="setup-header.jspf" %>
<style type="text/css">
LABEL { font-weight : normal; }
</style>
<p class="jive-setup-page-header">
<fmt:message key="setup.host.settings.title" />
</p>
<p>
<fmt:message key="setup.host.settings.info" />
</p>
<form action="setup-host-settings.jsp" name="f" method="post">
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<tr valign="top">
<td width="1%" nowrap>
<fmt:message key="setup.host.settings.domain" />
<% if (errors.get("domain") != null) { %>
<span class="jive-error-text"><br>
<fmt:message key="setup.host.settings.invalid_domain" />
</span>
<% } %>
</td>
<td width="99%">
<input type="text" size="30" maxlength="150" name="domain"
value="<%= ((domain != null) ? domain : "") %>">
<span class="jive-description">
<br>
<fmt:message key="setup.host.settings.hostname" />
</span>
</td>
</tr>
<% if (XMPPServer.getInstance().isStandAlone()){ %>
<tr valign="top">
<td width="1%" nowrap>
<fmt:message key="setup.host.settings.port" />
<% if (errors.get("embeddedPort") != null) { %>
<span class="jive-error-text"><br>
<fmt:message key="setup.host.settings.invalid_port" />
</span>
<% } %>
</td>
<td width="99%">
<input type="text" size="6" maxlength="6" name="embeddedPort"
value="<%= ((embeddedPort != -1) ? ""+embeddedPort : "9090") %>">
<span class="jive-description">
<br>
<fmt:message key="setup.host.settings.port_number" />
</span>
</td>
</tr>
<tr valign="top">
<td width="1%" nowrap>
<fmt:message key="setup.host.settings.secure_port" />
<% if (errors.get("securePort") != null) { %>
<span class="jive-error-text"><br>
<fmt:message key="setup.host.settings.invalid_port" />
</span>
<% } %>
</td>
<td width="99%">
<input type="text" size="6" maxlength="6" name="securePort"
value="<%= ((securePort != -1) ? ""+securePort : "9091") %>">
<span class="jive-description">
<br>
<fmt:message key="setup.host.settings.secure_port_number" />
</span>
</td>
</tr>
<% } %>
<tr valign="middle">
<td width="1%" nowrap>
<fmt:message key="setup.host.settings.ssl" />
</td>
<td width="99%">
<input type="radio" name="sslEnabled" value="true" id="rb01"
<%= ((sslEnabled) ? " checked" : "") %>>
<label for="rb01"><fmt:message key="setup.host.settings.yes" /></label>
<input type="radio" name="sslEnabled" value="false" id="rb02"
<%= ((!sslEnabled) ? " checked" : "") %>>
<label for="rb02"><fmt:message key="setup.host.settings.no" /></label>
<span class="jive-description">
<br>
<fmt:message key="setup.host.settings.secure" />
</span>
</td>
</tr>
</table>
<br><br>
<hr size="0">
<div align="right">
<input type="submit" name="continue" value=" <fmt:message key="global.continue" /> ">
</div>
</form>
<script language="JavaScript" type="text/javascript">
// give focus to domain field
document.f.domain.focus();
</script>
<%@ include file="setup-footer.jsp" %>