2016-09-08 23:44:25 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// transportFunc allows us to inject a mock transport for testing. We define it
|
|
|
|
// here so we can detect the tlsconfig and return nil for only this type.
|
|
|
|
type transportFunc func(*http.Request) (*http.Response, error)
|
|
|
|
|
|
|
|
func (tf transportFunc) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
return tf(req)
|
|
|
|
}
|
|
|
|
|
2016-12-20 06:14:41 -05:00
|
|
|
// resolveTLSConfig attempts to resolve the TLS configuration from the
|
2016-09-08 23:44:25 -04:00
|
|
|
// RoundTripper.
|
2016-09-21 22:16:44 -04:00
|
|
|
func resolveTLSConfig(transport http.RoundTripper) *tls.Config {
|
2016-09-08 23:44:25 -04:00
|
|
|
switch tr := transport.(type) {
|
|
|
|
case *http.Transport:
|
2016-09-21 22:16:44 -04:00
|
|
|
return tr.TLSClientConfig
|
2016-09-08 23:44:25 -04:00
|
|
|
default:
|
2016-09-21 22:16:44 -04:00
|
|
|
return nil
|
2016-09-08 23:44:25 -04:00
|
|
|
}
|
|
|
|
}
|