muc-history-settings.jsp 6.03 KB
Newer Older
Matt Tucker's avatar
Matt Tucker committed
1 2 3 4
<%--
  -	$RCSfile$
  -	$Revision$
  -	$Date$
Bill Lynch's avatar
Bill Lynch committed
5 6 7 8 9
  -
  - 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.
Matt Tucker's avatar
Matt Tucker committed
10
--%>
Bill Lynch's avatar
Bill Lynch committed
11

Matt Tucker's avatar
Matt Tucker committed
12 13 14
<%@ page import="org.jivesoftware.util.*,
                 java.util.*,                  
                 org.jivesoftware.messenger.*,
Derek DeMoro's avatar
Derek DeMoro committed
15
                 org.jivesoftware.admin.*,
Matt Tucker's avatar
Matt Tucker committed
16
                 org.jivesoftware.messenger.muc.HistoryStrategy,
Bill Lynch's avatar
Bill Lynch committed
17 18 19 20
                 org.jivesoftware.messenger.muc.MultiUserChatServer"
    errorPage="error.jsp"
%>

21 22
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
Bill Lynch's avatar
Bill Lynch committed
23

Matt Tucker's avatar
Matt Tucker committed
24 25 26 27 28 29 30
<%!  // Global vars and methods:

    // Strategy definitions:
    static final int ALL = 1;
    static final int NONE = 2;
    static final int NUMBER = 3;
%>
Bill Lynch's avatar
Bill Lynch committed
31 32 33 34

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

Matt Tucker's avatar
Matt Tucker committed
35 36 37 38 39 40
<%   // Get parameters:
    boolean update = request.getParameter("update") != null;
    int policy = ParamUtils.getIntParameter(request,"policy",-1);
    int numMessages = ParamUtils.getIntParameter(request,"numMessages",0);

	// Get muc history
41
    MultiUserChatServer mucServer = admin.getMultiUserChatServer();
Matt Tucker's avatar
Matt Tucker committed
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
    HistoryStrategy historyStrat = mucServer.getHistoryStrategy();

    Map errors = new HashMap();
    if (update) {
        if (policy != ALL && policy != NONE && policy != NUMBER) {
            errors.put("general", "Please choose a valid chat history policy.");
        }
        else {
            if (policy == NUMBER && numMessages <= 0) {
                errors.put("numMessages", "Please enter a valid number of messages.");
            }
        }
        if (errors.size() == 0) {
            if (policy == ALL) {
                // Update MUC history strategy
                historyStrat.setType(HistoryStrategy.Type.all);
            }
            else if (policy == NONE) {
                // Update MUC history strategy
                historyStrat.setType(HistoryStrategy.Type.none);
            }
            else if (policy == NUMBER) {
                // Update MUC history strategy
                historyStrat.setType(HistoryStrategy.Type.number);
                historyStrat.setMaxNumber(numMessages);
            }
            // All done, redirect
Bill Lynch's avatar
Bill Lynch committed
69 70
            response.sendRedirect("muc-history-settings.jsp?success=true");
            return;
Matt Tucker's avatar
Matt Tucker committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
        }
    }

    // Set page vars
    if (errors.size() == 0) {
        if (historyStrat.getType() == HistoryStrategy.Type.all) {
            policy = ALL;
        }
        else if (historyStrat.getType() == HistoryStrategy.Type.none) {
            policy = NONE;
        }
        else if (historyStrat.getType() == HistoryStrategy.Type.number) {
            policy = NUMBER;
        }
        numMessages = historyStrat.getMaxNumber();
    }
%>
Derek DeMoro's avatar
Derek DeMoro committed
88

Bill Lynch's avatar
Bill Lynch committed
89 90 91 92 93 94 95 96 97 98 99 100
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" />
<%  // Title of this page and breadcrumbs
    String title = "Group Chat History Settings";
    pageinfo.setTitle(title);
    pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb("Main", "index.jsp"));
    pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb("Group Chat History", "muc-history-settings.jsp"));
    pageinfo.setPageID("muc-history");
%>
<jsp:include page="top.jsp" flush="true" />
<jsp:include page="title.jsp" flush="true" />

<p>
Matt Tucker's avatar
Matt Tucker committed
101
Group chat rooms can replay conversation histories to provide context to new members joining a room.
Gaston Dombiak's avatar
Gaston Dombiak committed
102
There are several options for controlling how much history to store for each room.
Bill Lynch's avatar
Bill Lynch committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
</p>

<%  if ("true".equals(request.getParameter("success"))) { %>

    <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">
        Settings updated successfully.
        </td></tr>
    </tbody>
    </table>
    </div><br>

<%  } %>

<form action="muc-history-settings.jsp" method="post">

<fieldset>
Matt Tucker's avatar
Matt Tucker committed
123
    <legend>History Settings</legend>
Bill Lynch's avatar
Bill Lynch committed
124 125 126
    <div>
    <table cellpadding="3" cellspacing="0" border="0" width="100%">
    <tbody>
Matt Tucker's avatar
Matt Tucker committed
127
        <tr valign="middle" class="">
Bill Lynch's avatar
Bill Lynch committed
128 129 130 131 132 133
            <td width="1%" nowrap>
                <input type="radio" name="policy" value="<%= NONE %>" id="rb01"  <%= ((policy==NONE) ? "checked" : "") %> />
            </td>
            <td width="99%">
                <label for="rb01">
                <b>Don't Show History</b>
Matt Tucker's avatar
Matt Tucker committed
134
                </label>- Do not show a chat history to users joining a room.
Bill Lynch's avatar
Bill Lynch committed
135 136
            </td>
        </tr>
Matt Tucker's avatar
Matt Tucker committed
137
        <tr valign="middle">
Bill Lynch's avatar
Bill Lynch committed
138 139 140 141 142 143
            <td width="1%" nowrap>
                <input type="radio" name="policy" value="<%= ALL %>" id="rb02"  <%= ((policy==ALL) ? "checked" : "") %>/>
            </td>
            <td width="99%">
                <label for="rb02">
                <b>Show Entire Chat History</b>
Matt Tucker's avatar
Matt Tucker committed
144
                </label>- Show the entire chat history to users joining a room.
Bill Lynch's avatar
Bill Lynch committed
145 146 147 148 149 150 151 152 153 154 155 156
            </td>
        </tr>
        <tr valign="top">
            <td width="1%" nowrap>
                <input type="radio" name="policy" value="<%= NUMBER %>" id="rb03"  <%= ((policy==NUMBER) ? "checked" : "") %> />
            </td>
            <td width="99%">
                <label for="rb03">
                <b>Show a Specific Number of Messages</b>
                </label>- Show a specific number of the most recent messages in the chat. Use the box below to specify that number.
            </td>
        </tr>
Matt Tucker's avatar
Matt Tucker committed
157
        <tr valign="middle" class="">
Bill Lynch's avatar
Bill Lynch committed
158 159 160 161 162 163 164 165 166 167 168 169 170 171
            <td width="1%" nowrap>&nbsp;</td>
            <td width="99%">
                <input type="text" name="numMessages" size="5" maxlength="10" onclick="this.form.policy[2].checked=true;" value="<%= ((numMessages > 0) ? ""+numMessages : "") %>"/> messages
            </td>
        </tr>
    </tbody>
    </table>
    </div>
</fieldset>

<br><br>

<input type="submit" name="update" value="Save Settings"/>

Matt Tucker's avatar
Matt Tucker committed
172 173
</form>

Bill Lynch's avatar
Bill Lynch committed
174
<jsp:include page="bottom.jsp" flush="true" />