/* * Licensed to Jasig under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Jasig 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 the following location: * * 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.jasig.cas.util; import java.util.HashMap; import java.util.Map; import java.util.regex.Matcher; import javax.naming.NamingException; import javax.naming.directory.DirContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.ldap.core.LdapEncoder; /** * Utilities related to LDAP functions. * * @author Scott Battaglia * @version $Revision$ $Date$ * @since 3.0 */ public final class LdapUtils { private static final Logger logger = LoggerFactory.getLogger(LdapUtils.class); private LdapUtils() { // private constructor so that no one can instantiate. } /** * Utility method to replace the placeholders in the filter with the proper * values from the userName. * * @param filter * @param userName * @return the filtered string populated with the username */ public static String getFilterWithValues(final String filter, final String userName) { final Map properties = new HashMap(); final String[] userDomain; String newFilter = filter; properties.put("%u", userName); userDomain = userName.split("@"); properties.put("%U", userDomain[0]); if (userDomain.length > 1) { properties.put("%d", userDomain[1]); final String[] dcArray = userDomain[1].split("\\."); for (int i = 0; i < dcArray.length; i++) { properties.put("%" + (i + 1), dcArray[dcArray.length - 1 - i]); } } for (final String key : properties.keySet()) { final String value = LdapEncoder.nameEncode(properties.get(key)); newFilter = newFilter.replaceAll(key, Matcher.quoteReplacement(value)); } return newFilter; } /** * Close the given context and ignore any thrown exception. This is useful * for typical finally blocks in manual Ldap statements. * * @param context the Ldap context to close */ public static void closeContext(final DirContext context) { if (context != null) { try { context.close(); } catch (NamingException ex) { logger.warn("Could not close context", ex); } } } }