Package it.eng.spagobi.security.test

Source Code of it.eng.spagobi.security.test.ConnectionTest

/**

Copyright (c) 2005-2008, Engineering Ingegneria Informatica s.p.a.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of
      conditions and the following disclaimer.
     
    * Redistributions in binary form must reproduce the above copyright notice, this list of
      conditions and the following disclaimer in the documentation and/or other materials
      provided with the distribution.
     
    * Neither the name of the Engineering Ingegneria Informatica s.p.a. nor the names of its contributors may
      be used to endorse or promote products derived from this software without specific
      prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE

**/
package it.eng.spagobi.security.test;

import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;

import com.novell.ldap.LDAPAttributeSet;
import com.novell.ldap.LDAPConnection;
import com.novell.ldap.LDAPEntry;
import com.novell.ldap.LDAPException;
import com.novell.ldap.LDAPSearchResults;

public class ConnectionTest {

  /**
   * Creates the connection.
   *
   * @return the lDAP connection
   *
   * @throws Exception the exception
   */
  public LDAPConnection createConnection () throws Exception {

      LDAPConnection connection = null;

        try {
          connection = new LDAPConnection();
          // connessione
          connection.connect("localhost",389);
          if (connection.isConnected()) {
            // login
            connection.bind(LDAPConnection.LDAP_V3,"cn=root,dc=spagobi,dc=com","root".getBytes("UTF8"));
            //connection.bind(3,"cn=biadmin,ou=People,dc=spagobi,dc=com","biadmin".getBytes("UTF8"));
          }
          if (connection.isBound()) {
            // valore della radice e dello scope di ricerca
            return connection;
          }
        }catch (LDAPException e) {
          System.out.println("errore in createConnection:: createConnection " + e);       
        }
        catch(UnsupportedEncodingException e) {
          System.out.println("errore in createConnection:: createConnection:  " + e);       
        }     
     
      if (!connection.isConnected() || !connection.isBound()) {
        System.out.println("errore in UserContextHandling:: createConnection: connessione fallita");       
        throw new Exception("UserContextHandling:: createConnection: connessione fallita");
      }
      return null;
     
    }

  /**
   * Autenticate user.
   *
   * @param userId the user id
   * @param psw the psw
   *
   * @return true, if successful
   *
   * @throws Exception the exception
   */
  public boolean autenticateUser (String userId,String psw) throws Exception {

      LDAPConnection connection = null;

        try {
          connection = new LDAPConnection();
          // connessione
          connection.connect("localhost",389);
          if (connection.isConnected()) {
            // login
            connection.bind(LDAPConnection.LDAP_V3,"cn="+userId+",ou=People,dc=spagobi,dc=com",psw.getBytes("UTF8"));
          }
          if (connection.isBound()) {
            return true;
          }
        }catch (LDAPException e) {
          System.out.println("errore in createConnection:: createConnection " + e);       
        }
        catch(UnsupportedEncodingException e) {
          System.out.println("errore in createConnection:: createConnection:  " + e);       
        }     
     
      if (!connection.isConnected() || !connection.isBound()) {
        System.out.println("errore in UserContextHandling:: createConnection: connessione fallita");       
        return false;
      }
      return false;
     
    }
 
  private HashMap getUserAttributes(String userId) throws Exception {
    HashMap userAttributes = new HashMap();
     
      LDAPConnection connection = createConnection();
      if (connection != null) {
      try {
        String[] attrIDs = {"description","sn"};
          LDAPSearchResults searchResults = connection.search("ou=People,dc=spagobi,dc=com",
              LDAPConnection.SCOPE_SUB,
              "(&(objectclass=person)(cn=biadmin))",
              attrIDs,false);
         
          // popolamento userAttributes con attributeName e attributeValue
          LDAPEntry entry = null;
          LDAPAttributeSet attributeSet = null;
          if (searchResults.hasMore()) {
                try {
                    entry = searchResults.next();
                }catch(LDAPException e) {
                  e.printStackTrace();
                    System.out.println("errore in UserContext:: getUserAttributes: " + e.getMessage());
                }           
          }
           
            if (entry != null) {
              attributeSet = entry.getAttributeSet();
            userAttributes.put("dn", entry.getDN());             
            userAttributes.put("description", entry.getAttribute("description"));
            userAttributes.put("sn", entry.getAttribute("sn"));
                       
            }

     }catch (LDAPException e) {
         System.out.println("errore in UserContext:: getUserAttributes: " + e);            
         throw e;
     }finally {
       if (connection != null)
         connection.disconnect();
     }
     
      }
     
      return userAttributes;

 
  }

  private List getUserGroup(String userId) throws Exception {
    List userAttributes = new ArrayList();
     
      LDAPConnection connection = createConnection();
      if (connection != null) {
      try {
        String[] attrIDs = {"description","sn","ou"};
          LDAPSearchResults searchResults = connection.search("ou=People,dc=spagobi,dc=com",
              LDAPConnection.SCOPE_SUB,
              "(&(objectclass=person)(cn=biadmin))",
              attrIDs,false);
         
          // popolamento userAttributes con attributeName e attributeValue
          LDAPEntry entry = null;
          LDAPAttributeSet attributeSet = null;
          if (searchResults.hasMore()) {
                try {
                    entry = searchResults.next();
                }catch(LDAPException e) {
                  e.printStackTrace();
                    System.out.println("errore in UserContext:: getUserAttributes: " + e.getMessage());
                }           
          }
           
            if (entry != null) {
              attributeSet = entry.getAttributeSet();
              String[] ou=entry.getAttribute("ou").getStringValueArray();
             
            userAttributes.add(ou[0]);             
            userAttributes.add(ou[1]);
                       
            }

     }catch (LDAPException e) {
         System.out.println("errore in UserContext:: getUserAttributes: " + e);            
         throw e;
     }finally {
       if (connection != null)
         connection.disconnect();
     }
     
      }
     
      return userAttributes;

 
  }

 
  private List getAllGroups() throws Exception {
    List groups = new ArrayList();
     
      LDAPConnection connection = createConnection();
      if (connection != null) {
      try {
        String[] attrIDs = {"description","ou"};
          LDAPSearchResults searchResults = connection.search("ou=Group,dc=spagobi,dc=com",
              LDAPConnection.SCOPE_SUB,
              "(objectclass=organizationalUnit)",
              attrIDs,false);
         
          // popolamento userAttributes con attributeName e attributeValue
          LDAPEntry entry = null;
          LDAPAttributeSet attributeSet = null;
          while (searchResults.hasMore()){

                try {
                    entry = searchResults.next();
                    if (entry != null) {
                attributeSet = entry.getAttributeSet();
              groups.add(attributeSet.getAttribute("ou").getStringValue());
                    }
                }catch(LDAPException e) {
                  e.printStackTrace();
                    System.out.println("errore in UserContext:: getUserAttributes: " + e.getMessage());
                }           
        }


     }catch (LDAPException e) {
         System.out.println("errore in UserContext:: getUserAttributes: " + e);            
         throw e;
     }finally {
       if (connection != null)
         connection.disconnect();
     }
     
      }
     
      return groups;

 
  }
 
  /**
   * The main method.
   *
   * @param args the args
   */
  public static void main(String[] args) {
    ConnectionTest t=new ConnectionTest();
    try {
      //HashMap attr=t.getUserAttributes ("biadmin");
      //List attr=t.getUserGroup("biadmin");
      boolean attr=t.autenticateUser("biadmin","biadmin");
      System.out.println("");
    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
  }

}
TOP

Related Classes of it.eng.spagobi.security.test.ConnectionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.