group-create.jsp 9.23 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 8 9 10 11 12 13 14 15 16 17
  - Licensed under the Apache License, Version 2.0 (the "License");
  - you may not use this file except in compliance with the License.
  - You may obtain a copy of the License at
  -
  -     http://www.apache.org/licenses/LICENSE-2.0
  -
  - Unless required by applicable law or agreed to in writing, software
  - distributed under the License is distributed on an "AS IS" BASIS,
  - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  - See the License for the specific language governing permissions and
  - limitations under the License.
Matt Tucker's avatar
Matt Tucker committed
18
--%>
19

20 21 22 23
<%@ page import="org.jivesoftware.openfire.group.Group,
                 org.jivesoftware.openfire.group.GroupAlreadyExistsException,
                 org.jivesoftware.openfire.security.SecurityAuditManager,
                 org.jivesoftware.util.Log"
24 25
    errorPage="error.jsp"
%>
26
<%@ page import="org.jivesoftware.util.ParamUtils"%>
27 28
<%@ page import="java.net.URLEncoder"%>
<%@ page import="java.util.HashMap"%>
29
<%@ page import="java.util.Map" %>
30 31

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

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

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

Matt Tucker's avatar
Matt Tucker committed
40
    boolean create = request.getParameter("create") != null;
41
    boolean edit = request.getParameter("edit") != null;
Matt Tucker's avatar
Matt Tucker committed
42
    boolean cancel = request.getParameter("cancel") != null;
43
    String name = ParamUtils.getParameter(request, "name");
Matt Tucker's avatar
Matt Tucker committed
44
    String description = ParamUtils.getParameter(request, "description", true);
45
    
46 47
    Map<String, String> errors = new HashMap<String, String>();

Matt Tucker's avatar
Matt Tucker committed
48 49
    // Handle a cancel
    if (cancel) {
50 51 52 53 54 55
        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
56 57 58 59 60 61
        return;
    }
    // Handle a request to create a group:
    if (create) {
        // Validate
        if (name == null) {
62
            errors.put("name", "");
Matt Tucker's avatar
Matt Tucker committed
63 64 65 66 67 68 69 70
        }
        // 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
71

72 73 74 75
                if (!SecurityAuditManager.getSecurityAuditProvider().blockGroupEvents()) {
                    // Log the event
                    webManager.logEvent("created new group "+name, "description = "+description);
                }
76

Matt Tucker's avatar
Matt Tucker committed
77
                // Successful, so redirect
Matt Tucker's avatar
Matt Tucker committed
78
                response.sendRedirect("group-edit.jsp?creategroupsuccess=true&group=" + URLEncoder.encode(newGroup.getName(), "UTF-8"));
Matt Tucker's avatar
Matt Tucker committed
79 80 81
                return;
            }
            catch (GroupAlreadyExistsException e) {
82
                errors.put("groupAlreadyExists", "");
Matt Tucker's avatar
Matt Tucker committed
83 84
            }
            catch (Exception e) {
85
                errors.put("general", "");
Matt Tucker's avatar
Matt Tucker committed
86 87 88 89
                Log.error(e);
            }
        }
    }
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    // 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);
                }

105 106 107 108
                if (!SecurityAuditManager.getSecurityAuditProvider().blockGroupEvents()) {
                    // Log the event
                    webManager.logEvent("edited group "+groupName, "description = "+description);
                }
109

110 111 112 113 114 115 116 117 118 119
                // 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
120
%>
121

122
<html>
123
<head>
124 125 126 127 128 129 130 131 132 133 134 135 136 137
<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) { %>
138
<meta name="pageID" content="group-create"/>
139 140 141 142 143 144
<% }
   else { %>
<meta name="subPageID" content="group-edit"/>
<meta name="extraParams" content="<%= "group="+URLEncoder.encode(groupName, "UTF-8") %>"/>
<% } %>
    
145 146 147
<meta name="helpPage" content="create_a_group.html"/>
</head>
<body>
148 149 150 151

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

<%  if (errors.get("general") != null) { %>
152
    <div class="jive-error">
153 154 155 156
    <table cellpadding="0" cellspacing="0" border="0">
    <tbody>
        <tr>
            <td class="jive-icon">
157
                <img src="images/error-16x16.gif" width="16" height="16" border="0" alt="">
158 159
            </td>
            <td class="jive-icon-label">
160
                <fmt:message key="group.create.error" />
161 162 163 164 165 166 167
            </td>
        </tr>
    </tbody>
    </table>
    </div><br>
<%  } %>

168 169 170 171 172 173
<% if (webManager.getGroupManager().isReadOnly()) { %>
<div class="error">
    <fmt:message key="group.read_only"/>
</div>
<% } %>

174
<p>
175 176 177 178 179 180 181 182 183 184 185
    <%
        // 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" />
    <% } %>
186
</p>
187 188 189

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

190 191 192 193 194
   <% if (groupName != null) { %>
    <input type="hidden" name="group" value="<%= groupName %>" id="existingName">
   <% } %>

    <!-- BEGIN create group -->
195
	<div class="jive-contentBoxHeader">
196 197 198 199 200 201 202 203 204 205 206 207
        <%
            // 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>
208
	<div class="jive-contentBox">
209
		<table cellpadding="3" cellspacing="0" border="0">
210 211
    <tr valign="top">
        <td width="1%" nowrap>
212
            <label for="gname"><fmt:message key="group.create.group_name" /></label> *
213 214 215 216 217 218 219 220 221 222 223 224 225
        </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) { %>
226
                    <span class="jive-error-text"><fmt:message key="group.create.invalid_group_name" /></span>
227
                <%  } else if (errors.get("groupAlreadyExists") != null) { %>
228
                    <span class="jive-error-text"><fmt:message key="group.create.invalid_group_info" /></span>
229 230 231 232 233 234 235 236
                <%  } %>
            </td>
        </tr>

    <%  } %>

    <tr valign="top">
        <td width="1%" nowrap>
237
            <label for="gdesc"><fmt:message key="group.create.label_description" /></label>
238 239 240 241 242 243 244 245 246 247 248 249 250 251
        </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%">
252
                <span class="jive-error-text"><fmt:message key="group.create.invalid_description" /></span>
253 254 255 256 257
            </td>
        </tr>

    <%  } %>

258 259 260
	<tr>
		<td></td>
		<td>
261 262 263 264 265 266 267 268 269 270 271 272
            <%
               // 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" />">
273 274
		</td>
	</tr>
275
    </table>
276 277 278
	</div>
	<span class="jive-description">* <fmt:message key="group.create.required_fields" /> </span>
	<!-- END create group -->
279 280 281 282 283 284 285

</form>

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

286 287 288 289 290 291 292 293 294 295 296 297 298 299
<%  // 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>
<% } %>

300
</body>
Matt Tucker's avatar
Matt Tucker committed
301
</html>%>