group-create.jsp 8.85 KB
Newer Older
Matt Tucker's avatar
Matt Tucker committed
1 2 3 4
<%--
  -	$Revision$
  -	$Date$
  -
5
  - Copyright (C) 2004-2008 Jive Software. All rights reserved.
Matt Tucker's avatar
Matt Tucker committed
6 7
  -
  - This software is published under the terms of the GNU Public License (GPL),
8 9
  - a copy of which is included in this distribution, or a commercial license
  - agreement with Jive.
Matt Tucker's avatar
Matt Tucker committed
10
--%>
11

12 13 14 15
<%@ page import="org.jivesoftware.openfire.group.Group,
                 org.jivesoftware.openfire.group.GroupAlreadyExistsException,
                 org.jivesoftware.openfire.security.SecurityAuditManager,
                 org.jivesoftware.util.Log"
16 17
    errorPage="error.jsp"
%>
18
<%@ page import="org.jivesoftware.util.ParamUtils"%>
19 20
<%@ page import="java.net.URLEncoder"%>
<%@ page import="java.util.HashMap"%>
21
<%@ page import="java.util.Map" %>
22 23

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

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

<%  // Get parameters //
30 31
    String groupName = ParamUtils.getParameter(request, "group");

Matt Tucker's avatar
Matt Tucker committed
32
    boolean create = request.getParameter("create") != null;
33
    boolean edit = request.getParameter("edit") != null;
Matt Tucker's avatar
Matt Tucker committed
34
    boolean cancel = request.getParameter("cancel") != null;
35
    String name = ParamUtils.getParameter(request, "name");
Matt Tucker's avatar
Matt Tucker committed
36
    String description = ParamUtils.getParameter(request, "description", true);
37
    
38 39
    Map<String, String> errors = new HashMap<String, String>();

Matt Tucker's avatar
Matt Tucker committed
40 41
    // Handle a cancel
    if (cancel) {
42 43 44 45 46 47
        if (groupName == null) {
            response.sendRedirect("group-summary.jsp");
        }
        else {
            response.sendRedirect("group-edit.jsp?group=" + URLEncoder.encode(groupName, "UTF-8"));    
        }
Matt Tucker's avatar
Matt Tucker committed
48 49 50 51 52 53
        return;
    }
    // Handle a request to create a group:
    if (create) {
        // Validate
        if (name == null) {
54
            errors.put("name", "");
Matt Tucker's avatar
Matt Tucker committed
55 56 57 58 59 60 61 62
        }
        // do a create if there were no errors
        if (errors.size() == 0) {
            try {
                Group newGroup = webManager.getGroupManager().createGroup(name);
                if (description != null) {
                    newGroup.setDescription(description);
                }
Derek DeMoro's avatar
Derek DeMoro committed
63

64 65 66 67
                if (!SecurityAuditManager.getSecurityAuditProvider().blockGroupEvents()) {
                    // Log the event
                    webManager.logEvent("created new group "+name, "description = "+description);
                }
68

Matt Tucker's avatar
Matt Tucker committed
69
                // Successful, so redirect
Matt Tucker's avatar
Matt Tucker committed
70
                response.sendRedirect("group-edit.jsp?creategroupsuccess=true&group=" + URLEncoder.encode(newGroup.getName(), "UTF-8"));
Matt Tucker's avatar
Matt Tucker committed
71 72 73
                return;
            }
            catch (GroupAlreadyExistsException e) {
74
                errors.put("groupAlreadyExists", "");
Matt Tucker's avatar
Matt Tucker committed
75 76
            }
            catch (Exception e) {
77
                errors.put("general", "");
Matt Tucker's avatar
Matt Tucker committed
78 79 80 81
                Log.error(e);
            }
        }
    }
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
    // Handle a request to edit a group:
    if (edit) {
        // Validate
        if (name == null) {
            errors.put("name", "");
        }
        // do a create if there were no errors
        if (errors.size() == 0) {
            try {
                Group group = webManager.getGroupManager().getGroup(groupName);
                group.setName(name);
                if (description != null) {
                    group.setDescription(description);
                }

97 98 99 100
                if (!SecurityAuditManager.getSecurityAuditProvider().blockGroupEvents()) {
                    // Log the event
                    webManager.logEvent("edited group "+groupName, "description = "+description);
                }
101

102 103 104 105 106 107 108 109 110 111
                // Successful, so redirect
                response.sendRedirect("group-edit.jsp?groupChanged=true&group=" + URLEncoder.encode(group.getName(), "UTF-8"));
                return;
            }
            catch (Exception e) {
                errors.put("general", "");
                Log.error(e);
            }
        }
    }
Matt Tucker's avatar
Matt Tucker committed
112
%>
113

114
<html>
115
<head>
116 117 118 119 120 121 122 123 124 125 126 127 128 129
<title><%
           // If editing the group.
           if (groupName != null) {
        %>
        <fmt:message key="group.edit.title" />
        <% }
           // Otherwise creating a new group.
           else {
        %>
        <fmt:message key="group.create.title" />
        <% } %>
</title>

<% if (groupName == null) { %>
130
<meta name="pageID" content="group-create"/>
131 132 133 134 135 136
<% }
   else { %>
<meta name="subPageID" content="group-edit"/>
<meta name="extraParams" content="<%= "group="+URLEncoder.encode(groupName, "UTF-8") %>"/>
<% } %>
    
137 138 139
<meta name="helpPage" content="create_a_group.html"/>
</head>
<body>
140 141 142 143

<c:set var="submit" value="${param.create}"/>

<%  if (errors.get("general") != null) { %>
144
    <div class="jive-error">
145 146 147 148
    <table cellpadding="0" cellspacing="0" border="0">
    <tbody>
        <tr>
            <td class="jive-icon">
149
                <img src="images/error-16x16.gif" width="16" height="16" border="0" alt="">
150 151
            </td>
            <td class="jive-icon-label">
152
                <fmt:message key="group.create.error" />
153 154 155 156 157 158 159
            </td>
        </tr>
    </tbody>
    </table>
    </div><br>
<%  } %>

160 161 162 163 164 165
<% if (webManager.getGroupManager().isReadOnly()) { %>
<div class="error">
    <fmt:message key="group.read_only"/>
</div>
<% } %>

166
<p>
167 168 169 170 171 172 173 174 175 176 177
    <%
        // If editing the group.
        if (groupName != null) {
    %>
    <fmt:message key="group.edit.details_info" />
    <% }
       // Otherwise creating a new group.
       else {
    %>
    <fmt:message key="group.create.form" />
    <% } %>
178
</p>
179 180 181

<form name="f" action="group-create.jsp" method="post">

182 183 184 185 186
   <% if (groupName != null) { %>
    <input type="hidden" name="group" value="<%= groupName %>" id="existingName">
   <% } %>

    <!-- BEGIN create group -->
187
	<div class="jive-contentBoxHeader">
188 189 190 191 192 193 194 195 196 197 198 199
        <%
            // If editing the group.
            if (groupName != null) {
        %>
        <fmt:message key="group.edit.title" />
        <% }
           // Otherwise creating a new group.
           else {
        %>
        <fmt:message key="group.create.new_group_title" />
        <% } %>
    </div>
200
	<div class="jive-contentBox">
201
		<table cellpadding="3" cellspacing="0" border="0">
202 203
    <tr valign="top">
        <td width="1%" nowrap>
204
            <label for="gname"><fmt:message key="group.create.group_name" /></label> *
205 206 207 208 209 210 211 212 213 214 215 216 217
        </td>
        <td width="99%">
            <input type="text" name="name" size="30" maxlength="75"
             value="<%= ((name != null) ? name : "") %>" id="gname">
        </td>
    </tr>

    <%  if (errors.get("name") != null || errors.get("groupAlreadyExists") != null) { %>

        <tr valign="top">
            <td width="1%" nowrap>&nbsp;</td>
            <td width="99%">
                <%  if (errors.get("name") != null) { %>
218
                    <span class="jive-error-text"><fmt:message key="group.create.invalid_group_name" /></span>
219
                <%  } else if (errors.get("groupAlreadyExists") != null) { %>
220
                    <span class="jive-error-text"><fmt:message key="group.create.invalid_group_info" /></span>
221 222 223 224 225 226 227 228
                <%  } %>
            </td>
        </tr>

    <%  } %>

    <tr valign="top">
        <td width="1%" nowrap>
229
            <label for="gdesc"><fmt:message key="group.create.label_description" /></label>
230 231 232 233 234 235 236 237 238 239 240 241 242 243
        </td>
        <td width="99%">
            <textarea name="description" cols="30" rows="3" id="gdesc"
             ><%= ((description != null) ? description : "") %></textarea>
        </td>
    </tr>

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

        <tr valign="top">
            <td width="1%" nowrap>
                &nbsp;
            </td>
            <td width="99%">
244
                <span class="jive-error-text"><fmt:message key="group.create.invalid_description" /></span>
245 246 247 248 249
            </td>
        </tr>

    <%  } %>

250 251 252
	<tr>
		<td></td>
		<td>
253 254 255 256 257 258 259 260 261 262 263 264
            <%
               // If editing the group.
               if (groupName != null) {
            %>
            <input type="submit" name="edit" value="<fmt:message key="group.edit.title" />">
            <% }
               // Otherwise creating a new group.
               else {
            %>
            <input type="submit" name="create" value="<fmt:message key="group.create.create" />">
            <% } %>
            <input type="submit" name="cancel" value="<fmt:message key="global.cancel" />">
265 266
		</td>
	</tr>
267
    </table>
268 269 270
	</div>
	<span class="jive-description">* <fmt:message key="group.create.required_fields" /> </span>
	<!-- END create group -->
271 272 273 274 275 276 277

</form>

<script language="JavaScript" type="text/javascript">
document.f.name.focus();
</script>

278 279 280 281 282 283 284 285 286 287 288 289 290 291
<%  // Disable the form if a read-only user provider.
if (webManager.getGroupManager().isReadOnly()) { %>

<script language="Javascript" type="text/javascript">
  function disable() {
var limit = document.forms[0].elements.length;
for (i=0;i<limit;i++) {
  document.forms[0].elements[i].disabled = true;
}
  }
  disable();
</script>
<% } %>

292
</body>
Matt Tucker's avatar
Matt Tucker committed
293
</html>%>