aboutsummaryrefslogtreecommitdiffstats
path: root/utils/webseal-simulator/src/main/java/org/openecomp/sdc/webseal/simulator/SSL/DummySSLProtocolSocketFactory.java
blob: a11dec43b9246197f78c20fe1d65b7a4fdd8254d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package org.openecomp.sdc.webseal.simulator.SSL;

import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;

import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;

import org.apache.commons.httpclient.ConnectTimeoutException;
import org.apache.commons.httpclient.HttpClientError;
import org.apache.commons.httpclient.params.HttpConnectionParams;
import org.apache.commons.httpclient.protocol.ControllerThreadSocketFactory;
import org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory;
 
public class DummySSLProtocolSocketFactory implements SecureProtocolSocketFactory { 

 
  private SSLContext sslcontext = null; 
 
  /**
   * Constructor for DummySSLProtocolSocketFactory. 
   */ 
  public DummySSLProtocolSocketFactory() { 
    super(); 
  } 
 
  private static SSLContext createEasySSLContext() { 
    try { 
      SSLContext context = SSLContext.getInstance("SSL"); 
      context.init(null, new TrustManager[] { new DummyX509TrustManager(null) }, null); 
      return context; 
    } catch (Exception e) {
      throw new HttpClientError(e.toString()); 
    } 
  } 
 
  private SSLContext getSSLContext() { 
    if (this.sslcontext == null) { 
      this.sslcontext = createEasySSLContext(); 
    } 
    return this.sslcontext; 
  } 
 
  /**
   * @see org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory#createSocket(String,int,InetAddress,int) 
   */ 
  public Socket createSocket(String host, int port, InetAddress clientHost, int clientPort) throws IOException, 
          UnknownHostException { 
 
    return getSSLContext().getSocketFactory().createSocket(host, port, clientHost, clientPort); 
  } 
 
  /**
   * Attempts to get a new socket connection to the given host within the given 
   * time limit. 
   * <p> 
   * To circumvent the limitations of older JREs that do not support connect 
   * timeout a controller thread is executed. The controller thread attempts to 
   * create a new socket within the given limit of time. If socket constructor 
   * does not return until the timeout expires, the controller terminates and 
   * throws an {@link ConnectTimeoutException} 
   * </p> 
   *  
   * @param host the host name/IP 
   * @param port the port on the host 
   * @param localAddress the local host name/IP to bind the socket to 
   * @param localPort the port on the local machine 
   * @param params {@link HttpConnectionParams Http connection parameters} 
   *  
   * @return Socket a new socket 
   *  
   * @throws IOException if an I/O error occurs while creating the socket 
   * @throws UnknownHostException if the IP address of the host cannot be 
   *         determined 
   */ 
  public Socket createSocket(final String host, final int port, final InetAddress localAddress, final int localPort, 
          final HttpConnectionParams params) throws IOException, UnknownHostException, ConnectTimeoutException { 
    if (params == null) { 
      throw new IllegalArgumentException("Parameters may not be null"); 
    } 
    int timeout = params.getConnectionTimeout(); 
    if (timeout == 0) { 
      return createSocket(host, port, localAddress, localPort); 
    } else { 
      // To be eventually deprecated when migrated to Java 1.4 or above 
      return ControllerThreadSocketFactory.createSocket(this, host, port, localAddress, localPort, timeout); 
    } 
  } 
 
  /**
   * @see org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory#createSocket(String,int) 
   */ 
  public Socket createSocket(String host, int port) throws IOException, UnknownHostException { 
    return getSSLContext().getSocketFactory().createSocket(host, port); 
  } 
 
  /**
   * @see org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory#createSocket(Socket,String,int,boolean) 
   */ 
  public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException, 
          UnknownHostException { 
    return getSSLContext().getSocketFactory().createSocket(socket, host, port, autoClose); 
  } 
 
  public boolean equals(Object obj) { 
    return ((obj != null) && obj.getClass().equals(DummySSLProtocolSocketFactory.class)); 
  } 
 
  public int hashCode() { 
    return DummySSLProtocolSocketFactory.class.hashCode(); 
  } 
 
}