From 621d9e5c413e561293d7484b93882d985b3fe15f Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Sat, 24 Mar 2012 02:27:47 -0500 Subject: Removed unnecessary pki folder. Previously the source code was located inside a pki folder. This folder was created during svn migration and is no longer needed. This folder has now been removed and the contents have been moved up one level. Ticket #131 --- .../com/netscape/admin/certsrv/ug/UserEditor.java | 627 +++++++++++++++++++++ 1 file changed, 627 insertions(+) create mode 100644 base/console/src/com/netscape/admin/certsrv/ug/UserEditor.java (limited to 'base/console/src/com/netscape/admin/certsrv/ug/UserEditor.java') diff --git a/base/console/src/com/netscape/admin/certsrv/ug/UserEditor.java b/base/console/src/com/netscape/admin/certsrv/ug/UserEditor.java new file mode 100644 index 000000000..75908fe6a --- /dev/null +++ b/base/console/src/com/netscape/admin/certsrv/ug/UserEditor.java @@ -0,0 +1,627 @@ +// --- 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.ug; + +import com.netscape.admin.certsrv.*; +import com.netscape.admin.certsrv.connection.*; +import javax.swing.*; +import javax.swing.event.*; +import java.awt.event.*; +import java.awt.*; +import java.util.*; + +import com.netscape.management.client.util.*; +import com.netscape.certsrv.common.*; + +/** + * User Information Editor - UI provides the user information + * management functionality. The management of user certificate + * is done by certificate management dialog + * + * @author Jack Pan-Chen + * @version $Revision$, $Date$ + * + * @see com.netscape.admin.certsrv.ug.UserTab + */ +public class UserEditor extends JDialog + implements ActionListener, MouseListener, DocumentListener +{ + + /*========================================================== + * variables + *==========================================================*/ + private String PREFIX = "USEREDITOR"; + + private JFrame mParentFrame; + private AdminConnection mConnection; + private String mUserName; + private boolean mIsNewUser = false; + private ResourceBundle mResource; + private Color mActiveColor; + protected DefaultListModel mDataModel; + + protected JScrollPane mScrollPane; + protected JList mList; + + private boolean mUserAdded; + private JButton mOK, mCancel, mHelp; + private JLabel mPasswordLbl, mPasswordConfirmLbl; + private JTextField mUserNameField, mFullNameField, mEMailField, mPhoneField, mStateField; + private JPasswordField mPasswordField; + private JPasswordField mPasswordConfirm; + private JLabel mUserLabel, mMembership, mGroupLbl, dummy1; + private JComboBox mGroupBox; + private static final String ADDHELPINDEX = + "usersgroups-certsrv-add-user-dbox-help"; + private static final String EDITHELPINDEX = + "usersgroups-certsrv-edit-user-dbox-help"; + + /*========================================================== + * constructors + *==========================================================*/ + public UserEditor( JFrame parent, + AdminConnection conn, boolean isNew) { + super(parent,true); + mParentFrame = parent; + mConnection = conn; + mDataModel = new DefaultListModel(); + mResource = ResourceBundle.getBundle(CMSAdminResources.class.getName()); + setTitle(mResource.getString(PREFIX+"_TITLE")); + mIsNewUser = isNew; + if(!mIsNewUser) + setSize(360, 370); + else + setSize(360, 350); + setLocationRelativeTo(parent); + getRootPane().setDoubleBuffered(true); + setDisplay(); + + if(!mIsNewUser) { + mUserNameField.setVisible(false); + mUserLabel.setVisible(true); + mMembership.setVisible(true); + mScrollPane.setVisible(true); + mGroupLbl.setVisible(false); + mGroupBox.setVisible(false); + dummy1.setVisible(false); + } else { + mUserNameField.setVisible(true); + mUserNameField.setText(""); + mUserLabel.setVisible(false); + mUserLabel.setText(""); + mMembership.setVisible(false); + mScrollPane.setVisible(false); + mGroupLbl.setVisible(true); + mGroupBox.setVisible(true); + dummy1.setVisible(true); + } + } + + /*========================================================== + * public methods + *==========================================================*/ + + /** + * show the windows + * @param user user name + * @param isNew true if this is a new entry + */ + public void showDialog(String user) { + + //initialize and setup + mUserName = user; + mFullNameField.setText(""); + mEMailField.setText(""); + mPhoneField.setText(""); + mStateField.setText(""); + mPasswordField.setText(""); + mPasswordConfirm.setText(""); + + mDataModel.clear(); + //mViewCert.setEnabled(false); + + if(!mIsNewUser) { + mUserLabel.setText(user); + } else { + mUserNameField.setText(""); + mUserLabel.setText(""); + mStateField.setText("1"); + } + + //retrieve the cert record from the server + try { + if (mIsNewUser == false) + refresh(); + else { + addGroup(); + } + } catch (EAdminException ex) { + CMSAdminUtil.showErrorDialog(mParentFrame, mResource, + ex.toString(), CMSAdminUtil.ERROR_MESSAGE); + return; + } + updateView(); + this.show(); + } + + private void enablePasswordFields(boolean enable, Color color) { + mPasswordField.setVisible(enable); + mPasswordLbl.setVisible(enable); + mPasswordConfirm.setVisible(enable); + mPasswordConfirmLbl.setVisible(enable); + CMSAdminUtil.repaintComp(mPasswordField); + CMSAdminUtil.repaintComp(mPasswordConfirm); + CMSAdminUtil.repaintComp(mPasswordLbl); + CMSAdminUtil.repaintComp(mPasswordConfirmLbl); + } + + public boolean isUserAdded() { + return mUserAdded; + } + + /*========================================================== + * EVNET HANDLER METHODS + *==========================================================*/ + + //=== ACTIONLISTENER ===================== + + public void actionPerformed(ActionEvent evt) { + + mUserAdded = false; + if (evt.getSource().equals(mOK)) { + + //check password field + String pwd = mPasswordField.getText().trim(); + if (!pwd.equals("")) { + if (!mPasswordConfirm.getText().trim().equals(pwd)) { + CMSAdminUtil.showMessageDialog(mParentFrame, mResource, PREFIX, + "PWDNOTMATCH", CMSAdminUtil.ERROR_MESSAGE); + return; + } + } + + if (mIsNewUser) { + + //check text fields + if (mUserNameField.getText().trim().equals("")) { + CMSAdminUtil.showMessageDialog(mParentFrame, mResource, PREFIX, + "NOUSERNAME", CMSAdminUtil.ERROR_MESSAGE); + return; + } + + try { + addUser(); + mUserAdded = true; + } catch (EAdminException e) { + //display error dialog + Debug.println(e.toString()); + CMSAdminUtil.showErrorDialog(mParentFrame, mResource, + e.toString(), CMSAdminUtil.ERROR_MESSAGE); + return; + } + + } else { + + try { + modifyUser(); + } catch (EAdminException e) { + //display error dialog + Debug.println(e.toString()); + CMSAdminUtil.showErrorDialog(mParentFrame, mResource, + e.toString(), CMSAdminUtil.ERROR_MESSAGE); + return; + } + + } + this.hide(); + } + + if (evt.getSource().equals(mCancel)) { + Debug.println("Cancel Pressed"); + + //display are you sure dialog + this.hide(); + } + + if (evt.getSource().equals(mHelp)) { + if (mIsNewUser) + CMSAdminUtil.help(ADDHELPINDEX); + else + CMSAdminUtil.help(EDITHELPINDEX); + } + + /* + * possible enhancement here to put in + * a WIZARD that will take 1) B64E ,2) + * ldap dir, 3) cert server for retrieval + * we will do B64E first + * + if (evt.getSource().equals(mAddCert)) { + //display dialog to add B64E + if (mCertDialog==null) + mCertDialog = new CertImportDialog(mParentFrame); + mCertDialog.showDialog(); + if (!mCertDialog.isOK()) + return; + + //add entry + Debug.println("Name="+mCertDialog.getCertName()); + Debug.println("B64E= "+mCertDialog.getB64E()); + NameValuePairs data = new NameValuePairs(); + data.add(CERT_NAME,mCertDialog.getCertName()); + data.add(CERT_DATA,mCertDialog.getB64E()); + data.add(CERT_VIEW,CERT_B64E); + mDataModel.processData(data); + refreshTable(); + } + + if (evt.getSource().equals(mViewCert)) { + //display certificate pp + NameValuePairs obj = (NameValuePairs)mDataModel.getObjectValueAt + (mTable.getSelectedRow()); + if (mViewDialog==null) + mViewDialog = new CertViewDialog(mParentFrame); + mViewDialog.showDialog(obj.getValue(CERT_NAME),obj.getValue(CERT_DATA)); + } + + if (evt.getSource().equals(mDeleteCert)) { + if(mTable.getSelectedRow()< 0) + return; + int i = CMSAdminUtil.showConfirmDialog(mParentFrame, mResource, + PREFIX, "DELETE", CMSAdminUtil.WARNING_MESSAGE); + if (i == JOptionPane.YES_OPTION) { + deleteCert(); + Debug.println("Cert Deleted"); + } + } + */ + } + + //==== MOUSELISTENER ====================== + public void mouseClicked(MouseEvent e) { + //check if stuff is selected + updateView(); + } + + public void mousePressed(MouseEvent e) {} + public void mouseReleased(MouseEvent e) { + updateView(); + } + public void mouseEntered(MouseEvent e) {} + public void mouseExited(MouseEvent e) {} + + + //== DocumentListener == + public void insertUpdate(DocumentEvent e) { + updateView(); + } + + public void removeUpdate(DocumentEvent e){ + updateView(); + } + + public void changedUpdate(DocumentEvent e){ + updateView(); + } + + /*========================================================== + * private methods + *==========================================================*/ + + /** + * proactive verification + */ + private void updateView() { + if (mIsNewUser) { + if (mUserNameField.getText().trim().equals("")) { + mOK.setEnabled(false); + return; + } + } + if (mFullNameField.getText().trim().equals("")) { + mOK.setEnabled(false); + return; + } + /* ONLY UID is verify now + if (mPasswordField.getText().trim().equals("")) { + mOK.setEnabled(false); + return; + } + */ + mOK.setEnabled(true); + } + + /** + * Construction of the initial UI components + */ + private void setDisplay() { + getContentPane().setLayout(new BorderLayout()); + JPanel center = new JPanel(); + GridBagLayout gb = new GridBagLayout(); + GridBagConstraints gbc = new GridBagConstraints(); + center.setLayout(gb); + + //content panel + JPanel content = makeContentPane(); + CMSAdminUtil.resetGBC(gbc); + gbc.anchor = gbc.NORTH; + gbc.gridwidth = gbc.REMAINDER; + gbc.weightx = 1.0; + gbc.weighty = 1.0; + gbc.fill = gbc.BOTH; + gb.setConstraints(content, gbc); + center.add(content); + + //action panel + JPanel action = makeActionPane(); + CMSAdminUtil.resetGBC(gbc); + gbc.anchor = gbc.NORTH; + gbc.gridwidth = gbc.REMAINDER; + gbc.gridheight = gbc.REMAINDER; + gbc.weightx = 1.0; + gb.setConstraints(action, gbc); + center.add(action); + + getContentPane().add("Center",center); + + } + + private JPanel makeActionPane() { + mOK = CMSAdminUtil.makeJButton(mResource, PREFIX, "OK", null, this); + mCancel = CMSAdminUtil.makeJButton(mResource, PREFIX, "CANCEL", null, this); + mHelp = CMSAdminUtil.makeJButton(mResource, PREFIX, "HELP", null, this); + //JButton[] buttons = { mOK, mCancel, mHelp }; + JButton[] buttons = { mOK, mCancel }; + return CMSAdminUtil.makeJButtonPanel( buttons, true); + } + + private JPanel makeContentPane() { + + Insets insets = new Insets(CMSAdminUtil.COMPONENT_SPACE,0, + CMSAdminUtil.COMPONENT_SPACE,0); + + //top panel + JPanel top = new JPanel(); + GridBagLayout gb = new GridBagLayout(); + GridBagConstraints gbc = new GridBagConstraints(); + CMSAdminUtil.resetGBC(gbc); + top.setLayout(gb); + + JLabel label1 = CMSAdminUtil.makeJLabel(mResource, PREFIX, "USERNAME", null); + mUserNameField = new JTextField(); + mUserNameField.addMouseListener(this); + mUserNameField.getDocument().addDocumentListener(this); + mUserLabel = new JLabel(); + mUserLabel.setVisible(false); + gbc.fill = gbc.NONE; + gbc.weightx = 0.0; + gbc.anchor = gbc.EAST; + gbc. insets = new Insets(CMSAdminUtil.COMPONENT_SPACE, + CMSAdminUtil.COMPONENT_SPACE,0,0); + top.add(label1, gbc); + + gbc.anchor = gbc.WEST; + gbc.fill = gbc.HORIZONTAL; + gbc.weightx = 1.0; + gbc. insets = new Insets(CMSAdminUtil.COMPONENT_SPACE, + CMSAdminUtil.COMPONENT_SPACE, + 0,CMSAdminUtil.COMPONENT_SPACE); + top.add( mUserLabel, gbc ); + top.add( mUserNameField, gbc ); + + JLabel dummy = new JLabel(); + dummy.setVisible(false); + gbc.gridwidth = gbc.REMAINDER; + gbc.weightx = 0.0; + top.add( dummy, gbc); + + JLabel label2 = CMSAdminUtil.makeJLabel(mResource, PREFIX, "FULLNAME", null); + mFullNameField = new JTextField(); + mFullNameField.addMouseListener(this); + mFullNameField.getDocument().addDocumentListener(this); + CMSAdminUtil.addEntryField(top, label2, mFullNameField, gbc); + + mPasswordLbl = CMSAdminUtil.makeJLabel(mResource, PREFIX, "PASSWORD", null); + mPasswordField = new JPasswordField(); + mPasswordField.addMouseListener(this); + mPasswordField.getDocument().addDocumentListener(this); + mActiveColor = mPasswordField.getBackground(); + CMSAdminUtil.addEntryField(top, mPasswordLbl, mPasswordField, gbc); + + mPasswordConfirmLbl = CMSAdminUtil.makeJLabel(mResource, PREFIX, "PASSWORDCONFIRM", null); + mPasswordConfirm = new JPasswordField(); + mPasswordConfirm.addMouseListener(this); + mPasswordConfirm.getDocument().addDocumentListener(this); + CMSAdminUtil.addEntryField(top, mPasswordConfirmLbl, mPasswordConfirm, gbc); + + JLabel label4 = CMSAdminUtil.makeJLabel(mResource, PREFIX, "EMAIL", null); + mEMailField = new JTextField(); + CMSAdminUtil.addEntryField(top, label4, mEMailField, gbc); + + CMSAdminUtil.resetGBC(gbc); + //gbc.gridheight = gbc.REMAINDER; + JLabel label5 = CMSAdminUtil.makeJLabel(mResource, PREFIX, "PHONE", null); + mPhoneField = new JTextField(); + CMSAdminUtil.addEntryField(top, label5, mPhoneField, gbc); + + CMSAdminUtil.resetGBC(gbc); + //gbc.gridheight = gbc.REMAINDER; + JLabel label51 = CMSAdminUtil.makeJLabel(mResource, PREFIX, "STATE", null); + mStateField = new JTextField(); + CMSAdminUtil.addEntryField(top, label51, mStateField, gbc); + + CMSAdminUtil.resetGBC(gbc); + mGroupLbl = CMSAdminUtil.makeJLabel(mResource, PREFIX, "GROUP",null); + mGroupBox = new JComboBox(); + //mGroupBox.addItem("Admin group"); + dummy1 = new JLabel(" "); + CMSAdminUtil.addEntryField(top, mGroupLbl, mGroupBox, dummy1, gbc); + + mMembership = CMSAdminUtil.makeJLabel(mResource, PREFIX, "MEMBER", null); + //group membership table + mList = CMSAdminUtil.makeJList(mDataModel,6); + mScrollPane = new JScrollPane(mList, + JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, + JScrollPane.HORIZONTAL_SCROLLBAR_NEVER); + mList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION ); + mList.addMouseListener(this); + mScrollPane.setBackground(Color.white); + + mScrollPane.setBorder(BorderFactory.createLoweredBevelBorder()); + //setLabelCellRenderer(mTable,0); + + CMSAdminUtil.resetGBC(gbc); + gbc.fill = gbc.NONE; + gbc.weightx = 0.0; + gbc.gridwidth = 1; + gbc.gridx = 0; + gbc.anchor = gbc.NORTHEAST; + gbc.gridheight = gbc.REMAINDER; + gbc.insets = new Insets(CMSAdminUtil.COMPONENT_SPACE, + CMSAdminUtil.COMPONENT_SPACE,0,0); + top.add( mMembership, gbc ); + + gbc.gridx++; + gbc.anchor = gbc.NORTHWEST; + gbc.fill = gbc.BOTH; + gbc.weightx = 0.5; + gbc.weighty=1.0; + gbc.gridwidth = gbc.REMAINDER; + gbc.gridheight = gbc.REMAINDER; + gbc.insets = new Insets(CMSAdminUtil.COMPONENT_SPACE, + CMSAdminUtil.COMPONENT_SPACE,0,CMSAdminUtil.COMPONENT_SPACE); + top.add( mScrollPane, gbc ); + + return top; + } + + //================================================= + // RETRIEVE INFO FROM SERVER SIDE + //================================================= + + //retrieve group information from the server + private void refresh() throws EAdminException { + + //construct NVP + NameValuePairs config = new NameValuePairs(); + config.put(Constants.PR_USER_FULLNAME, ""); + config.put(Constants.PR_USER_EMAIL, ""); + config.put(Constants.PR_USER_PHONE, ""); + config.put(Constants.PR_USER_STATE, ""); + config.put(Constants.PR_USER_GROUP, ""); + + NameValuePairs response; + response = mConnection.read(DestDef.DEST_USER_ADMIN, + ScopeDef.SC_USERS, + mUserName, + config); + + //setup the ui + mUserNameField.setText(mUserName); + mFullNameField.setText(response.get(Constants.PR_USER_FULLNAME)); + mEMailField.setText(response.get(Constants.PR_USER_EMAIL)); + mPhoneField.setText(response.get(Constants.PR_USER_PHONE)); + mStateField.setText(response.get(Constants.PR_USER_STATE)); + + //parse group entry + String userStr = response.get(Constants.PR_USER_GROUP); + if ( (userStr != null) && (!userStr.trim().equals("")) ) { + StringTokenizer tokenizer = new StringTokenizer(userStr, ","); + while (tokenizer.hasMoreTokens()) { + String groupstr = tokenizer.nextToken().trim(); + mDataModel.addElement(groupstr); + } + } + + } + + private void addGroup() throws EAdminException { + NameValuePairs response = mConnection.search(DestDef.DEST_GROUP_ADMIN, + ScopeDef.SC_GROUPS, new NameValuePairs()); + if (mGroupBox.getItemCount() > 0) + mGroupBox.removeAllItems(); + for (String groupname : response.keySet()) { + mGroupBox.addItem(groupname.trim()); + } + + } + + //add new group information + private void addUser() throws EAdminException { + + //construct NVP + NameValuePairs config = new NameValuePairs(); + config.put(Constants.PR_USER_FULLNAME, mFullNameField.getText().trim()); + config.put(Constants.PR_USER_PASSWORD, mPasswordField.getText().trim()); + config.put(Constants.PR_USER_EMAIL, mEMailField.getText().trim()); + config.put(Constants.PR_USER_PHONE, mPhoneField.getText().trim()); + config.put(Constants.PR_USER_STATE, mStateField.getText().trim()); + config.put(Constants.PR_USER_GROUP, (String) mGroupBox.getSelectedItem()); + config.put(Constants.PR_USER_TYPE, ""); + //config.add(Constants.PR_USER_CERT,""); + //createCertEntry(config); + + //send request + mConnection.add(DestDef.DEST_USER_ADMIN, + ScopeDef.SC_USERS, + mUserNameField.getText().trim(), + config); + } + + //change new group information + private void modifyUser() throws EAdminException { + + //construct NVP + NameValuePairs config = new NameValuePairs(); + config.put(Constants.PR_USER_FULLNAME, mFullNameField.getText().trim()); + config.put(Constants.PR_USER_PASSWORD, mPasswordField.getText().trim()); + config.put(Constants.PR_USER_EMAIL, mEMailField.getText().trim()); + config.put(Constants.PR_USER_PHONE, mPhoneField.getText().trim()); + config.put(Constants.PR_USER_STATE, mStateField.getText().trim()); + config.put(Constants.PR_USER_TYPE, ""); + //createCertEntry(config); + + //send request + mConnection.modify(DestDef.DEST_USER_ADMIN, + ScopeDef.SC_USERS, + mUserName, + config); + + // #343872 + // see if it is password change of the currently logged-in + // user. If it is the case, we need to update Console password + // cache + String pwd = mPasswordField.getText().trim(); + if (!pwd.equals("")) { + BasicAuthenticator auth = (BasicAuthenticator) + mConnection.getAuthenticator(); + if (mUserName.equals(auth.getUserid()) && + !pwd.equals(auth.getPassword())) { + auth.setPassword(pwd); + } + } + } + + //refresh the table content + private void refreshTable() { + mScrollPane.repaint(1); + } + + +} + -- cgit