2016-12-07 04:10:42 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type proxyTransportCache struct {
|
|
|
|
cache map[int64]cachedTransport
|
|
|
|
sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
type cachedTransport struct {
|
|
|
|
updated time.Time
|
|
|
|
|
|
|
|
*http.Transport
|
|
|
|
}
|
|
|
|
|
|
|
|
var ptc = proxyTransportCache{
|
|
|
|
cache: make(map[int64]cachedTransport),
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ds *DataSource) GetHttpClient() (*http.Client, error) {
|
|
|
|
transport, err := ds.GetHttpTransport()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &http.Client{
|
|
|
|
Timeout: time.Duration(30 * time.Second),
|
|
|
|
Transport: transport,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ds *DataSource) GetHttpTransport() (*http.Transport, error) {
|
|
|
|
ptc.Lock()
|
|
|
|
defer ptc.Unlock()
|
|
|
|
|
|
|
|
if t, present := ptc.cache[ds.Id]; present && ds.Updated.Equal(t.updated) {
|
|
|
|
return t.Transport, nil
|
|
|
|
}
|
|
|
|
|
2017-09-28 08:10:14 -05:00
|
|
|
var tlsSkipVerify, tlsClientAuth, tlsAuthWithCACert bool
|
|
|
|
if ds.JsonData != nil {
|
|
|
|
tlsClientAuth = ds.JsonData.Get("tlsClientAuth").MustBool(false)
|
|
|
|
tlsAuthWithCACert = ds.JsonData.Get("tlsAuthWithCACert").MustBool(false)
|
|
|
|
tlsSkipVerify = ds.JsonData.Get("tlsSkipVerify").MustBool(false)
|
|
|
|
}
|
|
|
|
|
2016-12-07 04:10:42 -06:00
|
|
|
transport := &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{
|
2017-09-28 08:10:14 -05:00
|
|
|
InsecureSkipVerify: tlsSkipVerify,
|
|
|
|
Renegotiation: tls.RenegotiateFreelyAsClient,
|
2016-12-07 04:10:42 -06:00
|
|
|
},
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
Dial: (&net.Dialer{
|
|
|
|
Timeout: 30 * time.Second,
|
|
|
|
KeepAlive: 30 * time.Second,
|
2017-09-28 00:25:00 -05:00
|
|
|
DualStack: true,
|
2016-12-07 04:10:42 -06:00
|
|
|
}).Dial,
|
|
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
|
|
MaxIdleConns: 100,
|
|
|
|
IdleConnTimeout: 90 * time.Second,
|
|
|
|
}
|
|
|
|
|
2017-09-28 05:04:01 -05:00
|
|
|
if tlsClientAuth || tlsAuthWithCACert {
|
2016-12-07 04:10:42 -06:00
|
|
|
decrypted := ds.SecureJsonData.Decrypt()
|
|
|
|
|
|
|
|
if tlsAuthWithCACert && len(decrypted["tlsCACert"]) > 0 {
|
|
|
|
caPool := x509.NewCertPool()
|
|
|
|
ok := caPool.AppendCertsFromPEM([]byte(decrypted["tlsCACert"]))
|
|
|
|
if ok {
|
|
|
|
transport.TLSClientConfig.RootCAs = caPool
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 05:04:01 -05:00
|
|
|
if tlsClientAuth {
|
|
|
|
cert, err := tls.X509KeyPair([]byte(decrypted["tlsClientCert"]), []byte(decrypted["tlsClientKey"]))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
transport.TLSClientConfig.Certificates = []tls.Certificate{cert}
|
2016-12-07 04:10:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ptc.cache[ds.Id] = cachedTransport{
|
|
|
|
Transport: transport,
|
|
|
|
updated: ds.Updated,
|
|
|
|
}
|
|
|
|
|
|
|
|
return transport, nil
|
|
|
|
}
|