/** * '$RCSfile$' * Purpose: An implementation of the AuthInterface interface that * allows Metacat to use the LDAP protocol for * directory services * Copyright: 2000 Regents of the University of California and the * National Center for Ecological Analysis and Synthesis * Authors: Matt Jones * * '$Author: daigle $' * '$Date: 2008-11-10 15:22:04 -0800 (Mon, 10 Nov 2008) $' * '$Revision: 4547 $' * * 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 edu.ucsb.nceas.metacat; import java.net.ConnectException; import org.apache.log4j.Logger; import edu.ucsb.nceas.metacat.properties.PropertyService; import edu.ucsb.nceas.utilities.PropertyNotFoundException; import java.lang.InstantiationException; import java.util.HashMap; import java.util.Vector; /** * An implementation of the AuthInterface interface that * allows Metacat to use the LDAP protocol for directory services. * The LDAP authentication service is used to determine if a user * is authenticated, and whether they are a member of a particular group. */ public class AuthStub implements AuthInterface { private static Logger logMetacat = Logger.getLogger(AuthTest.class); /** * Construct an AuthTest */ public AuthStub() throws InstantiationException { } /** * Determine if a user/password are valid according to the authentication * service. * * @param user * the name of the principal to authenticate * @param password * the password to use for authentication * @returns boolean true if authentication successful, false otherwise */ public boolean authenticate(String user, String password) throws ConnectException { return true; } /** * Get all users from the authentication service * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @returns string array of all of the user names */ public String[][] getUsers(String user, String password) throws ConnectException { String[][] users = new String[1][1]; users[0][0] = "bogusUser"; return users; } /** * Get all users from the authentication service * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @returns string array of all of the user names */ public String[] getUserInfo(String user, String password) throws ConnectException { String[] userinfo = new String[3]; userinfo[0] = "bogusUser"; userinfo[1] = "bogusOrg"; userinfo[2] = "bogusEmail"; return userinfo; } /** * Get the users for a particular group from the authentication service * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @param group the group whose user list should be returned * @returns string array of the user names belonging to the group */ public String[] getUsers(String user, String password, String group) throws ConnectException { String[] users = null; users[0] = "bogusUser"; return users; } /** * Get all groups from the authentication service * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @returns string array of the group names */ public String[][] getGroups(String user, String password) throws ConnectException { return getGroups(user, password, null); } /** * Get the groups for a particular user from the authentication service * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @param foruser the user whose group list should be returned * @returns string array of the group names */ public String[][] getGroups(String user, String password, String foruser) throws ConnectException { //build and return the groups array String groups[][] = new String[1][2]; groups[0][1] = "bogusGroup"; groups[0][1] = "bogusGroupDesc"; return groups; } /** * Get attributes describing a user or group * * @param foruser the user for which the attribute list is requested * @returns HashMap a map of attribute name to a Vector of values */ public HashMap> getAttributes(String foruser) throws ConnectException { return getAttributes(null, null, foruser); } /** * Get attributes describing a user or group * * @param user the user for authenticating against the service * @param password the password for authenticating against the service * @param foruser the user whose attributes should be returned * @returns HashMap a map of attribute name to a Vector of values */ public HashMap> getAttributes(String user, String password, String foruser) throws ConnectException { HashMap> attributes = new HashMap>(); Vector attributeValues = new Vector(); attributeValues.add("bogusValue1"); attributeValues.add("bogusValue2"); attributes.put("bogusAttributeName", attributeValues); return attributes; } /** * Get all groups and users from authentication scheme. * The output is formatted in XML. * @param user the user which requests the information * @param password the user's password */ public String getPrincipals(String user, String password) throws ConnectException { String out = new String(); out += "\n"; out += "\n"; out += " \n"; out += " \n"; out += " bogusTestGroup\n"; out += " bogusTestGroupDesc\n"; out += " \n"; out += " bogusTestUser\n"; out += " bogusTestUserName\n"; out += " bogusTestOrg\n"; out += " bogusTestOrgUnit\n"; out += " bogusTestEmail\n"; out += " \n"; out += " \n"; out += " \n"; out += " bogusOtherTestGroup\n"; out += " bogusOtherTestGroupDesc\n"; out += " \n"; out += " bogusOtherTestUser\n"; out += " bogusOtherTestUserName\n"; out += " bogusOtherTestOrg\n"; out += " bogusOtherTestOrgUnit\n"; out += " bogusOtherTestEmail\n"; out += " \n"; out += " \n"; out += " \n"; out += ""; return out; } }