org.apache.directory.studio.ldapservers.actions.CreateConnectionActionHelper.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.directory.studio.ldapservers.actions.CreateConnectionActionHelper.java

Source

/*
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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. 
 *  
 */
package org.apache.directory.studio.ldapservers.actions;

import org.apache.directory.studio.connection.core.Connection;
import org.apache.directory.studio.connection.core.ConnectionCorePlugin;
import org.apache.directory.studio.ldapservers.model.LdapServer;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.osgi.util.NLS;
import org.eclipse.ui.IPerspectiveDescriptor;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.osgi.framework.Bundle;

/**
 * This class implements a helper class of the create connection action for a server.
 *
 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
 */
public class CreateConnectionActionHelper {
    public static void createLdapBrowserConnection(LdapServer server, Connection connection) {
        // Adding the connection to the connection manager
        ConnectionCorePlugin.getDefault().getConnectionManager().addConnection(connection);

        // Adding the connection to the root connection folder
        ConnectionCorePlugin.getDefault().getConnectionFolderManager().getRootConnectionFolder()
                .addConnectionId(connection.getId());

        // Getting the window, LDAP perspective and current perspective
        IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
        IPerspectiveDescriptor ldapPerspective = getLdapPerspective();
        IPerspectiveDescriptor currentPerspective = window.getActivePage().getPerspective();

        // Checking if we are already in the LDAP perspective
        if ((ldapPerspective != null) && (ldapPerspective.equals(currentPerspective))) {
            // As we're already in the LDAP perspective, we only indicate to the user 
            // the name of the connection that has been created
            MessageDialog dialog = new MessageDialog(window.getShell(),
                    Messages.getString("CreateConnectionActionHelper.ConnectionCreated"), null, //$NON-NLS-1$
                    NLS.bind(Messages.getString("CreateConnectionActionHelper.ConnectionCalledCreated"), //$NON-NLS-1$
                            new String[] { connection.getName() }),
                    MessageDialog.INFORMATION, new String[] { IDialogConstants.OK_LABEL }, MessageDialog.OK);
            dialog.open();
        } else {
            // We're not already in the LDAP perspective, we indicate to the user
            // the name of the connection that has been created and we ask him
            // if we wants to switch to the LDAP perspective
            MessageDialog dialog = new MessageDialog(window.getShell(),
                    Messages.getString("CreateConnectionActionHelper.ConnectionCreated"), null, //$NON-NLS-1$
                    NLS.bind(Messages.getString("CreateConnectionActionHelper.ConnectionCalledCreatedSwitch"), //$NON-NLS-1$
                            new String[] { connection.getName() }), MessageDialog.INFORMATION,
                    new String[] { IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL }, MessageDialog.OK);
            if (dialog.open() == MessageDialog.OK) {
                // Switching to the LDAP perspective
                window.getActivePage().setPerspective(ldapPerspective);
            }
        }
    }

    /**
     * Get the LDAP perspective.
     *
     * @return
     *      the LDAP perspective
     */
    private static IPerspectiveDescriptor getLdapPerspective() {
        for (IPerspectiveDescriptor perspective : PlatformUI.getWorkbench().getPerspectiveRegistry()
                .getPerspectives()) {
            if ("org.apache.directory.studio.ldapbrowser.ui.perspective.BrowserPerspective" //$NON-NLS-1$
                    .equalsIgnoreCase(perspective.getId())) {
                return perspective;
            }
        }

        return null;
    }

    /**
     * Indicates if the LDAP Browser plugins are available or not.
     *
     * @return
     *  <code>true</code> if the LDAP Browser plugins are available, 
     *  <code>false</code> if not.
     */
    public static boolean isLdapBrowserPluginsAvailable() {
        String[] bundleNames = new String[] { "org.apache.directory.studio.connection.core", // Connection Core Plugin
                "org.apache.directory.studio.connection.ui", // Connection UI Plugin
                "org.apache.directory.studio.ldapbrowser.common", // LDAP Browser Common Plugin
                "org.apache.directory.studio.ldapbrowser.core", // LDAP Browser Core Plugin
                "org.apache.directory.studio.ldapbrowser.ui", // LDAP Browser UI Plugin
                "org.apache.directory.studio.ldifeditor", // LDIF Editor Plugin
                "org.apache.directory.studio.ldifparser" // LDIF Parser Plugin
        };

        for (String bundleName : bundleNames) {
            Bundle bundle = Platform.getBundle(bundleName);

            if ((bundle == null) || (bundle.getState() == Bundle.UNINSTALLED)) {
                return false;
            }
        }

        return true;
    }
}