mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
62 lines
1.4 KiB
Go
62 lines
1.4 KiB
Go
package query
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
"net/http"
|
|
|
|
v1 "github.com/yusing/go-proxy/internal/api/v1"
|
|
U "github.com/yusing/go-proxy/internal/api/v1/utils"
|
|
E "github.com/yusing/go-proxy/internal/error"
|
|
"github.com/yusing/go-proxy/internal/net/http/middleware"
|
|
)
|
|
|
|
func ReloadServer() E.Error {
|
|
resp, err := U.FetchAPI(http.MethodPost, "/v1/reload", nil)
|
|
if err != nil {
|
|
return E.From(err)
|
|
}
|
|
defer resp.Body.Close()
|
|
if resp.StatusCode != http.StatusOK {
|
|
failure := E.Errorf("server reload status %v", resp.StatusCode)
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return failure.With(err)
|
|
}
|
|
reloadErr := string(body)
|
|
return failure.Withf(reloadErr)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func List[T any](what string) (_ T, outErr E.Error) {
|
|
resp, err := U.FetchAPI(http.MethodGet, "/v1/list/"+what, nil)
|
|
if err != nil {
|
|
outErr = E.From(err)
|
|
return
|
|
}
|
|
defer resp.Body.Close()
|
|
if resp.StatusCode != http.StatusOK {
|
|
outErr = E.Errorf("list %s: failed, status %v", what, resp.StatusCode)
|
|
return
|
|
}
|
|
var res T
|
|
err = json.NewDecoder(resp.Body).Decode(&res)
|
|
if err != nil {
|
|
outErr = E.From(err)
|
|
return
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func ListRoutes() (map[string]map[string]any, E.Error) {
|
|
return List[map[string]map[string]any](v1.ListRoutes)
|
|
}
|
|
|
|
func ListMiddlewareTraces() (middleware.Traces, E.Error) {
|
|
return List[middleware.Traces](v1.ListMiddlewareTraces)
|
|
}
|
|
|
|
func DebugListTasks() (map[string]any, E.Error) {
|
|
return List[map[string]any](v1.ListTasks)
|
|
}
|