mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* refactor(api): refactor TLS support * feat(api): migrate endpoint data * refactor(api): remove unused code and rename functions * refactor(app): remove console.log statement
46 lines
1 KiB
Go
46 lines
1 KiB
Go
package client
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/portainer/portainer"
|
|
)
|
|
|
|
// ExecutePingOperation will send a SystemPing operation HTTP request to a Docker environment
|
|
// using the specified host and optional TLS configuration.
|
|
func ExecutePingOperation(host string, tlsConfig *tls.Config) (bool, error) {
|
|
transport := &http.Transport{}
|
|
|
|
scheme := "http"
|
|
if tlsConfig != nil {
|
|
transport.TLSClientConfig = tlsConfig
|
|
scheme = "https"
|
|
}
|
|
|
|
client := &http.Client{
|
|
Timeout: time.Second * 3,
|
|
Transport: transport,
|
|
}
|
|
|
|
target := strings.Replace(host, "tcp://", scheme+"://", 1)
|
|
return pingOperation(client, target)
|
|
}
|
|
|
|
func pingOperation(client *http.Client, target string) (bool, error) {
|
|
pingOperationURL := target + "/_ping"
|
|
|
|
response, err := client.Get(pingOperationURL)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
agentOnDockerEnvironment := false
|
|
if response.Header.Get(portainer.PortainerAgentHeader) != "" {
|
|
agentOnDockerEnvironment = true
|
|
}
|
|
|
|
return agentOnDockerEnvironment, nil
|
|
}
|