View Javadoc
1   /*
2    *   Licensed to the Apache Software Foundation (ASF) under one
3    *   or more contributor license agreements.  See the NOTICE file
4    *   distributed with this work for additional information
5    *   regarding copyright ownership.  The ASF licenses this file
6    *   to you under the Apache License, Version 2.0 (the
7    *   "License"); you may not use this file except in compliance
8    *   with the License.  You may obtain a copy of the License at
9    *
10   *     https://www.apache.org/licenses/LICENSE-2.0
11   *
12   *   Unless required by applicable law or agreed to in writing,
13   *   software distributed under the License is distributed on an
14   *   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *   KIND, either express or implied.  See the License for the
16   *   specific language governing permissions and limitations
17   *   under the License.
18   *
19   */
20  package org.apache.directory.ldap.client.api;
21  
22  
23  import static org.apache.directory.api.ldap.model.message.ResultCodeEnum.processResponse;
24  
25  import java.util.concurrent.atomic.AtomicInteger;
26  
27  import org.apache.directory.api.i18n.I18n;
28  import org.apache.directory.api.ldap.codec.api.LdapApiService;
29  import org.apache.directory.api.ldap.codec.api.LdapApiServiceFactory;
30  import org.apache.directory.api.ldap.model.exception.LdapException;
31  import org.apache.directory.api.ldap.model.message.BindRequest;
32  import org.apache.directory.api.ldap.model.message.BindRequestImpl;
33  import org.apache.directory.api.ldap.model.message.BindResponse;
34  import org.apache.directory.api.ldap.model.message.Control;
35  import org.apache.directory.api.ldap.model.name.Dn;
36  import org.apache.directory.api.ldap.model.schema.SchemaManager;
37  import org.apache.directory.api.util.Strings;
38  import org.apache.mina.core.service.IoHandlerAdapter;
39  import org.slf4j.Logger;
40  import org.slf4j.LoggerFactory;
41  
42  
43  /**
44   * An abstract LdapConnection class gathering the common behavior of LdapConnection
45   * concrete classes.
46   * 
47   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
48   */
49  public abstract class AbstractLdapConnection extends IoHandlerAdapter implements LdapConnection
50  {
51      /** logger for reporting errors that might not be handled properly upstream */
52      private static final Logger LOG = LoggerFactory.getLogger( AbstractLdapConnection.class );
53  
54      /** the schema manager */
55      protected SchemaManager schemaManager;
56  
57      /** A Message ID which is incremented for each operation */
58      protected AtomicInteger messageId;
59  
60      /** the ldap codec service */
61      protected LdapApiService codec;
62  
63  
64      /**
65       * Creates a new instance of an AbstractLdapConnection
66       */
67      protected AbstractLdapConnection()
68      {
69          this( LdapApiServiceFactory.getSingleton() );
70      }
71  
72      protected AbstractLdapConnection( LdapApiService codec )
73      {
74          messageId = new AtomicInteger( 0 );
75          this.codec = codec;
76      }
77  
78  
79      /**
80       * {@inheritDoc}
81       */
82      @Override
83      public void bind( Dn name ) throws LdapException
84      {
85          byte[] credBytes = Strings.EMPTY_BYTES;
86  
87          BindRequest bindRequest = new BindRequestImpl();
88          bindRequest.setDn( name );
89          bindRequest.setCredentials( credBytes );
90  
91          BindResponse bindResponse = bind( bindRequest );
92  
93          processResponse( bindResponse );
94      }
95  
96  
97      /**
98       * {@inheritDoc}
99       */
100     @Override
101     public void bind( String name ) throws LdapException
102     {
103         if ( LOG.isDebugEnabled() )
104         {
105             LOG.debug( I18n.msg( I18n.MSG_04145_BIND_REQUEST, name ) );
106         }
107 
108         bind( new Dn( schemaManager, new Dn( name ) ), null );
109     }
110 
111 
112     /**
113      * {@inheritDoc}
114      */
115     @Override
116     public void bind( String name, String credentials ) throws LdapException
117     {
118         bind( new Dn( schemaManager, new Dn( name ) ), credentials );
119     }
120 
121 
122     /**
123      * {@inheritDoc}
124      */
125     @Override
126     public void bind( Dn name, String credentials ) throws LdapException
127     {
128         byte[] credBytes = credentials == null ? Strings.EMPTY_BYTES : Strings.getBytesUtf8( credentials );
129 
130         BindRequest bindRequest = new BindRequestImpl();
131         bindRequest.setDn( name );
132         bindRequest.setCredentials( credBytes );
133 
134         BindResponse bindResponse = bind( bindRequest );
135 
136         processResponse( bindResponse );
137     }
138 
139 
140     /**
141      * Create a complete BindRequest ready to be sent.
142      *
143      * @param name The DN to bind with
144      * @param credentials The user's password
145      * @param saslMechanism The SASL mechanism to use
146      * @param controls The controls to send
147      * @return The created BindRequest
148      */
149     protected BindRequest createBindRequest( String name, byte[] credentials, String saslMechanism, Control... controls )
150     {
151         // Set the new messageId
152         BindRequest bindRequest = new BindRequestImpl();
153 
154         // Set the version
155         bindRequest.setVersion3( true );
156 
157         // Set the name
158         bindRequest.setName( name );
159 
160         // Set the credentials
161         if ( Strings.isEmpty( saslMechanism ) )
162         {
163             // Simple bind
164             bindRequest.setSimple( true );
165             bindRequest.setCredentials( credentials );
166         }
167         else
168         {
169             // SASL bind
170             bindRequest.setSimple( false );
171             bindRequest.setCredentials( credentials );
172             bindRequest.setSaslMechanism( saslMechanism );
173         }
174 
175         // Add the controls
176         if ( ( controls != null ) && ( controls.length != 0 ) )
177         {
178             bindRequest.addAllControls( controls );
179         }
180 
181         return bindRequest;
182     }
183 }