io.micronaut.security.ldap.context.DefaultLdapSearchService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-security-ldap Show documentation
Show all versions of micronaut-security-ldap Show documentation
Official Security Solution for Micronaut
/*
* Copyright 2017-2020 original authors
*
* Licensed 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
*
* https://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 io.micronaut.security.ldap.context;
import jakarta.inject.Singleton;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attributes;
import javax.naming.directory.DirContext;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
/**
* Default implementation of {@link LdapSearchService}.
*
* @author James Kleeh
* @since 1.0
*/
@Singleton
public class DefaultLdapSearchService implements LdapSearchService {
@Override
public Optional searchFirst(DirContext managerContext, SearchSettings settings) throws NamingException {
List results = search(managerContext, settings);
if (results.size() > 0) {
LdapSearchResult result = results.get(0);
return Optional.of(result);
}
return Optional.empty();
}
@Override
public List search(DirContext managerContext, SearchSettings settings) throws NamingException {
SearchControls ctrls = new SearchControls();
ctrls.setReturningAttributes(settings.getAttributes());
if (settings.isSubtree()) {
ctrls.setSearchScope(SearchControls.SUBTREE_SCOPE);
}
NamingEnumeration results = managerContext.search(settings.getBase(), settings.getFilter(), settings.getArguments(), ctrls);
return createResults(results);
}
/**
* Builds {@link LdapSearchResult} from the LDAP results.
*
* @param results The LDAP results
* @return The list of {@link LdapSearchResult}
* @throws NamingException If an error occurs
*/
protected List createResults(NamingEnumeration results) throws NamingException {
List searchResults = new ArrayList<>();
while (results.hasMore()) {
SearchResult result = results.next();
Attributes attributes = result.getAttributes();
String dn = result.getNameInNamespace();
searchResults.add(new LdapSearchResult(attributes, dn));
}
return searchResults;
}
}