mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
package qbittorrent
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/yusing/go-proxy/internal/gperr"
|
|
"github.com/yusing/go-proxy/internal/homepage/widgets"
|
|
)
|
|
|
|
type Client struct {
|
|
URL string
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
func (c *Client) Initialize(ctx context.Context, url string, cfg map[string]any) error {
|
|
c.URL = url
|
|
c.Username = cfg["username"].(string)
|
|
c.Password = cfg["password"].(string)
|
|
|
|
_, err := c.Version(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Client) doRequest(ctx context.Context, method, endpoint string, query url.Values, body io.Reader) (*http.Response, error) {
|
|
req, err := http.NewRequestWithContext(ctx, method, c.URL+endpoint+query.Encode(), body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if c.Username != "" && c.Password != "" {
|
|
req.SetBasicAuth(c.Username, c.Password)
|
|
}
|
|
|
|
resp, err := widgets.HTTPClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
return nil, gperr.Errorf("%w: %d %s", widgets.ErrHTTPStatus, resp.StatusCode, resp.Status)
|
|
}
|
|
|
|
return resp, nil
|
|
}
|
|
|
|
func jsonRequest[T any](ctx context.Context, client *Client, endpoint string, query url.Values) (result T, err error) {
|
|
resp, err := client.doRequest(ctx, http.MethodGet, endpoint, query, nil)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
err = json.NewDecoder(resp.Body).Decode(&result)
|
|
if err != nil {
|
|
return result, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|