mirror of
https://github.com/harness/drone.git
synced 2025-05-05 15:32:56 +00:00
138 lines
4.0 KiB
Go
138 lines
4.0 KiB
Go
// Source: https://github.com/goharbor/harbor
|
|
|
|
// Copyright 2016 Project Harbor Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package http
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
// InsecureTransport used to get the insecure http Transport.
|
|
InsecureTransport = iota
|
|
// SecureTransport used to get the external secure http Transport.
|
|
SecureTransport
|
|
)
|
|
|
|
var (
|
|
secureHTTPTransport http.RoundTripper
|
|
insecureHTTPTransport http.RoundTripper
|
|
)
|
|
|
|
func init() {
|
|
insecureHTTPTransport = NewTransport(WithInsecureSkipVerify(true))
|
|
if InternalTLSEnabled() {
|
|
secureHTTPTransport = NewTransport(WithInternalTLSConfig())
|
|
} else {
|
|
secureHTTPTransport = NewTransport()
|
|
}
|
|
}
|
|
|
|
// Use this instead of Default Transport in library because it sets ForceAttemptHTTP2 to true
|
|
// And that options introduced in go 1.13 will cause the https requests hang forever in replication environment.
|
|
func newDefaultTransport() *http.Transport {
|
|
return &http.Transport{
|
|
Proxy: http.ProxyFromEnvironment,
|
|
DialContext: (&net.Dialer{
|
|
Timeout: 30 * time.Second,
|
|
KeepAlive: 30 * time.Second,
|
|
DualStack: true,
|
|
}).DialContext,
|
|
TLSClientConfig: &tls.Config{
|
|
MinVersion: tls.VersionTLS12,
|
|
},
|
|
MaxIdleConns: 100,
|
|
IdleConnTimeout: 90 * time.Second,
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
}
|
|
}
|
|
|
|
// WithInternalTLSConfig returns a TransportOption that configures the transport to use the internal TLS configuration.
|
|
func WithInternalTLSConfig() func(*http.Transport) {
|
|
return func(tr *http.Transport) {
|
|
tlsConfig, err := GetInternalTLSConfig()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
tr.TLSClientConfig = tlsConfig
|
|
}
|
|
}
|
|
|
|
// WithInsecureSkipVerify returns a TransportOption that configures the
|
|
// transport to skip verification of the server's certificate.
|
|
func WithInsecureSkipVerify(skipVerify bool) func(*http.Transport) {
|
|
return func(tr *http.Transport) {
|
|
tr.TLSClientConfig.InsecureSkipVerify = skipVerify
|
|
}
|
|
}
|
|
|
|
// WithMaxIdleConns returns a TransportOption that configures the
|
|
// transport to use the specified number of idle connections per host.
|
|
func WithMaxIdleConns(maxIdleConns int) func(*http.Transport) {
|
|
return func(tr *http.Transport) {
|
|
tr.MaxIdleConns = maxIdleConns
|
|
}
|
|
}
|
|
|
|
// WithIdleconnectionTimeout returns a TransportOption that configures
|
|
// the transport to use the specified idle connection timeout.
|
|
func WithIdleconnectionTimeout(idleConnectionTimeout time.Duration) func(*http.Transport) {
|
|
return func(tr *http.Transport) {
|
|
tr.IdleConnTimeout = idleConnectionTimeout
|
|
}
|
|
}
|
|
|
|
// NewTransport returns a new http.Transport with the specified options.
|
|
func NewTransport(opts ...func(*http.Transport)) http.RoundTripper {
|
|
tr := newDefaultTransport()
|
|
for _, opt := range opts {
|
|
opt(tr)
|
|
}
|
|
return tr
|
|
}
|
|
|
|
// TransportConfig is the configuration for http transport.
|
|
type TransportConfig struct {
|
|
Insecure bool
|
|
}
|
|
|
|
// TransportOption is the option for http transport.
|
|
type TransportOption func(*TransportConfig)
|
|
|
|
// WithInsecure returns a TransportOption that configures the
|
|
// transport to skip verification of the server's certificate.
|
|
func WithInsecure(skipVerify bool) TransportOption {
|
|
return func(cfg *TransportConfig) {
|
|
cfg.Insecure = skipVerify
|
|
}
|
|
}
|
|
|
|
// GetHTTPTransport returns HttpTransport based on insecure configuration.
|
|
func GetHTTPTransport(opts ...TransportOption) http.RoundTripper {
|
|
cfg := &TransportConfig{}
|
|
for _, opt := range opts {
|
|
opt(cfg)
|
|
}
|
|
if cfg.Insecure {
|
|
return insecureHTTPTransport
|
|
}
|
|
return secureHTTPTransport
|
|
}
|