Аутентификация с использованием LDAP с spring LDAP API и без использования spring security

#java #authentication #spring-boot #ldap #spring-ldap

#java #аутентификация #spring-загрузка #ldap #spring-ldap

Вопрос:

Я использую плагин spring-ldap-core в моем приложении Sprint boot. В принципе, LdapTemplate — http://docs.spring.io/spring-ldap/docs/current/apidocs/org/springframework/ldap/core/LdapTemplate.html

В основном я хочу преобразовать приведенную ниже конфигурацию xml в java с использованием Spring LDAP API и хочу избежать использования spring security.

Конфигурация xml, которую я хочу преобразовать, является —

  <ldap-server id="ldapServer"
                 url="ldap://ad.company.com:389"
                 manager-dn="CN=serviceaccount,OU=Service Accounts,DC=ad,DC=company,DC=com"
                 manager-password="password"/>

    <authentication-manager>
        <ldap-authentication-provider
                server-ref="ldapServer"
                user-search-base="dc=ad,dc=company,dc=com"
                user-search-filter="sAMAccountName={0}"
                group-search-filter="member={0}"
                group-search-base="ou=Groups,dc=ad,dc=company,dc=com"
                group-role-attribute="cn"/>
    </authentication-manager>
  

Вот мой Java-код ниже-

 import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.ldap.core.support.LdapContextSource;
import org.springframework.ldap.authentication.DefaultValuesAuthenticationSourceDecorator;

@Configuration
public class LdapConfiguration {

    @Bean
    public LdapContextSource contextSource(){
        LdapContextSource contextSource = new LdapContextSource();

        contextSource.setUrl("ldap://ad.company.com:389");
        contextSource.setBase("DC=ad,DC=company,DC=com");
        contextSource.setUserDn("CN=serviceaccount,OU=Service Accounts,DC=ad,DC=company,DC=com");
        contextSource.setPassword("password");
        contextSource.afterPropertiesSet();
        return contextSource;
    }


    @Bean
    public LdapTemplate ldapTemplate(){

        LdapTemplate template = new LdapTemplate(contextSource());
        try {
            template.afterPropertiesSet();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return template;
    }
}
  

Вот как я пытаюсь вызвать аутентификацию —
Метод, частью которого является этот фрагмент, возвращает логическое значение, если происходит аутентификация

  AndFilter filter = new AndFilter();

    filter.and(new EqualsFilter("sAMAccountName", userloginName));

    return ldapTemplate.authenticate("OU=Service Accounts", filter.encode(), userPassword);
  

Это не работает, и ошибка, которую я получаю, заключается в том, что :

 No results found for search, base: 'OU=Service Accounts'; filter: '(sAMAccountName=usernameIinput)'.
  

Я хочу знать, как можно настроить следующие свойства xml с помощью LDAP API?

 group-search-filter="member={0}"
group-search-base="ou=Groups,dc=ad,dc=company,dc=com"
group-role-attribute="cn"/>
  

Кроме того, чего еще мне не хватает? Почему это не работает?
Любая помощь будет действительно оценена!

Ответ №1:

Я смог это выяснить.

// Подключение LDAP с использованием LdapTemplate

 @Configuration
public class LdapConfiguration {

    @Bean
    public LdapContextSource contextSource(){
        LdapContextSource contextSource = new LdapContextSource();
        contextSource.setUrl("ldap://companyurl.com:389");
        contextSource.setUserDn("CN=serviceaccount,OU=Service Accounts,DC=ad,DC=company,DC=com");
        contextSource.setPassword("secretpassword");
        return contextSource;
    }

    @Bean
    public LdapTemplate ldapTemplate(){
        LdapTemplate template = new LdapTemplate(contextSource());
        return template;
    }
}
  

// Часть аутентификации

 AndFilter filter = new AndFilter();
filter.and(new EqualsFilter("mailNickname", username));

Boolean authenticate = ldapTemplate.authenticate(base, filter.encode(), userpassword);
  

Комментарии:

1. можем ли мы выполнить LdapTemplate.authenticate() без настройки contextSource.setUserDN() и contextSource.SetPassword().

2. @TXT, параметр userDN в contextSource является обязательным параметром. Без передачи этого параметра вы не сможете установить соединение ldap.