com.atlassian.theplugin.idea.config.MissingPasswordHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.atlassian.theplugin.idea.config.MissingPasswordHandler.java

Source

/**
 * Copyright (C) 2008 Atlassian
 *
 * 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.
 */

package com.atlassian.theplugin.idea.config;

import com.atlassian.connector.cfg.ProjectCfgManager;
import com.atlassian.theplugin.commons.cfg.ConfigurationListenerAdapter;
import com.atlassian.theplugin.commons.cfg.ServerCfg;
import com.atlassian.theplugin.commons.cfg.ServerId;
import com.atlassian.theplugin.commons.remoteapi.ProductServerFacade;
import com.atlassian.theplugin.commons.util.MiscUtil;
import com.atlassian.theplugin.idea.IdeaHelper;
import com.atlassian.theplugin.idea.PasswordDialog;
import com.atlassian.theplugin.idea.ThePluginApplicationComponent;
import com.atlassian.theplugin.remoteapi.MissingPasswordHandlerQueue;
import com.atlassian.theplugin.util.PluginUtil;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Messages;

import javax.swing.*;
import java.util.Set;

import static javax.swing.JOptionPane.OK_CANCEL_OPTION;
import static javax.swing.JOptionPane.PLAIN_MESSAGE;

/**
 * Shows a dialog for each Bamboo server that has not the password set.
 */
public class MissingPasswordHandler implements MissingPasswordHandlerQueue.Handler {

    private static boolean isDialogShown = false;

    private final ProductServerFacade serverFacade;
    private final ProjectCfgManager projectCfgManager;
    private final Project project;
    private final Set<ServerId> serversWithoutPassword = MiscUtil.buildHashSet();
    private boolean shouldStop;

    public MissingPasswordHandler(ProductServerFacade serverFacade, final ProjectCfgManager projectCfgManager,
            final Project project) {
        this.serverFacade = serverFacade;
        this.projectCfgManager = projectCfgManager;
        this.project = project;
        // todo make sure the config listener is unregistered / not added every time missignpasswordhandler is created
        projectCfgManager.addProjectConfigurationListener(new LocalConfigurationListener());
    }

    private synchronized boolean shouldStop() {
        return shouldStop;
    }

    public void go() {

        if (!isDialogShown && !shouldStop()) {

            isDialogShown = true;
            boolean wasCanceled = false;
            boolean wasOk = false;

            for (ServerCfg server : projectCfgManager.getAllEnabledServers(serverFacade.getServerType())) {
                if (server.isComplete() || serversWithoutPassword.contains(server.getServerId())
                        || server.isUseDefaultCredentials()) {
                    continue;
                }
                PasswordDialog dialog = new PasswordDialog(server, serverFacade, project);
                dialog.pack();
                JPanel panel = dialog.getPasswordPanel();

                int answer = JOptionPane.showConfirmDialog(JOptionPane.getRootFrame(), panel,
                        PluginUtil.getInstance().getName(), OK_CANCEL_OPTION, PLAIN_MESSAGE);

                if (answer == JOptionPane.OK_OPTION) {
                    String password = dialog.getPasswordString();
                    Boolean shouldPasswordBeStored = dialog.getShouldPasswordBeStored();
                    server.setPassword(password);
                    server.setPasswordStored(shouldPasswordBeStored);
                    server.setUsername(dialog.getUserName());
                    server.setUseDefaultCredentials(dialog.isUseDefaultCredentials());
                    wasOk = true;
                } else {
                    wasCanceled = true;
                    serversWithoutPassword.add(server.getServerId());
                }
            }
            if (wasOk) {
                ThePluginApplicationComponent appComponent = IdeaHelper.getAppComponent();
                appComponent.rescheduleStatusCheckers(true);
            }

            if (wasCanceled) {
                Messages.showMessageDialog(
                        "You can always change password by changing plugin settings (Preferences | IDE Settings | "
                                + PluginUtil.getInstance().getName() + ")",
                        "Information", Messages.getInformationIcon());
            }
            isDialogShown = false;
        }

    }

    private class LocalConfigurationListener extends ConfigurationListenerAdapter {
        @Override
        public void projectUnregistered() {
            shouldStop = true;
        }
    }
}