mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 18:51:17 +00:00
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package appclient
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
|
|
"github.com/certifi/gocertifi"
|
|
"github.com/weaveworks/scope/common/xfer"
|
|
)
|
|
|
|
var certPool *x509.CertPool
|
|
|
|
func init() {
|
|
var err error
|
|
certPool, err = gocertifi.CACerts()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// ProbeConfig contains all the info needed for a probe to do HTTP requests
|
|
type ProbeConfig struct {
|
|
Token string
|
|
ProbeVersion string
|
|
ProbeID string
|
|
Insecure bool
|
|
}
|
|
|
|
func (pc ProbeConfig) authorizeHeaders(headers http.Header) {
|
|
headers.Set("Authorization", fmt.Sprintf("Scope-Probe token=%s", pc.Token))
|
|
headers.Set(xfer.ScopeProbeIDHeader, pc.ProbeID)
|
|
headers.Set(xfer.ScopeProbeVersionHeader, pc.ProbeVersion)
|
|
}
|
|
|
|
func (pc ProbeConfig) authorizedRequest(method string, urlStr string, body io.Reader) (*http.Request, error) {
|
|
req, err := http.NewRequest(method, urlStr, body)
|
|
if err == nil {
|
|
pc.authorizeHeaders(req.Header)
|
|
}
|
|
return req, err
|
|
}
|
|
|
|
func (pc ProbeConfig) getHTTPTransport(hostname string) (*http.Transport, error) {
|
|
if pc.Insecure {
|
|
return &http.Transport{
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
}, nil
|
|
}
|
|
|
|
host, _, err := net.SplitHostPort(hostname)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &http.Transport{
|
|
TLSClientConfig: &tls.Config{
|
|
RootCAs: certPool,
|
|
ServerName: host,
|
|
},
|
|
}, nil
|
|
}
|