mirror of
https://github.com/badkaktus/gorocket.git
synced 2025-03-03 14:52:40 +02:00
Using log.Fatal() calls os.Exit(1) after the log message is printed. os.Exit cannot be catched and exits the program without giving the user a chance to recover from the error.
52 lines
965 B
Go
52 lines
965 B
Go
package gorocket
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
type Client struct {
|
|
baseURL string
|
|
userID string
|
|
xToken string
|
|
apiVersion string
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// NewClient creates new Facest.io client with given API key
|
|
func NewClient(url string) *Client {
|
|
return &Client{
|
|
//userID: user,
|
|
HTTPClient: &http.Client{
|
|
Timeout: 5 * time.Minute,
|
|
},
|
|
//xToken: token,
|
|
baseURL: url,
|
|
apiVersion: "api/v1",
|
|
}
|
|
}
|
|
|
|
func (c *Client) sendRequest(req *http.Request, v interface{}) error {
|
|
req.Header.Set("Accept", "application/json; charset=utf-8")
|
|
req.Header.Set("Content-Type", "application/json; charset=utf-8")
|
|
req.Header.Add("X-Auth-Token", c.xToken)
|
|
req.Header.Add("X-User-Id", c.userID)
|
|
|
|
res, err := c.HTTPClient.Do(req)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return err
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
resp := v
|
|
if err = json.NewDecoder(res.Body).Decode(&resp); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|