<%-- - $Revision$ - $Date$ - - Copyright (C) 2005-2008 Jive Software. All rights reserved. - - 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. --%> <%@ page import="org.jivesoftware.util.*, org.xmpp.packet.JID, java.net.URLEncoder" errorPage="error.jsp" %> <%@ page import="org.jivesoftware.openfire.roster.Roster" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <jsp:useBean id="webManager" class="org.jivesoftware.util.WebManager" /> <% webManager.init(request, response, session, application, out ); %> <% // Get parameters boolean cancel = request.getParameter("cancel") != null; boolean delete = request.getParameter("delete") != null; String username = ParamUtils.getParameter(request, "username"); String usernameUrlEncoded = URLEncoder.encode(username, "UTF-8"); String jid = ParamUtils.getParameter(request, "jid"); pageContext.setAttribute( "username", username); pageContext.setAttribute( "usernameUrlEncoded", usernameUrlEncoded); pageContext.setAttribute( "jid", jid); // Handle a cancel if (cancel) { response.sendRedirect("user-roster.jsp?username=" + usernameUrlEncoded); return; } // Load the user's roster object Roster roster = webManager.getRosterManager().getRoster(username); // Handle a roster item delete: if (delete) { // Delete the roster item roster.deleteRosterItem(new JID(jid), false); // Log the event webManager.logEvent("deleted roster item from "+username, "roster item:\njid = "+jid); // Done, so redirect response.sendRedirect("user-roster.jsp?username="+usernameUrlEncoded+"&deletesuccess=true"); return; } %> <html> <head> <title><fmt:message key="user.roster.delete.title"/></title> <meta name="subPageID" content="user-roster"/> <meta name="extraParams" content="username=${usernameUrlEncoded}"/> </head> <body> <p> <fmt:message key="user.roster.delete.info"> <fmt:param value="<b>${fn:escapeXml(jid)}</b>" /> <fmt:param value="<b>${fn:escapeXml(username)}</b>" /> </fmt:message> </p> <form action="user-roster-delete.jsp"> <input type="hidden" name="username" value="${usernameUrlEncoded}"> <input type="hidden" name="jid" value="${jid}"> <input type="submit" name="delete" value="<fmt:message key="user.roster.delete.delete" />"> <input type="submit" name="cancel" value="<fmt:message key="global.cancel" />"> </form> </body> </html>