muc-tasks.jsp 7.55 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 107 108 109 110 111 112
<html>
    <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
<form action="muc-tasks.jsp?kickSettings" method="post">

<fieldset>
165
    <legend><fmt:message key="muc.tasks.user_setting" /></legend>
Gaston Dombiak's avatar
Gaston Dombiak committed
166 167 168
    <div>
    <table cellpadding="3" cellspacing="0" border="0" width="100%">
    <tbody>
Matt Tucker's avatar
Matt Tucker committed
169
        <tr valign="middle">
Gaston Dombiak's avatar
Gaston Dombiak committed
170 171
            <td width="1%" nowrap>
                <input type="radio" name="kickEnabled" value="false" id="rb01"
Matt Tucker's avatar
Matt Tucker committed
172
                 <%= ((mucServer.getUserIdleTime() < 0) ? "checked" : "") %>>
Gaston Dombiak's avatar
Gaston Dombiak committed
173 174
            </td>
            <td width="99%">
175
                <label for="rb01"><fmt:message key="muc.tasks.never_kick" /></label>
Gaston Dombiak's avatar
Gaston Dombiak committed
176 177
            </td>
        </tr>
Matt Tucker's avatar
Matt Tucker committed
178
        <tr valign="middle">
Gaston Dombiak's avatar
Gaston Dombiak committed
179 180 181 182 183
            <td width="1%" nowrap>
                <input type="radio" name="kickEnabled" value="true" id="rb02"
                 <%= ((mucServer.getUserIdleTime() > -1) ? "checked" : "") %>>
            </td>
            <td width="99%">
184
                    <label for="rb02"><fmt:message key="muc.tasks.kick_user" /></label>
Matt Tucker's avatar
Matt Tucker committed
185
                     <input type="text" name="idletime" size="5" maxlength="5"
Gaston Dombiak's avatar
Gaston Dombiak committed
186
                         onclick="this.form.kickEnabled[1].checked=true;"
Matt Tucker's avatar
Matt Tucker committed
187
                         value="<%= mucServer.getUserIdleTime() == -1 ? 30 : mucServer.getUserIdleTime() / 1000 / 60 %>">
188
                     <fmt:message key="global.minutes" />.
Gaston Dombiak's avatar
Gaston Dombiak committed
189 190 191 192 193 194 195 196 197
            </td>
        </tr>
    </tbody>
    </table>
    </div>
</fieldset>

<br><br>

198
<input type="submit" value="<fmt:message key="global.save_settings" />">
Gaston Dombiak's avatar
Gaston Dombiak committed
199 200 201 202 203 204 205 206

</form>

<br>

<form action="muc-tasks.jsp?logSettings" method="post">

<fieldset>
207
    <legend><fmt:message key="muc.tasks.conversation.logging" /></legend>
Gaston Dombiak's avatar
Gaston Dombiak committed
208 209
    <div>
    <table cellpadding="3" cellspacing="0" border="0" width="100%">
Matt Tucker's avatar
Matt Tucker committed
210
    <tr valign="middle">
Gaston Dombiak's avatar
Gaston Dombiak committed
211
        <td width="1%" nowrap class="c1">
212
            <fmt:message key="muc.tasks.flush" />
Gaston Dombiak's avatar
Gaston Dombiak committed
213 214 215 216 217 218
        </td>
        <td width="99%">
            <input type="text" name="logfreq" size="15" maxlength="50"
             value="<%= mucServer.getLogConversationsTimeout() / 1000 %>">
        </td>
    </tr>
Matt Tucker's avatar
Matt Tucker committed
219
    <tr valign="middle">
Gaston Dombiak's avatar
Gaston Dombiak committed
220
        <td width="1%" nowrap class="c1">
221
            <fmt:message key="muc.tasks.batch" />
Gaston Dombiak's avatar
Gaston Dombiak committed
222 223 224 225 226 227 228 229 230 231 232 233
        </td>
        <td width="99%">
            <input type="text" name="logbatchsize" size="15" maxlength="50"
             value="<%= mucServer.getLogConversationBatchSize() %>">
        </td>
    </tr>
    </table>
    </div>
</fieldset>

<br><br>

234
<input type="submit" value="<fmt:message key="global.save_settings" />">
Gaston Dombiak's avatar
Gaston Dombiak committed
235 236 237

</form>

238 239
    </body>
</html>