/** * Copyright 2009 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package org.safehaus.penrose.studio.browser.action; import org.apache.log4j.Logger; import org.eclipse.jface.action.Action; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.jface.window.Window; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.IWorkbenchWindow; import org.eclipse.ui.PlatformUI; import org.safehaus.penrose.service.ServiceManagerClient; import org.safehaus.penrose.service.ServiceConfig; import org.safehaus.penrose.studio.PenroseImage; import org.safehaus.penrose.studio.PenroseStudio; import org.safehaus.penrose.studio.dialog.ErrorDialog; import org.safehaus.penrose.studio.browser.editor.BrowserEditor; import org.safehaus.penrose.studio.browser.editor.BrowserEditorInput; import org.safehaus.penrose.studio.browser.wizard.BrowserWizard; import org.safehaus.penrose.studio.server.ServerConfig; import org.safehaus.penrose.studio.server.Server; import org.safehaus.penrose.studio.server.*; import org.safehaus.penrose.studio.server.tree.ServerNode; import org.safehaus.penrose.user.UserConfig; import org.safehaus.penrose.client.PenroseClient; import org.ietf.ldap.LDAPUrl; /** * @author Endi S. Dewata */ public class BrowserAction extends Action { Logger log = Logger.getLogger(getClass()); public final static String LDAP_PORT = "ldapPort"; public final static int DEFAULT_LDAP_PORT = 10389; public BrowserAction() { setText("&Browser"); setImageDescriptor(PenroseStudio.getImageDescriptor(PenroseImage.BROWSER)); setToolTipText("Browser"); setId(getClass().getName()); } public void run() { IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); try { ServersView serversView = ServersView.getInstance(); ServerNode serverNode = serversView.getSelectedServerNode(); BrowserWizard wizard = new BrowserWizard(); if (serverNode != null) { Server server = serverNode.getServer(); wizard.setServer(server); PenroseClient client = server.getClient(); ServerConfig projectConfig = server.getServerConfig(); String hostname = projectConfig.getHost(); ServiceManagerClient serviceManagerClient = client.getServiceManagerClient(); ServiceConfig serviceConfig = serviceManagerClient.getServiceConfig("LDAP"); String s = serviceConfig == null ? null : serviceConfig.getParameter(LDAP_PORT); int port = s == null ? DEFAULT_LDAP_PORT : Integer.parseInt(s); wizard.setProviderUrl("ldap://"+hostname+":"+port+"/"); PenroseClient penroseClient = server.getClient(); UserConfig rootUserConfig = penroseClient.getRootUserConfig(); String bindDn = rootUserConfig.getDn().toString(); wizard.setBindDn(bindDn); byte[] password = rootUserConfig.getPassword(); wizard.setBindPassword(new String(password)); } WizardDialog dialog = new WizardDialog(window.getShell(), wizard); dialog.setPageSize(600, 300); int rc = dialog.open(); if (rc == Window.CANCEL) return; LDAPUrl url = new LDAPUrl(wizard.getProviderUrl()); BrowserEditorInput ei = new BrowserEditorInput(); ei.setHostname(url.getHost()); ei.setPort(url.getPort()); ei.setSuffix(wizard.getSuffix()); ei.setBindDn(wizard.getBindDn()); ei.setPassword(wizard.getBindPassword().getBytes()); IWorkbenchPage page = window.getActivePage(); page.openEditor(ei, BrowserEditor.class.getName()); } catch (Exception e) { log.error(e.getMessage(), e); ErrorDialog.open(e); } } }