mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
80 lines
1.8 KiB
Go
80 lines
1.8 KiB
Go
package handler
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/yusing/go-proxy/internal/watcher/health"
|
|
"github.com/yusing/go-proxy/internal/watcher/health/monitor"
|
|
)
|
|
|
|
var defaultHealthConfig = health.DefaultHealthConfig()
|
|
|
|
func CheckHealth(w http.ResponseWriter, r *http.Request) {
|
|
query := r.URL.Query()
|
|
scheme := query.Get("scheme")
|
|
if scheme == "" {
|
|
http.Error(w, "missing scheme", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
var result *health.HealthCheckResult
|
|
var err error
|
|
switch scheme {
|
|
case "fileserver":
|
|
path := query.Get("path")
|
|
if path == "" {
|
|
http.Error(w, "missing path", http.StatusBadRequest)
|
|
return
|
|
}
|
|
_, err := os.Stat(path)
|
|
result = &health.HealthCheckResult{Healthy: err == nil}
|
|
if err != nil {
|
|
result.Detail = err.Error()
|
|
}
|
|
case "http", "https": // path is optional
|
|
host := query.Get("host")
|
|
path := query.Get("path")
|
|
if host == "" {
|
|
http.Error(w, "missing host", http.StatusBadRequest)
|
|
return
|
|
}
|
|
result, err = monitor.NewHTTPHealthMonitor(&url.URL{
|
|
Scheme: scheme,
|
|
Host: host,
|
|
Path: path,
|
|
}, defaultHealthConfig).CheckHealth()
|
|
case "tcp", "udp":
|
|
host := query.Get("host")
|
|
if host == "" {
|
|
http.Error(w, "missing host", http.StatusBadRequest)
|
|
return
|
|
}
|
|
hasPort := strings.Contains(host, ":")
|
|
port := query.Get("port")
|
|
if port != "" && hasPort {
|
|
http.Error(w, "port and host with port cannot both be provided", http.StatusBadRequest)
|
|
return
|
|
}
|
|
if port != "" {
|
|
host = fmt.Sprintf("%s:%s", host, port)
|
|
}
|
|
result, err = monitor.NewRawHealthMonitor(&url.URL{
|
|
Scheme: scheme,
|
|
Host: host,
|
|
}, defaultHealthConfig).CheckHealth()
|
|
}
|
|
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusBadGateway)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.WriteHeader(http.StatusOK)
|
|
json.NewEncoder(w).Encode(result)
|
|
}
|