file-transfer-proxy.jsp 4.91 KB
Newer Older
1 2 3 4
<%--
  -	$Revision: $
  -	$Date: $
  -
5
  - Copyright (C) 2005-2008 Jive Software. All rights reserved.
6
  -
7 8 9 10 11 12 13 14 15 16 17
  - Licensed under the Apache License, Version 2.0 (the "License");
  - you may not use this file except in compliance with the License.
  - You may obtain a copy of the License at
  -
  -     http://www.apache.org/licenses/LICENSE-2.0
  -
  - Unless required by applicable law or agreed to in writing, software
  - distributed under the License is distributed on an "AS IS" BASIS,
  - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  - See the License for the specific language governing permissions and
  - limitations under the License.
18 19
--%>
<%@ page import="org.jivesoftware.util.ParamUtils" %>
20
<%@ page import="org.jivesoftware.openfire.filetransfer.proxy.FileTransferProxy" %>
21 22
<%@ page import="java.util.HashMap" %>
<%@ page import="java.util.Map" %>
23
<%@ page import="org.jivesoftware.openfire.XMPPServer"%>
24 25

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
26
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
27 28 29 30 31

<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager"/>
<% webManager.init(request, response, session, application, out); %>

<%
32
    Map<String, String> errors = new HashMap<String, String>();
33
    FileTransferProxy transferProxy = XMPPServer.getInstance().getFileTransferProxy();
34

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    boolean isUpdated = request.getParameter("update") != null;
    boolean isProxyEnabled = ParamUtils.getBooleanParameter(request, "proxyEnabled");
    int port = ParamUtils.getIntParameter(request, "port", 0);

    if (isUpdated) {
        if (isProxyEnabled) {
            if (port <= 0) {
                errors.put("port", "");
            }
        }

        if (errors.isEmpty()) {
            if (isProxyEnabled) {
                transferProxy.setProxyPort(port);
            }
50
            transferProxy.enableFileTransferProxy(isProxyEnabled);
51 52
            // Log the event
            webManager.logEvent("edited file transfer proxy settings", "port = "+port+"\nenabled = "+isProxyEnabled);
53 54 55 56
        }
    }

    if (errors.isEmpty()) {
57
        isProxyEnabled = transferProxy.isProxyEnabled();
58 59 60 61 62 63 64 65 66 67
        port = transferProxy.getProxyPort();
    }
    else {
        if (port == 0) {
            port = transferProxy.getProxyPort();
        }
    }
%>

<html>
68 69 70 71
<head>
<title><fmt:message key="filetransferproxy.settings.title"/></title>
</head>
<meta name="pageID" content="server-transfer-proxy"/>
72
<body>
73

74 75 76 77
<p>
    <fmt:message key="filetransferproxy.settings.info"/>
</p>

78
<%  if (!errors.isEmpty()) { %>
79 80 81 82
<div class="jive-error">
    <table cellpadding="0" cellspacing="0" border="0">
        <tbody>
            <tr>
83
                <td class="jive-icon"><img alt="error" src="images/error-16x16.gif" width="16" height="16"
84 85
                                           border="0"/></td>
                <td class="jive-icon-label">
86
                   <% if (errors.get("port") != null) { %>
87 88 89 90 91 92 93 94 95 96 97 98 99
                    <fmt:message key="filetransferproxy.settings.valid.port"/>
                    <% }  %>
                </td>
            </tr>
        </tbody>
    </table>
</div>
<br>
<%  }
else if (isUpdated) { %>
<div class="jive-success">
    <table cellpadding="0" cellspacing="0" border="0">
        <tbody>
100
            <tr><td class="jive-icon"><img alt="Success" src="images/success-16x16.gif" width="16" height="16"
101 102 103 104 105 106 107 108 109 110 111 112 113 114
                                           border="0"></td>
                <td class="jive-icon-label">
                    <fmt:message key="filetransferproxy.settings.confirm.updated"/>

                </td></tr>
        </tbody>
    </table>
</div><br>
<% }
else { %>
<br>
<% } %>


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
<!-- BEGIN 'Proxy Service' -->
<form action="file-transfer-proxy.jsp" method="post">
	<div class="jive-contentBoxHeader">
		<fmt:message key="filetransferproxy.settings.enabled.legend"/>
	</div>
	<div class="jive-contentBox">
		<table cellpadding="3" cellspacing="0" border="0">
		<tbody>
		<tr valign="middle">
			<td width="1%" nowrap>
				<input type="radio" name="proxyEnabled" value="true" id="rb02"
				<%= (isProxyEnabled ? "checked" : "") %> >
			</td>
			<td width="99%">
				<label for="rb02">
					<b><fmt:message key="filetransferproxy.settings.label_enable"/></b>
					- <fmt:message key="filetransferproxy.settings.label_enable_info"/>
				</label>  <input type="text" size="5" maxlength="10" name="port"
								 value="<%= port %>" >
			</td>
		</tr>
		<tr valign="middle">
			<td width="1%" nowrap>
				<input type="radio" name="proxyEnabled" value="false" id="rb01"
				<%= (!isProxyEnabled ? "checked" : "") %> >
			</td>
			<td width="99%">
				<label for="rb01">
					<b><fmt:message key="filetransferproxy.settings.label_disable"/></b>
					- <fmt:message key="filetransferproxy.settings.label_disable_info"/>
				</label>
			</td>
		</tr>
		</tbody>
		</table>
	</div>
Matt Tucker's avatar
Matt Tucker committed
151
    <input type="submit" name="update" value="<fmt:message key="global.save_settings" />">
152
</form>
153 154
<!-- END 'Proxy Service' -->

155 156
</body>
</html>