mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
package safeline
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/go-resty/resty/v2"
|
|
)
|
|
|
|
type Client struct {
|
|
client *resty.Client
|
|
}
|
|
|
|
func NewClient(serverUrl, apiToken string) *Client {
|
|
client := resty.New().
|
|
SetBaseURL(strings.TrimRight(serverUrl, "/")).
|
|
SetHeader("X-SLCE-API-TOKEN", apiToken)
|
|
|
|
return &Client{
|
|
client: client,
|
|
}
|
|
}
|
|
|
|
func (c *Client) WithTimeout(timeout time.Duration) *Client {
|
|
c.client.SetTimeout(timeout)
|
|
return c
|
|
}
|
|
|
|
func (c *Client) WithTLSConfig(config *tls.Config) *Client {
|
|
c.client.SetTLSClientConfig(config)
|
|
return c
|
|
}
|
|
|
|
func (c *Client) sendRequest(path string, params interface{}) (*resty.Response, error) {
|
|
req := c.client.R().
|
|
SetHeader("Content-Type", "application/json").
|
|
SetBody(params)
|
|
resp, err := req.Post(path)
|
|
if err != nil {
|
|
return resp, fmt.Errorf("safeline api error: failed to send request: %w", err)
|
|
} else if resp.IsError() {
|
|
return resp, fmt.Errorf("safeline api error: unexpected status code: %d, resp: %s", resp.StatusCode(), resp.String())
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
func (c *Client) sendRequestWithResult(path string, params interface{}, result BaseResponse) error {
|
|
resp, err := c.sendRequest(path, params)
|
|
if err != nil {
|
|
if resp != nil {
|
|
json.Unmarshal(resp.Body(), &result)
|
|
}
|
|
return err
|
|
}
|
|
|
|
if err := json.Unmarshal(resp.Body(), &result); err != nil {
|
|
return fmt.Errorf("safeline api error: failed to unmarshal response: %w", err)
|
|
} else if errcode := result.GetErrCode(); errcode != nil && *errcode != "" {
|
|
if result.GetErrMsg() == nil {
|
|
return fmt.Errorf("safeline api error: code='%s'", *errcode)
|
|
} else {
|
|
return fmt.Errorf("safeline api error: code='%s', message='%s'", *errcode, *result.GetErrMsg())
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|