2020-11-06 23:16:52 +00:00
|
|
|
package gocli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2021-01-30 09:53:34 +00:00
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
2020-11-06 23:16:52 +00:00
|
|
|
"net/http"
|
2021-01-30 09:53:34 +00:00
|
|
|
"time"
|
2020-11-06 23:16:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var Basepath string = ""
|
|
|
|
var Host string = ""
|
|
|
|
var ExtraHeaders map[string]string = make(map[string]string)
|
|
|
|
|
|
|
|
func invoke(m string, path string, bodyo interface{}) (*json.Decoder, error) {
|
|
|
|
|
|
|
|
b := &bytes.Buffer{}
|
|
|
|
err := json.NewEncoder(b).Encode(bodyo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
body := bytes.NewReader(b.Bytes())
|
|
|
|
|
|
|
|
req, err := http.NewRequest(m, Host+Basepath+path, body)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Set("Content-type", "application/json")
|
|
|
|
for k, v := range ExtraHeaders {
|
|
|
|
req.Header.Set(k, v)
|
|
|
|
}
|
|
|
|
cli := http.Client{}
|
|
|
|
res, err := cli.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-30 09:53:34 +00:00
|
|
|
|
|
|
|
if res.StatusCode >= 400 {
|
|
|
|
bs, err := ioutil.ReadAll(res.Body)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return nil, errors.New(string(bs))
|
|
|
|
}
|
|
|
|
|
2020-11-06 23:16:52 +00:00
|
|
|
ret := json.NewDecoder(res.Body)
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2021-01-30 09:53:34 +00:00
|
|
|
type ARequestStruct struct {
|
|
|
|
C time.Time `json:"c"`
|
|
|
|
D string `json:"d"`
|
|
|
|
A string `json:"a"`
|
|
|
|
B int64 `json:"b"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AResponseStruct struct {
|
|
|
|
A string `json:"a"`
|
|
|
|
B int64 `json:"b"`
|
|
|
|
C time.Time `json:"c"`
|
|
|
|
D string `json:"d"`
|
|
|
|
}
|
|
|
|
|
2020-12-12 12:21:12 +00:00
|
|
|
type AStr struct {
|
2021-01-30 09:53:34 +00:00
|
|
|
A string `json:"a"`
|
|
|
|
B []string `json:"b"`
|
2020-11-06 23:16:52 +00:00
|
|
|
}
|
|
|
|
|
2021-01-30 09:53:34 +00:00
|
|
|
type AStr2 struct {
|
|
|
|
X string `json:"x"`
|
|
|
|
Y []string `json:"y"`
|
|
|
|
Z []AStr `json:"z"`
|
|
|
|
W map[string]AStr `json:"w"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func SomeAPI3(req *AStr) (res []*AStr, err error) {
|
|
|
|
var dec *json.Decoder
|
|
|
|
dec, err = invoke("POST", "/someapi3", req)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ret := []*AStr{}
|
|
|
|
err = dec.Decode(&ret)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
func SomeAPI(req *AStr) (res []*AStr, err error) {
|
|
|
|
var dec *json.Decoder
|
|
|
|
dec, err = invoke("PUT", "/someapi", req)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ret := []*AStr{}
|
|
|
|
err = dec.Decode(&ret)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ret, err
|
|
|
|
}
|
2020-12-12 12:21:12 +00:00
|
|
|
func SomeAPI2(req *AStr) (res []*AStr, err error) {
|
2021-01-30 09:53:34 +00:00
|
|
|
var dec *json.Decoder
|
|
|
|
dec, err = invoke("POST", "/someapi", req)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-12-12 12:21:12 +00:00
|
|
|
ret := []*AStr{}
|
2021-01-30 09:53:34 +00:00
|
|
|
err = dec.Decode(&ret)
|
2020-11-06 23:16:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ret, err
|
|
|
|
}
|