2024-08-21 10:58:24 +02:00
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2024-08-21 15:32:10 +02:00
|
|
|
"encoding/json"
|
2024-08-21 11:23:07 +02:00
|
|
|
"errors"
|
|
|
|
|
2024-08-21 10:58:24 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
|
|
|
|
)
|
|
|
|
|
|
|
|
var UncatchedError = []error{}
|
|
|
|
|
|
|
|
type State int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ALIVE State = iota
|
|
|
|
REDUCED_SERVICE
|
|
|
|
UNPROCESSABLE_ENTITY
|
|
|
|
DB_FALLOUT
|
|
|
|
TEAPOT
|
|
|
|
DEAD
|
|
|
|
)
|
|
|
|
|
2024-08-21 15:46:16 +02:00
|
|
|
func ToState(str string) State {
|
|
|
|
for _, s := range []State{ALIVE, REDUCED_SERVICE, UNPROCESSABLE_ENTITY, DB_FALLOUT, TEAPOT, DEAD} {
|
|
|
|
if s.String() == str {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return DEAD
|
|
|
|
}
|
|
|
|
|
2024-08-21 10:58:24 +02:00
|
|
|
func (s State) String() string {
|
|
|
|
return [...]string{"alive", "reduced service", "unprocessable entity", "database fallout",
|
|
|
|
"some things boils in here, i'm probably a teapot", "dead"}[s]
|
|
|
|
}
|
|
|
|
|
|
|
|
type API struct{}
|
|
|
|
|
2024-08-21 11:23:07 +02:00
|
|
|
func (a *API) GetState() (State, int, error) {
|
2024-08-21 10:58:24 +02:00
|
|
|
// Check if the database is up
|
|
|
|
err := mongo.MONGOService.TestDB(GetConfig())
|
|
|
|
if err != nil {
|
2024-08-21 11:23:07 +02:00
|
|
|
return DB_FALLOUT, 200, err
|
2024-08-21 10:58:24 +02:00
|
|
|
}
|
|
|
|
err = mongo.MONGOService.TestCollections(GetConfig(), []string{})
|
|
|
|
if err != nil {
|
2024-08-21 11:23:07 +02:00
|
|
|
return UNPROCESSABLE_ENTITY, 200, err
|
2024-08-21 10:58:24 +02:00
|
|
|
}
|
|
|
|
if len(UncatchedError) > 0 {
|
2024-08-21 11:23:07 +02:00
|
|
|
errStr := ""
|
|
|
|
for _, e := range UncatchedError {
|
|
|
|
errStr += e.Error() + "\n"
|
|
|
|
}
|
|
|
|
return TEAPOT, 200, errors.New(errStr)
|
2024-08-21 10:58:24 +02:00
|
|
|
}
|
2024-08-21 11:23:07 +02:00
|
|
|
return ALIVE, 200, nil
|
2024-08-21 10:58:24 +02:00
|
|
|
}
|
2024-08-21 11:28:13 +02:00
|
|
|
|
2024-08-21 15:46:16 +02:00
|
|
|
func (a *API) CheckRemotePeer(url string) State {
|
|
|
|
// Check if the database is up
|
|
|
|
caller := NewHTTPCaller(map[string]map[METHOD]string{})
|
|
|
|
var resp APIStatusResponse
|
|
|
|
b, err := caller.CallGet(url, "/status")
|
|
|
|
if err != nil {
|
|
|
|
return DEAD
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, &resp)
|
|
|
|
return ToState(resp.Data.State)
|
|
|
|
}
|
|
|
|
|
2024-08-21 11:30:44 +02:00
|
|
|
func (a *API) CheckRemoteAPIs(urls []string) (State, int, error) {
|
2024-08-21 11:28:13 +02:00
|
|
|
// Check if the database is up
|
2024-08-21 11:30:44 +02:00
|
|
|
caller := NewHTTPCaller(map[string]map[METHOD]string{})
|
|
|
|
for _, url := range urls {
|
2024-08-21 15:32:10 +02:00
|
|
|
var resp APIStatusResponse
|
|
|
|
b, err := caller.CallGet(url, "/version/status")
|
2024-08-21 11:28:13 +02:00
|
|
|
if err != nil {
|
|
|
|
return REDUCED_SERVICE, 200, err
|
|
|
|
}
|
2024-08-21 15:32:10 +02:00
|
|
|
json.Unmarshal(b, &resp)
|
|
|
|
if resp.Data.Code != 0 {
|
|
|
|
return REDUCED_SERVICE, 200, errors.New(url + " -> " + resp.Error)
|
|
|
|
}
|
2024-08-21 11:28:13 +02:00
|
|
|
}
|
|
|
|
return ALIVE, 200, nil
|
|
|
|
}
|
2024-08-21 15:32:10 +02:00
|
|
|
|
|
|
|
type APIStatusResponse struct {
|
|
|
|
Data *APIStatus `json:"data"`
|
|
|
|
Error string `json:"error"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type APIStatus struct {
|
|
|
|
Code int `json:"code"`
|
|
|
|
State string `json:"state"`
|
|
|
|
}
|