<%--
  -	$RCSfile$
  -	$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.ParamUtils,
                   org.jivesoftware.openfire.XMPPServer,
                   org.jivesoftware.openfire.audit.AuditManager,
                 org.jivesoftware.openfire.user.UserNotFoundException,
                 org.xmpp.packet.JID,
                 java.io.File"
    errorPage="error.jsp"
%>
<%@ page import="java.util.*"%>

<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>

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

<html>
<head>
<title><fmt:message key="audit.policy.title"/></title>
<meta name="pageID" content="server-audit-policy"/>
<meta name="helpPage" content="set_server_traffic_auditing_policy.html"/>
</head>
<body>



<%   // Get parameters:
    boolean update = request.getParameter("update") != null;
    boolean auditEnabled = ParamUtils.getBooleanParameter(request,"auditEnabled");
    boolean auditMessages = ParamUtils.getBooleanParameter(request,"auditMessages");
    boolean auditPresence = ParamUtils.getBooleanParameter(request,"auditPresence");
    boolean auditIQ = ParamUtils.getBooleanParameter(request,"auditIQ");
    String maxTotalSize = ParamUtils.getParameter(request,"maxTotalSize");
    String maxFileSize = ParamUtils.getParameter(request,"maxFileSize");
    String maxDays = ParamUtils.getParameter(request,"maxDays");
    String logTimeout = ParamUtils.getParameter(request,"logTimeout");
    String logDir = ParamUtils.getParameter(request,"logDir");
    String ignore = ParamUtils.getParameter(request,"ignore");


    // Get an audit manager:
    AuditManager auditManager = XMPPServer.getInstance().getAuditManager();

    Map<String,String> errors = new HashMap<String,String>();
    if (update) {
        auditManager.setEnabled(auditEnabled);
        auditManager.setAuditMessage(auditMessages);
        auditManager.setAuditPresence(auditPresence);
        auditManager.setAuditIQ(auditIQ);
        /*
        auditManager.setAuditXPath(auditXPath);
        if (newXpathQuery != null) {
            auditManager.addXPath(newXpathQuery);
        }
        for (int i=0; i<xpathQuery.length; i++) {
            auditManager.removeXPath(xpathQuery[i]);
        }
        */
        try {
            auditManager.setMaxTotalSize(Integer.parseInt(maxTotalSize));
        } catch (Exception e){
            errors.put("maxTotalSize","maxTotalSize");
        }
        try {
            auditManager.setMaxFileSize(Integer.parseInt(maxFileSize));
        } catch (Exception e){
            errors.put("maxFileSize","maxFileSize");
        }
        try {
            auditManager.setMaxDays(Integer.parseInt(maxDays));
        } catch (Exception e){
            errors.put("maxDays","maxDays");
        }
        try {
            auditManager.setLogTimeout(Integer.parseInt(logTimeout) * 1000);
        } catch (Exception e){
            errors.put("logTimeout","logTimeout");
        }
        if (logDir == null || logDir.trim().length() == 0) {
            errors.put("logDir","logDir");
        }
        else {
            if (new File(logDir).isDirectory()) {
                auditManager.setLogDir(logDir);
            }
            else {
                errors.put("logDir","logDir");
            }
        }
        if (errors.size() == 0){
            if (ignore == null){
                // remove all ignored users
                auditManager.setIgnoreList(new ArrayList<String>());
            }
            else {
                // Set the new ignore list
                Collection<String> newIgnoreList = new HashSet<String>(ignore.length());
                StringTokenizer tokenizer = new StringTokenizer(ignore, ", \t\n\r\f");
                while (tokenizer.hasMoreTokens()) {
                    String tok = tokenizer.nextToken();
                    String username = tok;
                    if (tok.contains("@")) {
                        if (tok.contains("@" + webManager.getServerInfo().getXMPPDomain())) {
                           username = new JID(tok).getNode();
                        }
                        else {
                            // Skip this JID since it belongs to a remote server
                            continue;
                        }
                    }
                    try {
                        webManager.getUserManager().getUser(username);
                        newIgnoreList.add(username);
                    }
                    catch (UserNotFoundException e){
                    }
                }
                auditManager.setIgnoreList(newIgnoreList);
            }
            // Log the event
            // TODO: Should probably log more here
            webManager.logEvent("updated stanza audit policy", null);
        // All done, redirect
        %>

    <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" alt=""></td>
        <td class="jive-icon-label">
        <fmt:message key="audit.policy.settings.saved_successfully" />
        </td></tr>
    </tbody>
    </table>
    </div><br>

        <%
        }
    }

    // Set page vars
    if (errors.size() == 0) {
        auditEnabled = auditManager.isEnabled();
        auditMessages = auditManager.isAuditMessage();
        auditPresence = auditManager.isAuditPresence();
        auditIQ = auditManager.isAuditIQ();
        maxTotalSize = Integer.toString(auditManager.getMaxTotalSize());
        maxFileSize = Integer.toString(auditManager.getMaxFileSize());
        maxDays = Integer.toString(auditManager.getMaxDays());
        logTimeout = Integer.toString(auditManager.getLogTimeout() / 1000);
        logDir = auditManager.getLogDir();
        StringBuilder ignoreList = new StringBuilder();
        for (String username : auditManager.getIgnoreList()) {
            if (ignoreList.length() == 0) {
                ignoreList.append(username);
            }
            else {
                ignoreList.append(", ").append(username);
            }
        }
        ignore = ignoreList.toString();
    }
%>

<p>
<fmt:message key="title" />
<fmt:message key="audit.policy.title_info" />
</p>

<!-- BEGIN 'Set Message Audit Policy' -->
<form action="audit-policy.jsp" name="f">
	<div class="jive-contentBoxHeader">
		<fmt:message key="audit.policy.policytitle" />
	</div>
	<div class="jive-contentBox">
		<table cellpadding="3" cellspacing="0" border="0">
		<tbody>
			<tr valign="middle">
				<td width="1%" nowrap>
					<input type="radio" name="auditEnabled" value="false" id="rb01"
					 <%= (!auditEnabled ? "checked" : "") %>>
				</td>
				<td width="99%">
					<label for="rb01">
					<b><fmt:message key="audit.policy.label_disable_auditing" /></b> <fmt:message key="audit.policy.label_disable_auditing_info" />
					</label>
				</td>
			</tr>
			<tr valign="middle">
				<td width="1%" nowrap>
					<input type="radio" name="auditEnabled" value="true" id="rb02"
					 <%= (auditEnabled ? "checked" : "") %>>
				</td>
				<td width="99%">
					<label for="rb02">
					<b><fmt:message key="audit.policy.label_enable_auditing" /></b> <fmt:message key="audit.policy.label_enable_auditing_info" />
					</label>
				</td>
			</tr>
			<tr valign="top">
				<td width="1%" nowrap>
					&nbsp;
				</td>
				<td width="99%">
					<table cellpadding="3" cellspacing="0" border="0">
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.log_directory" />
						</td>
						<td width="99%">
							<input type="text" size="50" maxlength="150" name="logDir"
							 value="<%= ((logDir != null) ? logDir : "") %>">

						<%  if (errors.get("logDir") != null) { %>

							<span class="jive-error-text">
							<fmt:message key="audit.policy.valid_log_directory" />
							</span>

						<%  } %>

						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.maxtotal_size" />
						</td>
						<td width="99%">
							<input type="text" size="15" maxlength="50" name="maxTotalSize"
							 value="<%= ((maxTotalSize != null) ? maxTotalSize : "") %>">

						<%  if (errors.get("maxTotalSize") != null) { %>

							<span class="jive-error-text">
							<fmt:message key="audit.policy.validnumber" />
							</span>

						<%  } %>

						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.maxfile_size" />
						</td>
						<td width="99%">
							<input type="text" size="15" maxlength="50" name="maxFileSize"
							 value="<%= ((maxFileSize != null) ? maxFileSize : "") %>">

						<%  if (errors.get("maxFileSize") != null) { %>

							<span class="jive-error-text">
							<fmt:message key="audit.policy.validnumber" />
							</span>

						<%  } %>

						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.maxdays_number" />
						</td>
						<td width="99%">
							<input type="text" size="15" maxlength="50" name="maxDays"
							 value="<%= ((maxDays != null) ? maxDays : "") %>">

							<%  if (errors.get("maxDays") != null) { %>

								<span class="jive-error-text">
								<fmt:message key="audit.policy.validnumber" />
								</span>

							<%  } %>

						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.flush_interval" />
						</td>
						<td width="99%">
							<input type="text" size="15" maxlength="50" name="logTimeout"
							 value="<%= ((logTimeout != null) ? logTimeout : "") %>">

						<%  if (errors.get("logTimeout") != null) { %>

							<span class="jive-error-text">
							<fmt:message key="audit.policy.validnumber" />
							</span>

						<%  } %>

						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.packet_audit" />
						</td>
						<td width="99%">

							<table cellpadding="4" cellspacing="0" border="0" width="100%">
							<tr valign="top">
								<td width="1%" nowrap>
									<input type="checkbox" name="auditMessages" id="cb01"
									 onclick="this.form.auditEnabled[1].checked=true;"
									 <%= (auditMessages ? "checked" : "") %>>
								</td>
								<td width="99%">
									<label for="cb01">
									<b><fmt:message key="audit.policy.label_audit_messenge_packets" /></b>
									</label>
								</td>
							</tr>
							<tr valign="top">
								<td width="1%" nowrap>
									<input type="checkbox" name="auditPresence" id="cb02"
									 onclick="this.form.auditEnabled[1].checked=true;"
									 <%= (auditPresence ? "checked" : "") %>>
								</td>
								<td width="99%">
									<label for="cb02">
									<b><fmt:message key="audit.policy.label_audit_presence_packets" /></b>
									</label>
								</td>
							</tr>
							<tr valign="top">
								<td width="1%" nowrap>
									<input type="checkbox" name="auditIQ" id="cb03"
									 onclick="this.form.auditEnabled[1].checked=true;"
									 <%= (auditIQ ? "checked" : "") %>>
								</td>
								<td width="99%">
									<label for="cb03">
									<b><fmt:message key="audit.policy.label_audit_iq_packets" /></b>
									</label>
								</td>
							</tr>
							</table>
						</td>
					</tr>
					<tr valign="top">
						<td width="1%" nowrap class="c1">
							<fmt:message key="audit.policy.ignore" />
						</td>
						<td width="99%">
							<textarea name="ignore" cols="40" rows="3" wrap="virtual"><%= ((ignore != null) ? ignore : "") %></textarea>
							<%  if (errors.get("ignore") != null) { %>

								<span class="jive-error-text">
								<fmt:message key="audit.policy.validignore" />
								</span>

							<%  } %>
						</td>
					</tr>
					</table>
				</td>
			</tr>
		</tbody>
		</table>
		<table border="0">
			<tr valign="top">
				<td width="1%" nowrap class="c1">
					<fmt:message key="audit.policy.queued_packets" />
				</td>
				<td width="99%">
					 <%= auditManager.getAuditor().getQueuedPacketsNumber() %>
				</td>
			</tr>
		</table>
	</div>
    <input type="submit" name="update" value="<fmt:message key="global.save_settings" />">
</form>
<!-- END 'Set Message Audit Policy' -->


</body>
</html>