2019-05-09 14:54:44 +02:00
|
|
|
package lbryinc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
|
2019-05-10 15:10:56 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2019-05-09 14:54:44 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Client stores data about internal-apis call it is about to make.
|
|
|
|
type Client struct {
|
|
|
|
ServerAddress string
|
|
|
|
AuthToken string
|
2019-05-10 15:10:56 +02:00
|
|
|
Logger *log.Logger
|
2019-05-09 14:54:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// APIResponse reflects internal-apis JSON response format.
|
|
|
|
type APIResponse struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
Error *string `json:"error"`
|
|
|
|
Data *ResponseData `json:"data"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResponseData is a map containing parsed json response.
|
|
|
|
type ResponseData map[string]interface{}
|
|
|
|
|
2019-05-10 15:10:56 +02:00
|
|
|
const (
|
|
|
|
defaultAPIHost = "https://api.lbry.com"
|
|
|
|
timeout = 5 * time.Second
|
|
|
|
userObjectPath = "user"
|
|
|
|
)
|
2019-05-09 14:54:44 +02:00
|
|
|
|
|
|
|
// NewClient returns a client instance for internal-apis. It requires authToken to be provided
|
|
|
|
// for authentication.
|
|
|
|
func NewClient(authToken string) Client {
|
|
|
|
return Client{
|
2019-05-10 15:10:56 +02:00
|
|
|
ServerAddress: defaultAPIHost,
|
2019-05-09 14:54:44 +02:00
|
|
|
AuthToken: authToken,
|
2019-05-10 15:10:56 +02:00
|
|
|
Logger: log.StandardLogger(),
|
2019-05-09 14:54:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Client) getEndpointURL(object, method string) string {
|
|
|
|
return fmt.Sprintf("%s/%s/%s", c.ServerAddress, object, method)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Client) prepareParams(params map[string]interface{}) (string, error) {
|
|
|
|
form := url.Values{}
|
|
|
|
form.Add("auth_token", c.AuthToken)
|
|
|
|
for k, v := range params {
|
|
|
|
if k == "auth_token" {
|
|
|
|
return "", errors.New("extra auth_token supplied in request params")
|
|
|
|
}
|
|
|
|
form.Add(k, fmt.Sprintf("%v", v))
|
|
|
|
}
|
|
|
|
return form.Encode(), nil
|
|
|
|
}
|
|
|
|
|
2019-05-10 15:10:56 +02:00
|
|
|
func (c Client) doCall(url string, payload string) ([]byte, error) {
|
|
|
|
var body []byte
|
2019-05-09 14:54:44 +02:00
|
|
|
c.Logger.Debugf("sending payload: %s", payload)
|
|
|
|
req, err := http.NewRequest(http.MethodPost, url, bytes.NewBuffer([]byte(payload)))
|
|
|
|
if err != nil {
|
|
|
|
return body, err
|
|
|
|
}
|
|
|
|
req.Header.Add("Accept", "application/json")
|
|
|
|
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
|
|
|
|
client := &http.Client{Timeout: timeout}
|
|
|
|
r, err := client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return body, err
|
|
|
|
}
|
|
|
|
defer r.Body.Close()
|
2019-05-10 15:10:56 +02:00
|
|
|
return ioutil.ReadAll(r.Body)
|
2019-05-09 14:54:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call calls a remote internal-apis server, returning a response,
|
|
|
|
// wrapped into standardized API Response struct.
|
2019-05-10 15:10:56 +02:00
|
|
|
func (c Client) Call(object, method string, params map[string]interface{}) (ResponseData, error) {
|
|
|
|
var rd ResponseData
|
2019-05-09 14:54:44 +02:00
|
|
|
payload, err := c.prepareParams(params)
|
|
|
|
if err != nil {
|
|
|
|
return rd, err
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := c.doCall(c.getEndpointURL(object, method), payload)
|
|
|
|
if err != nil {
|
|
|
|
return rd, err
|
|
|
|
}
|
|
|
|
var ar APIResponse
|
|
|
|
err = json.Unmarshal(body, &ar)
|
|
|
|
if err != nil {
|
|
|
|
return rd, err
|
|
|
|
}
|
|
|
|
if !ar.Success {
|
|
|
|
return rd, errors.New(*ar.Error)
|
|
|
|
}
|
|
|
|
return *ar.Data, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserMe returns user details for the user associated with the current auth_token
|
|
|
|
func (c Client) UserMe() (ResponseData, error) {
|
|
|
|
return c.Call(userObjectPath, "me", map[string]interface{}{})
|
|
|
|
}
|