2022-12-10 17:17:16 +00:00
|
|
|
package lemmy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"reflect"
|
|
|
|
|
|
|
|
"github.com/google/go-querystring/query"
|
|
|
|
"go.arsenm.dev/go-lemmy/types"
|
|
|
|
)
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// Client is a client for Lemmy's HTTP API
|
2022-12-10 17:17:16 +00:00
|
|
|
type Client struct {
|
|
|
|
client *http.Client
|
|
|
|
baseURL *url.URL
|
2022-12-13 18:49:58 +00:00
|
|
|
Token string
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// New creates a new Lemmy client with the default HTTP client.
|
2022-12-10 17:17:16 +00:00
|
|
|
func New(baseURL string) (*Client, error) {
|
|
|
|
return NewWithClient(baseURL, http.DefaultClient)
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// NewWithClient creates a new Lemmy client with the given HTTP client
|
2022-12-10 17:17:16 +00:00
|
|
|
func NewWithClient(baseURL string, client *http.Client) (*Client, error) {
|
|
|
|
u, err := url.Parse(baseURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
u = u.JoinPath("/api/v3")
|
|
|
|
|
|
|
|
return &Client{baseURL: u, client: client}, nil
|
|
|
|
}
|
|
|
|
|
2023-01-05 20:51:45 +00:00
|
|
|
// ClientLogin logs in to Lemmy by sending an HTTP request to the
|
2022-12-13 18:49:58 +00:00
|
|
|
// login endpoint. It stores the returned token in the client
|
|
|
|
// for future use.
|
2023-01-05 20:51:45 +00:00
|
|
|
func (c *Client) ClientLogin(ctx context.Context, l types.Login) error {
|
|
|
|
lr, err := c.Login(ctx, l)
|
2022-12-10 17:17:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-01-07 22:45:01 +00:00
|
|
|
c.Token = lr.JWT.MustValue()
|
2022-12-10 17:17:16 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// req makes a request to the server
|
2022-12-10 17:17:16 +00:00
|
|
|
func (c *Client) req(ctx context.Context, method string, path string, data, resp any) (*http.Response, error) {
|
|
|
|
data = c.setAuth(data)
|
|
|
|
|
|
|
|
var r io.Reader
|
|
|
|
if data != nil {
|
|
|
|
jsonData, err := json.Marshal(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r = bytes.NewReader(jsonData)
|
|
|
|
}
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(
|
|
|
|
ctx,
|
|
|
|
method,
|
|
|
|
c.baseURL.JoinPath(path).String(),
|
|
|
|
r,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Add("Content-Type", "application/json")
|
|
|
|
|
|
|
|
res, err := c.client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(resp)
|
|
|
|
if err == io.EOF {
|
|
|
|
return res, nil
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// getReq makes a get request to the Lemmy server.
|
|
|
|
// It is separate from req() because it uses query
|
|
|
|
// parameters rather than a JSON request body.
|
2022-12-10 17:17:16 +00:00
|
|
|
func (c *Client) getReq(ctx context.Context, method string, path string, data, resp any) (*http.Response, error) {
|
|
|
|
data = c.setAuth(data)
|
|
|
|
|
|
|
|
getURL := c.baseURL.JoinPath(path)
|
|
|
|
vals, err := query.Values(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
getURL.RawQuery = vals.Encode()
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(
|
|
|
|
ctx,
|
|
|
|
method,
|
|
|
|
getURL.String(),
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := c.client.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
|
|
|
|
err = json.NewDecoder(res.Body).Decode(resp)
|
|
|
|
if err == io.EOF {
|
|
|
|
return res, nil
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// resError returns an error if the given response is an error
|
2022-12-10 17:17:16 +00:00
|
|
|
func resError(res *http.Response, lr types.LemmyResponse) error {
|
|
|
|
if lr.Error.IsValid() {
|
|
|
|
return types.LemmyError{
|
|
|
|
Code: res.StatusCode,
|
|
|
|
ErrStr: lr.Error.MustValue(),
|
|
|
|
}
|
2022-12-10 23:40:52 +00:00
|
|
|
} else if res.StatusCode != http.StatusOK {
|
2022-12-10 17:17:16 +00:00
|
|
|
return types.HTTPError{
|
|
|
|
Code: res.StatusCode,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:49:58 +00:00
|
|
|
// setAuth uses reflection to automatically
|
|
|
|
// set struct fields called Auth of type
|
|
|
|
// string or types.Optional[string] to the
|
|
|
|
// authentication token, then returns the
|
|
|
|
// updated struct
|
2022-12-10 17:17:16 +00:00
|
|
|
func (c *Client) setAuth(data any) any {
|
2022-12-10 20:42:27 +00:00
|
|
|
if data == nil {
|
|
|
|
return data
|
|
|
|
}
|
2022-12-10 23:17:18 +00:00
|
|
|
|
2022-12-10 17:17:16 +00:00
|
|
|
val := reflect.New(reflect.TypeOf(data))
|
|
|
|
val.Elem().Set(reflect.ValueOf(data))
|
|
|
|
|
|
|
|
authField := val.Elem().FieldByName("Auth")
|
|
|
|
if !authField.IsValid() {
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2022-12-10 23:17:18 +00:00
|
|
|
switch authField.Type().String() {
|
|
|
|
case "string":
|
2022-12-13 18:49:58 +00:00
|
|
|
authField.SetString(c.Token)
|
2022-12-10 23:17:18 +00:00
|
|
|
case "types.Optional[string]":
|
|
|
|
setMtd := authField.MethodByName("Set")
|
2022-12-13 18:49:58 +00:00
|
|
|
out := setMtd.Call([]reflect.Value{reflect.ValueOf(c.Token)})
|
2022-12-10 23:17:18 +00:00
|
|
|
authField.Set(out[0])
|
|
|
|
default:
|
2022-12-10 17:17:16 +00:00
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
|
|
|
return val.Elem().Interface()
|
|
|
|
}
|