<%-- - 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.openfire.clearspace.ClearspaceManager" errorPage="error.jsp" %> <%@ page import="org.jivesoftware.util.StringUtils" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <% webManager.init(request, response, session, application, out ); %> <% ClearspaceManager manager = ClearspaceManager.getInstance(); // Checks if CS and OF are currently connected boolean connectedOF = manager.isOpenfireConnected(); // Get the information to build the redirect request String username = webManager.getUser().getUsername(); String secret = manager.getSharedSecret(); String uri = manager.getConnectionURI(); String nonce = manager.getNonce(); // If all the information is OK if (connectedOF && username != null && secret != null && uri != null && nonce != null) { // Build de URL and send the redirect to the admin console of Clearspace. response.sendRedirect(uri + "admin/login.jsp?login=true&username=" + username + "&secret=" + StringUtils.hash(username + ":" + secret + ":" + nonce) + "&nonce=" + nonce); return; } %> <fmt:message key="clearspace.admin.title"/>
" %>" /> " %>" />