blob: 38bde53e318b3a47d0741054a6fe3190824fcf47 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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
*
* 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 org.apache.directory.api.ldap.util;
import java.util.Hashtable;
import javax.naming.AuthenticationException;
import javax.naming.AuthenticationNotSupportedException;
import javax.naming.CommunicationException;
import javax.naming.Context;
import javax.naming.ContextNotEmptyException;
import javax.naming.InvalidNameException;
import javax.naming.Name;
import javax.naming.NameAlreadyBoundException;
import javax.naming.NameNotFoundException;
import javax.naming.NamingException;
import javax.naming.NoPermissionException;
import javax.naming.OperationNotSupportedException;
import javax.naming.PartialResultException;
import javax.naming.ReferralException;
import javax.naming.ServiceUnavailableException;
import javax.naming.TimeLimitExceededException;
import javax.naming.directory.AttributeInUseException;
import javax.naming.directory.InvalidAttributeIdentifierException;
import javax.naming.directory.InvalidAttributeValueException;
import javax.naming.directory.InvalidSearchFilterException;
import javax.naming.directory.NoSuchAttributeException;
import javax.naming.directory.SchemaViolationException;
import javax.naming.ldap.LdapName;
import org.apache.directory.api.asn1.DecoderException;
import org.apache.directory.api.asn1.EncoderException;
import org.apache.directory.api.ldap.codec.api.LdapApiService;
import org.apache.directory.api.ldap.model.exception.LdapAffectMultipleDsaException;
import org.apache.directory.api.ldap.model.exception.LdapAliasDereferencingException;
import org.apache.directory.api.ldap.model.exception.LdapAliasException;
import org.apache.directory.api.ldap.model.exception.LdapAttributeInUseException;
import org.apache.directory.api.ldap.model.exception.LdapAuthenticationException;
import org.apache.directory.api.ldap.model.exception.LdapAuthenticationNotSupportedException;
import org.apache.directory.api.ldap.model.exception.LdapContextNotEmptyException;
import org.apache.directory.api.ldap.model.exception.LdapEntryAlreadyExistsException;
import org.apache.directory.api.ldap.model.exception.LdapInvalidAttributeTypeException;
import org.apache.directory.api.ldap.model.exception.LdapInvalidAttributeValueException;
import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
import org.apache.directory.api.ldap.model.exception.LdapInvalidSearchFilterException;
import org.apache.directory.api.ldap.model.exception.LdapLoopDetectedException;
import org.apache.directory.api.ldap.model.exception.LdapNoPermissionException;
import org.apache.directory.api.ldap.model.exception.LdapNoSuchAttributeException;
import org.apache.directory.api.ldap.model.exception.LdapNoSuchObjectException;
import org.apache.directory.api.ldap.model.exception.LdapOperationErrorException;
import org.apache.directory.api.ldap.model.exception.LdapOtherException;
import org.apache.directory.api.ldap.model.exception.LdapPartialResultException;
import org.apache.directory.api.ldap.model.exception.LdapProtocolErrorException;
import org.apache.directory.api.ldap.model.exception.LdapReferralException;
import org.apache.directory.api.ldap.model.exception.LdapSchemaViolationException;
import org.apache.directory.api.ldap.model.exception.LdapServiceUnavailableException;
import org.apache.directory.api.ldap.model.exception.LdapTimeLimitExceededException;
import org.apache.directory.api.ldap.model.exception.LdapUnwillingToPerformException;
import org.apache.directory.api.ldap.model.message.Control;
import org.apache.directory.api.ldap.model.name.Dn;
/**
* An utility class to convert back and forth JNDI classes to ADS classes.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public final class JndiUtils
{
/**
* Private constructor.
*/
private JndiUtils()
{
}
/**
* Convert a LDAP API control to a JNDI control
* @param codec The LDAP API service to use
* @param control The control to convert
* @return A JNDI control
* @throws EncoderException If the conversion failed
* @deprecated We don't use JNDI anymore
*/
@Deprecated
public static javax.naming.ldap.Control toJndiControl( LdapApiService codec, Control control )
throws EncoderException
{
return codec.toJndiControl( control );
}
/**
* Convert some LDAP API controls to JNDI controls
* @param codec The LDAP API service to use
* @param controls The controls to convert
* @return Array of JNDI control
* @throws EncoderException If the conversion failed
* @deprecated We don't use JNDI anymore
*/
@Deprecated
public static javax.naming.ldap.Control[] toJndiControls( LdapApiService codec, Control... controls )
throws EncoderException
{
if ( controls != null )
{
javax.naming.ldap.Control[] jndiControls = new javax.naming.ldap.Control[controls.length];
int i = 0;
for ( Control control : controls )
{
jndiControls[i++] = toJndiControl( codec, control );
}
return jndiControls;
}
else
{
return null;
}
}
/**
* Convert a JNDI request control to a LDAP API control
* @param codec The LDAP API service to use
* @param jndiControl The control to convert
* @return A LDAP API request control
* @throws DecoderException If the conversion failed
* @deprecated We don't use JNDI anymore
*/
@Deprecated
public static Control fromJndiRequestControl( LdapApiService codec, javax.naming.ldap.Control jndiControl )
throws DecoderException
{
return codec.fromJndiRequestControl( jndiControl );
}
/**
* Convert a JNDI response control to a LDAP API control
* @param codec The LDAP API service to use
* @param jndiControl The control to convert
* @return A LDAP API response control
* @throws DecoderException If the conversion failed
* @deprecated We don't use JNDI anymore
*/
@Deprecated
public static Control fromJndiResponseControl( LdapApiService codec, javax.naming.ldap.Control jndiControl )
throws DecoderException
{
return codec.fromJndiResponseControl( jndiControl );
}
/**
* Convert some JNDI controls to LDAP API controls
* @param codec The LDAP API service to use
* @param jndiControls The controls to convert
* @return An array of LDAP API control
* @throws DecoderException If the conversion failed
* @deprecated We don't use JNDI anymore
*/
@Deprecated
public static Control[] fromJndiRequestControls( LdapApiService codec, javax.naming.ldap.Control... jndiControls )
throws DecoderException
{
if ( jndiControls != null )
{
Control[] controls = new Control[jndiControls.length];
int i = 0;
for ( javax.naming.ldap.Control jndiControl : jndiControls )
{
controls[i++] = fromJndiRequestControl( codec, jndiControl );
}
return controls;
}
else
{
return null;
}
}
/**
* Wraps a LDAP exception into a NaingException
*
* @param t The original exception
* @throws NamingException The wrapping JNDI exception
*/
public static void wrap( Throwable t ) throws NamingException
{
if ( t instanceof NamingException )
{
throw ( NamingException ) t;
}
NamingException ne;
if ( ( t instanceof LdapAffectMultipleDsaException )
|| ( t instanceof LdapAliasDereferencingException )
|| ( t instanceof LdapLoopDetectedException )
|| ( t instanceof LdapAliasException )
|| ( t instanceof LdapOperationErrorException )
|| ( t instanceof LdapOtherException ) )
{
ne = new NamingException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAttributeInUseException )
{
ne = new AttributeInUseException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAuthenticationException )
{
ne = new AuthenticationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapAuthenticationNotSupportedException )
{
ne = new AuthenticationNotSupportedException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapContextNotEmptyException )
{
ne = new ContextNotEmptyException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapEntryAlreadyExistsException )
{
ne = new NameAlreadyBoundException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidAttributeTypeException )
{
ne = new InvalidAttributeIdentifierException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidAttributeValueException )
{
ne = new InvalidAttributeValueException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidDnException )
{
ne = new InvalidNameException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapInvalidSearchFilterException )
{
ne = new InvalidSearchFilterException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoPermissionException )
{
ne = new NoPermissionException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoSuchAttributeException )
{
ne = new NoSuchAttributeException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapNoSuchObjectException )
{
ne = new NameNotFoundException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapProtocolErrorException )
{
ne = new CommunicationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapReferralException )
{
ne = new WrappedReferralException( ( LdapReferralException ) t );
}
else if ( t instanceof LdapPartialResultException )
{
ne = new WrappedPartialResultException( ( LdapPartialResultException ) t );
}
else if ( t instanceof LdapSchemaViolationException )
{
ne = new SchemaViolationException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapServiceUnavailableException )
{
ne = new ServiceUnavailableException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapTimeLimitExceededException )
{
ne = new TimeLimitExceededException( t.getLocalizedMessage() );
}
else if ( t instanceof LdapUnwillingToPerformException )
{
ne = new OperationNotSupportedException( t.getLocalizedMessage() );
}
else
{
ne = new NamingException( t.getLocalizedMessage() );
}
ne.setRootCause( t );
throw ne;
}
/**
* Convert a Dn to a {@link javax.naming.Name}
*
* @param dn The Dn to convert
* @return A Name
*/
public static Name toName( Dn dn )
{
try
{
return new LdapName( dn.toString() );
}
catch ( InvalidNameException ine )
{
// TODO : check if we must throw an exception.
// Logically, the Dn must be valid.
return null;
}
}
/**
* Convert a {@link javax.naming.Name} to a Dn
*
* @param name The Name to convert
* @return A Dn
*/
public static Dn fromName( Name name )
{
try
{
return new Dn( name.toString() );
}
catch ( LdapInvalidDnException lide )
{
// TODO : check if we must throw an exception.
// Logically, the Name must be valid.
return null;
}
}
}
// a ReferralException around the LdapReferralException to be used in tests
class WrappedReferralException extends ReferralException
{
private static final long serialVersionUID = 1L;
private LdapReferralException lre;
WrappedReferralException( LdapReferralException lre )
{
this.lre = lre;
}
/**
* {@inheritDoc}
*/
@Override
public boolean skipReferral()
{
return lre.skipReferral();
}
/**
* {@inheritDoc}
*/
@Override
public void retryReferral()
{
lre.retryReferral();
}
/**
* {@inheritDoc}
*/
@Override
public Object getReferralInfo()
{
return lre.getReferralInfo();
}
/**
* {@inheritDoc}
*/
@Override
public Context getReferralContext( Hashtable<?, ?> env ) throws NamingException
{
return lre.getReferralContext( env );
}
/**
* {@inheritDoc}
*/
@Override
public Context getReferralContext() throws NamingException
{
return lre.getReferralContext();
}
/**
* {@inheritDoc}
*/
@Override
public Name getRemainingName()
{
return JndiUtils.toName( lre.getRemainingDn() );
}
/**
* {@inheritDoc}
*/
@Override
public Object getResolvedObj()
{
return lre.getResolvedObject();
}
/**
* {@inheritDoc}
*/
@Override
public Name getResolvedName()
{
return JndiUtils.toName( lre.getResolvedDn() );
}
}
// a PartialResultException around the LdapPartialResultException to be used in tests
class WrappedPartialResultException extends PartialResultException
{
private static final long serialVersionUID = 1L;
private LdapPartialResultException lpre;
WrappedPartialResultException( LdapPartialResultException lpre )
{
this.lpre = lpre;
}
/**
* {@inheritDoc}
*/
@Override
public Name getRemainingName()
{
return JndiUtils.toName( lpre.getRemainingDn() );
}
/**
* {@inheritDoc}
*/
@Override
public Object getResolvedObj()
{
return lpre.getResolvedObject();
}
/**
* {@inheritDoc}
*/
@Override
public Name getResolvedName()
{
return JndiUtils.toName( lpre.getResolvedDn() );
}
}