d1743d29de
Sont des restants des références d'implémentation
100 lines
2 KiB
Go
100 lines
2 KiB
Go
package data
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
)
|
|
|
|
type ApiClient struct {
|
|
Key string
|
|
Host string
|
|
Port int
|
|
Protocol string
|
|
}
|
|
|
|
func NewApiClient(key, host, protocol string, port int) *ApiClient {
|
|
return &ApiClient{
|
|
Key: key,
|
|
Host: host,
|
|
Port: port,
|
|
Protocol: protocol,
|
|
}
|
|
}
|
|
|
|
func (a *ApiClient) Call(method, route string, requestBody io.Reader, useKey bool) (*http.Response, error) {
|
|
var response *http.Response
|
|
|
|
endpoint := fmt.Sprintf("%s://%s:%d%s",
|
|
a.Protocol, a.Host, a.Port, route,
|
|
)
|
|
|
|
/*
|
|
//TODO
|
|
log.Println("endpoint: ", endpoint)
|
|
*/
|
|
|
|
// Create client
|
|
client := &http.Client{}
|
|
|
|
// Create request
|
|
request, err := http.NewRequest(method, endpoint, requestBody)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
if useKey {
|
|
if a.Key == "" {
|
|
return response, fmt.Errorf("Call to API required a key but none was provided. See --help for instructions on providing an API key.")
|
|
}
|
|
|
|
request.Header.Add("Authorization", fmt.Sprintf("Bearer %s", a.Key))
|
|
}
|
|
|
|
if requestBody != nil {
|
|
request.Header.Add("Content-Type", "application/json")
|
|
}
|
|
|
|
// Fetch Request
|
|
response, err = client.Do(request)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
return response, nil
|
|
}
|
|
|
|
// BottinHealthResponse is the response type for GetBottinHealth
|
|
type BottinHealthResponse struct {
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
// GetHealth allows checking for API server health
|
|
func (a *ApiClient) GetBottinHealth() (string, error) {
|
|
var healthResponse BottinHealthResponse
|
|
|
|
response, err := a.Call(http.MethodGet, "/v4/health", nil, true)
|
|
if err != nil {
|
|
return healthResponse.Message, err
|
|
}
|
|
|
|
defer response.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(response.Body)
|
|
if err != nil {
|
|
return healthResponse.Message, err
|
|
}
|
|
|
|
if err := json.Unmarshal(body, &healthResponse); err != nil {
|
|
return healthResponse.Message, err
|
|
}
|
|
|
|
if healthResponse.Message == "" {
|
|
return healthResponse.Message, errors.New("Could not confirm that API server is up, no response message")
|
|
}
|
|
|
|
return healthResponse.Message, nil
|
|
}
|