// --- BEGIN COPYRIGHT BLOCK --- // 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; version 2 of the License. // // 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., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // // (C) 2007 Red Hat, Inc. // All rights reserved. // --- END COPYRIGHT BLOCK --- package com.netscape.admin.certsrv.config.install; import java.awt.event.*; import java.awt.*; import java.util.*; import javax.swing.*; import com.netscape.admin.certsrv.*; import com.netscape.admin.certsrv.connection.*; import com.netscape.admin.certsrv.wizard.*; import com.netscape.certsrv.common.*; import com.netscape.admin.certsrv.task.*; import com.netscape.management.client.console.*; import com.netscape.management.client.util.*; /** * Introduction page for installation wizard. * * @author Christine Ho * @version $Revision$, $Date$ * @see com.netscape.admin.certsrv.config.install */ class WIInternalDBPage extends WizardBasePanel implements IWizardPanel { private Color mActiveColor; private JCheckBox mSchema; private JTextField mRMPortText, mRMBindAsText, mRMBaseText; private JTextField mRMHostText,mRMDBNameAsText; private JPasswordField mRMPasswordText; private JLabel mRMHostLabel, mRMDBNameAsLabel; private JLabel mRMBaseLabel, mRMBindAsLabel, mRMPasswordLabel; private static final String PANELNAME = "INTERNALDBWIZARD"; private static final String HELPINDEX = "install-internaldb-configuration-wizard-help"; private static final String EMPTYSTR = " "; WIInternalDBPage(JDialog parent) { super(PANELNAME); mParent = parent; init(); } WIInternalDBPage(JDialog parent, JFrame adminFrame) { super(PANELNAME); mParent = parent; mAdminFrame = adminFrame; init(); } public boolean isLastPage() { return false; } public void actionPerformed(ActionEvent e) { if (e.getSource().equals(mSchema)) { if (mSchema.isSelected()) { mRMDBNameAsText.setEnabled(true); mRMDBNameAsText.setBackground(mActiveColor); } else { mRMDBNameAsText.setEnabled(false); mRMDBNameAsText.setBackground(getBackground()); } } else { super.actionPerformed(e); } } public boolean initializePanel(WizardInfo info) { InstallWizardInfo wizardInfo = (InstallWizardInfo)info; if (wizardInfo.isCloning()) return false; if (wizardInfo.isDBCreateNow()) { setBorder(makeTitledBorder(PANELNAME)); mRMBaseText.setText("o="+wizardInfo.getDBName()+", o=netscapeCertificateServer"); mRMBindAsText.setText(wizardInfo.getDBBindDN()); return true; } return false; } public boolean validatePanel() { return true; } public boolean concludePanel(WizardInfo info) { InstallWizardInfo wizardInfo = (InstallWizardInfo)info; cleanUpWizardInfo(wizardInfo); String rawData = ConfigConstants.TASKID+"="+TaskId.TASK_CREATE_INTERNALDB; rawData = rawData+"&"+ConfigConstants.OPTYPE+"="+OpDef.OP_MODIFY; rawData = rawData+"&"+ConfigConstants.PR_CMS_SEED+"="+ (new Long(WizardBasePanel.mSeed).toString()); // remote database rawData = rawData+"&"+ConfigConstants.PR_HOST+"=" +mRMHostText.getText(); rawData = rawData+"&"+ConfigConstants.PR_LDAP_DB_NAME+"=" +mRMDBNameAsText.getText(); rawData = rawData+"&"+ConfigConstants.PR_DB_PORT+"="+mRMPortText.getText(); rawData = rawData+"&"+ConfigConstants.PR_DB_BINDDN+"="+mRMBindAsText.getText(); rawData = rawData+"&"+ConfigConstants.PR_DB_NAME+"="+mRMBaseText.getText(); rawData = rawData+"&"+ConfigConstants.PR_DB_PWD+"="+mRMPasswordText.getText(); if (mSchema.isSelected()) { rawData = rawData+"&"+ConfigConstants.PR_DB_SCHEMA+"="+"true"; } else { rawData = rawData+"&"+ConfigConstants.PR_DB_SCHEMA+"="+"false"; } wizardInfo.setInternalDBPasswd(mRMPasswordText.getText().trim()); wizardInfo.setDBBindDN(mRMBindAsText.getText().trim()); wizardInfo.setDBName(mRMBaseText.getText().trim()); startProgressStatus(); //CMSMessageBox dlg = new CMSMessageBox(mAdminFrame, "CGITASK", "CREATEDB"); boolean ready = send(rawData, wizardInfo); if (ready) { rawData = ConfigConstants.TASKID+"="+TaskId.TASK_TOKEN_INFO; rawData = rawData+"&"+ConfigConstants.OPTYPE+"="+OpDef.OP_READ; ready = send(rawData, wizardInfo); } //dlg.setVisible(false); endProgressStatus(); if (!ready) { String str = getErrorMessage(wizardInfo); if (str.equals("")) { String errorMsg = mResource.getString( PANELNAME+"_ERRORMSG"); setErrorMessage(errorMsg); } else setErrorMessage(str); } return ready; } public void callHelp() { CMSAdminUtil.help(HELPINDEX); } protected void init() { GridBagLayout gb = new GridBagLayout(); GridBagConstraints gbc = new GridBagConstraints(); setLayout(gb); CMSAdminUtil.resetGBC(gbc); JTextArea desc = createTextArea(mResource.getString( "INTERNALDBWIZARD_TEXT_HEADING_LABEL")); gbc.anchor = gbc.NORTHWEST; gbc.weightx = 1.0; gbc.weighty = 0.0; gbc.insets = new Insets(COMPONENT_SPACE,COMPONENT_SPACE, COMPONENT_SPACE,COMPONENT_SPACE); gbc.gridwidth = gbc.REMAINDER; add(desc, gbc); CMSAdminUtil.resetGBC(gbc); JLabel instanceIDLbl = makeJLabel("REMOTEHOST"); gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(COMPONENT_SPACE, 0, COMPONENT_SPACE, COMPONENT_SPACE); add(instanceIDLbl, gbc); CMSAdminUtil.resetGBC(gbc); mRMHostText = makeJTextField(30); gbc.anchor = gbc.NORTHWEST; gbc.gridwidth = gbc.REMAINDER; //gbc.fill = gbc.NONE; gbc.insets = new Insets(COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMHostText, gbc); mActiveColor = mRMHostText.getBackground(); CMSAdminUtil.resetGBC(gbc); JLabel portNumber = makeJLabel("REMOTEPORT"); gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, 0, COMPONENT_SPACE,COMPONENT_SPACE); add(portNumber, gbc); CMSAdminUtil.resetGBC(gbc); mRMPortText = makeJTextField(10); gbc.anchor = gbc.WEST; gbc.fill = gbc.HORIZONTAL; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE,COMPONENT_SPACE); add(mRMPortText, gbc); CMSAdminUtil.resetGBC(gbc); mRMBaseLabel = makeJLabel("REMOTEDN"); gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMBaseLabel, gbc); CMSAdminUtil.resetGBC(gbc); mRMBaseText = makeJTextField(30); gbc.anchor = gbc.NORTHWEST; //gbc.fill = gbc.NONE; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMBaseText, gbc); CMSAdminUtil.resetGBC(gbc); mRMBindAsLabel = makeJLabel("REMOTEADMIN"); //gbc.anchor = gbc.NORTHWEST; gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMBindAsLabel, gbc); CMSAdminUtil.resetGBC(gbc); mRMBindAsText = makeJTextField(30); gbc.anchor = gbc.NORTHWEST; //gbc.fill = gbc.NONE; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMBindAsText, gbc); CMSAdminUtil.resetGBC(gbc); mRMPasswordLabel = makeJLabel("REMOTEPWD"); gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, 0, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMPasswordLabel, gbc); CMSAdminUtil.resetGBC(gbc); mRMPasswordText = makeJPasswordField(30); gbc.anchor = gbc.WEST; gbc.fill = gbc.HORIZONTAL; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMPasswordText, gbc); CMSAdminUtil.resetGBC(gbc); mRMDBNameAsLabel = makeJLabel("DATABASE"); gbc.anchor = gbc.NORTHWEST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMDBNameAsLabel, gbc); CMSAdminUtil.resetGBC(gbc); mRMDBNameAsText = makeJTextField(30); gbc.anchor = gbc.NORTHWEST; //gbc.fill = gbc.NONE; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mRMDBNameAsText, gbc); JLabel dummy1 = new JLabel(" "); CMSAdminUtil.resetGBC(gbc); gbc.anchor = gbc.NORTHEAST; gbc.fill = gbc.NONE; gbc.insets = new Insets(0, 0, COMPONENT_SPACE, COMPONENT_SPACE); add(dummy1, gbc); CMSAdminUtil.resetGBC(gbc); mSchema = makeJCheckBox("SCHEMA", true); gbc.anchor = gbc.NORTHWEST; gbc.fill = gbc.NONE; gbc.gridwidth = gbc.REMAINDER; gbc.insets = new Insets(0, COMPONENT_SPACE, COMPONENT_SPACE, COMPONENT_SPACE); add(mSchema, gbc); JLabel dummy = new JLabel(" "); CMSAdminUtil.resetGBC(gbc); gbc.anchor = gbc.NORTHWEST; gbc.gridwidth = gbc.REMAINDER; gbc.gridheight = gbc.REMAINDER; gbc.weighty = 1.0; add(dummy, gbc); } public void getUpdateInfo(WizardInfo info) { InstallWizardInfo wizardInfo = (InstallWizardInfo)info; wizardInfo.setDBCreated(ConfigConstants.TRUE); wizardInfo.setDBCreateNow(ConfigConstants.FALSE); } }