graphql-engine/cli/util/server.go

93 lines
1.8 KiB
Go
Raw Normal View History

2019-01-28 16:55:28 +03:00
package util
import (
"crypto/tls"
2019-01-28 16:55:28 +03:00
"github.com/parnurzeal/gorequest"
"github.com/sirupsen/logrus"
2019-01-28 16:55:28 +03:00
)
// ServerState is the state of Hasura stored on the server.
type ServerState struct {
UUID string
CLIState map[string]interface{}
}
type hdbVersion struct {
UUID string `json:"hasura_uuid"`
CLIState map[string]interface{} `json:"cli_state"`
}
// GetServerState queries a server for the state.
func GetServerState(endpoint string, adminSecret string, config *tls.Config, hasMetadataV3 bool, log *logrus.Logger) *ServerState {
2019-01-28 16:55:28 +03:00
state := &ServerState{
UUID: "00000000-0000-0000-0000-000000000000",
}
if hasMetadataV3{
payload := `
{
"type": "get_catalog_state",
"args": {}
}
`
req := gorequest.New()
if config != nil {
req.TLSClientConfig(config)
}
req.Post(endpoint).Send(payload)
req.Set("X-Hasura-Admin-Secret", adminSecret)
var r struct{
ID string `json:"id"`
}
_, _, errs := req.EndStruct(&r)
if len(errs) != 0 {
log.Debugf("server state: errors: %v", errs)
return state
}
state.UUID = r.ID
}else {
state := &ServerState{
UUID: "00000000-0000-0000-0000-000000000000",
}
payload := `{
2019-01-28 16:55:28 +03:00
"type": "select",
"args": {
"table": {
"schema": "hdb_catalog",
"name": "hdb_version"
},
"columns": [
"hasura_uuid",
"cli_state"
]
}
}`
req := gorequest.New()
if config != nil {
req.TLSClientConfig(config)
}
req.Post(endpoint).Send(payload)
req.Set("X-Hasura-Admin-Secret", adminSecret)
var r []hdbVersion
_, _, errs := req.EndStruct(&r)
if len(errs) != 0 {
log.Debugf("server state: errors: %v", errs)
return state
}
2019-01-28 16:55:28 +03:00
if len(r) != 1 {
log.Debugf("invalid response: %v", r)
return state
}
state.UUID = r[0].UUID
state.CLIState = r[0].CLIState
}
2019-01-28 16:55:28 +03:00
return state
2019-01-28 16:55:28 +03:00
}