muc-tasks.jsp 7.37 KB
Newer Older
Gaston Dombiak's avatar
Gaston Dombiak committed
1 2 3 4 5 6 7 8 9 10 11 12
<%--
  -	$Revision$
  -	$Date$
  -
  - Copyright (C) 2004 Jive Software. All rights reserved.
  -
  - This software is published under the terms of the GNU Public License (GPL),
  - a copy of which is included in this distribution.
--%>

<%@ page import="org.jivesoftware.util.*,
                 java.util.*,
13
                 org.jivesoftware.wildfire.muc.MultiUserChatServer"
Gaston Dombiak's avatar
Gaston Dombiak committed
14 15 16
    errorPage="error.jsp"
%>

17
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
18
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
19 20 21

<jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" />
<% webManager.init(request, response, session, application, out ); %>
Gaston Dombiak's avatar
Gaston Dombiak committed
22 23 24 25 26 27 28 29 30 31 32 33

<%  // Get parameters
    boolean kickEnabled = ParamUtils.getBooleanParameter(request,"kickEnabled");
    String idletime = ParamUtils.getParameter(request,"idletime");
    String logfreq = ParamUtils.getParameter(request,"logfreq");
    String logbatchsize = ParamUtils.getParameter(request,"logbatchsize");
    boolean kickSettings = request.getParameter("kickSettings") != null;
    boolean logSettings = request.getParameter("logSettings") != null;
    boolean kickSettingSuccess = request.getParameter("kickSettingSuccess") != null;
    boolean logSettingSuccess = request.getParameter("logSettingSuccess") != null;

	// Get muc server
34
    MultiUserChatServer mucServer = webManager.getMultiUserChatServer();
Gaston Dombiak's avatar
Gaston Dombiak committed
35

36
    Map<String, String> errors = new HashMap<String, String>();
Gaston Dombiak's avatar
Gaston Dombiak committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    // Handle an update of the kicking task settings
    if (kickSettings) {
        if (!kickEnabled) {
            // Disable kicking users by setting a value of -1
            mucServer.setUserIdleTime(-1);
            response.sendRedirect("muc-tasks.jsp?kickSettingSuccess=true");
            return;
        }
        // do validation
        if (idletime == null) {
            errors.put("idletime","idletime");
        }
        int idle = 0;
        // Try to obtain an int from the provided strings
        if (errors.size() == 0) {
            try {
Matt Tucker's avatar
Matt Tucker committed
53
                idle = Integer.parseInt(idletime) * 1000 * 60;
Gaston Dombiak's avatar
Gaston Dombiak committed
54 55
            }
            catch (NumberFormatException e) {
Matt Tucker's avatar
Matt Tucker committed
56
                errors.put("idletime","idletime");
Gaston Dombiak's avatar
Gaston Dombiak committed
57
            }
Matt Tucker's avatar
Matt Tucker committed
58
            if (idle < 0) {
Gaston Dombiak's avatar
Gaston Dombiak committed
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
                errors.put("idletime","idletime");
            }
        }

        if (errors.size() == 0) {
            mucServer.setUserIdleTime(idle);
            response.sendRedirect("muc-tasks.jsp?kickSettingSuccess=true");
            return;
        }
    }

    // Handle an update of the log conversations task settings
    if (logSettings) {
        // do validation
        if (logfreq == null) {
            errors.put("logfreq","logfreq");
        }
        if (logbatchsize == null) {
            errors.put("logbatchsize","logbatchsize");
        }
        int frequency = 0;
        int batchSize = 0;
        // Try to obtain an int from the provided strings
        if (errors.size() == 0) {
            try {
                frequency = Integer.parseInt(logfreq) * 1000;
            }
            catch (NumberFormatException e) {
                errors.put("logfreq","logfreq");
            }
            try {
                batchSize = Integer.parseInt(logbatchsize);
            }
            catch (NumberFormatException e) {
                errors.put("logbatchsize","logbatchsize");
            }
        }

        if (errors.size() == 0) {
            mucServer.setLogConversationsTimeout(frequency);
            mucServer.setLogConversationBatchSize(batchSize);
            response.sendRedirect("muc-tasks.jsp?logSettingSuccess=true");
            return;
        }
    }
%>

106
<html>
107 108 109 110 111 112
<head>
<title><fmt:message key="muc.tasks.title"/></title>
<meta name="pageID" content="muc-tasks"/>
<meta name="helpPage" content="edit_idle_user_settings.html"/>
</head>
<body>
Gaston Dombiak's avatar
Gaston Dombiak committed
113 114

<p>
115
<fmt:message key="muc.tasks.info" />
Gaston Dombiak's avatar
Gaston Dombiak committed
116 117 118 119 120 121 122 123 124 125 126
</p>

<%  if (kickSettingSuccess || logSettingSuccess) { %>

    <div class="jive-success">
    <table cellpadding="0" cellspacing="0" border="0">
    <tbody>
        <tr><td class="jive-icon"><img src="images/success-16x16.gif" width="16" height="16" border="0"></td>
        <td class="jive-icon-label">
        <%  if (kickSettingSuccess) { %>

127
            <fmt:message key="muc.tasks.update" />
Gaston Dombiak's avatar
Gaston Dombiak committed
128 129 130

        <%  } else if (logSettingSuccess) { %>

131
            <fmt:message key="muc.tasks.log" />
Gaston Dombiak's avatar
Gaston Dombiak committed
132 133 134 135 136 137 138 139 140

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

<%  } %>

Matt Tucker's avatar
Matt Tucker committed
141 142 143 144 145 146 147
<% if (errors.size() != 0) {  %>

   <table class="jive-error-message" cellpadding="3" cellspacing="0" border="0" width="350"> <tr valign="top">
    <td width="1%"><img src="images/error-16x16.gif" width="16" height="16" border="0"></td>
    <td width="99%" class="jive-error-text">

		<% if (errors.get("idletime") != null) { %>
148
                <fmt:message key="muc.tasks.valid_idel_minutes" />
Matt Tucker's avatar
Matt Tucker committed
149 150
        <% }
           else if (errors.get("logfreq") != null) { %>
151
                <fmt:message key="muc.tasks.valid_frequency" />
Matt Tucker's avatar
Matt Tucker committed
152 153
        <%  }
            else if (errors.get("logbatchsize") != null) { %>
154
                <fmt:message key="muc.tasks.valid_batch" />
Matt Tucker's avatar
Matt Tucker committed
155 156 157 158 159 160 161
            <%  } %>
    </td>
    </tr>
    </table><br>

<% } %>

Gaston Dombiak's avatar
Gaston Dombiak committed
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
<!-- BEGIN 'Idle User Settings' -->
<form action="muc-tasks.jsp?kickSettings" method="post">
	<div class="jive-contentBoxHeader">
		<fmt:message key="muc.tasks.user_setting" />
	</div>
	<div class="jive-contentBox">
		<table cellpadding="3" cellspacing="0" border="0">
		<tbody>
			<tr valign="middle">
				<td width="1%" nowrap>
					<input type="radio" name="kickEnabled" value="false" id="rb01"
					 <%= ((mucServer.getUserIdleTime() < 0) ? "checked" : "") %>>
				</td>
				<td width="99%">
					<label for="rb01"><fmt:message key="muc.tasks.never_kick" /></label>
				</td>
			</tr>
			<tr valign="middle">
				<td width="1%" nowrap>
					<input type="radio" name="kickEnabled" value="true" id="rb02"
					 <%= ((mucServer.getUserIdleTime() > -1) ? "checked" : "") %>>
				</td>
				<td width="99%">
						<label for="rb02"><fmt:message key="muc.tasks.kick_user" /></label>
						 <input type="text" name="idletime" size="5" maxlength="5"
							 onclick="this.form.kickEnabled[1].checked=true;"
							 value="<%= mucServer.getUserIdleTime() == -1 ? 30 : mucServer.getUserIdleTime() / 1000 / 60 %>">
						 <fmt:message key="global.minutes" />.
				</td>
			</tr>
		</tbody>
		</table>
Matt Tucker's avatar
Matt Tucker committed
195 196
        <br/>
        <input type="submit" value="<fmt:message key="global.save_settings" />">
197
	</div>
Gaston Dombiak's avatar
Gaston Dombiak committed
198
</form>
199
<!-- END 'Idle User Settings' -->
Gaston Dombiak's avatar
Gaston Dombiak committed
200 201 202

<br>

203
<!-- BEGIN 'Conversation Logging' -->
Gaston Dombiak's avatar
Gaston Dombiak committed
204
<form action="muc-tasks.jsp?logSettings" method="post">
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	<div class="jive-contentBoxHeader">
		<fmt:message key="muc.tasks.conversation.logging" />
	</div>
	<div class="jive-contentBox">
		<table cellpadding="3" cellspacing="0" border="0" >
		<tr valign="middle">
			<td width="1%" nowrap class="c1">
				<fmt:message key="muc.tasks.flush" />
			</td>
			<td width="99%">
				<input type="text" name="logfreq" size="15" maxlength="50"
				 value="<%= mucServer.getLogConversationsTimeout() / 1000 %>">
			</td>
		</tr>
		<tr valign="middle">
			<td width="1%" nowrap class="c1">
				<fmt:message key="muc.tasks.batch" />
			</td>
			<td width="99%">
				<input type="text" name="logbatchsize" size="15" maxlength="50"
				 value="<%= mucServer.getLogConversationBatchSize() %>">
			</td>
		</tr>
		</table>
Matt Tucker's avatar
Matt Tucker committed
229 230
        <br/>
        <input type="submit" value="<fmt:message key="global.save_settings" />">
231
	</div>
Gaston Dombiak's avatar
Gaston Dombiak committed
232
</form>
233 234
<!-- END 'Conversation Logging' -->

Gaston Dombiak's avatar
Gaston Dombiak committed
235

236
</body>
237
</html>