mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00

* chore: update license header year * chore: update license header year tsx files * chore: update license header
179 lines
2.9 KiB
Go
179 lines
2.9 KiB
Go
// Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors.
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
package sabnzbd
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/autobrr/autobrr/pkg/sharedhttp"
|
|
)
|
|
|
|
type Client struct {
|
|
addr string
|
|
apiKey string
|
|
|
|
basicUser string
|
|
basicPass string
|
|
|
|
log *log.Logger
|
|
|
|
http *http.Client
|
|
}
|
|
|
|
type Options struct {
|
|
Addr string
|
|
ApiKey string
|
|
|
|
BasicUser string
|
|
BasicPass string
|
|
|
|
Log *log.Logger
|
|
}
|
|
|
|
func New(opts Options) *Client {
|
|
c := &Client{
|
|
addr: opts.Addr,
|
|
apiKey: opts.ApiKey,
|
|
basicUser: opts.BasicUser,
|
|
basicPass: opts.BasicPass,
|
|
log: log.New(io.Discard, "", log.LstdFlags),
|
|
http: &http.Client{
|
|
Timeout: time.Second * 60,
|
|
Transport: sharedhttp.Transport,
|
|
},
|
|
}
|
|
|
|
if opts.Log != nil {
|
|
c.log = opts.Log
|
|
}
|
|
|
|
return c
|
|
}
|
|
|
|
func (c *Client) AddFromUrl(ctx context.Context, r AddNzbRequest) (*AddFileResponse, error) {
|
|
v := url.Values{}
|
|
v.Set("mode", "addurl")
|
|
v.Set("name", r.Url)
|
|
v.Set("output", "json")
|
|
v.Set("apikey", c.apiKey)
|
|
v.Set("cat", "*")
|
|
|
|
if r.Category != "" {
|
|
v.Set("cat", r.Category)
|
|
}
|
|
|
|
addr, err := url.JoinPath(c.addr, "/api")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
u, err := url.Parse(addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
u.RawQuery = v.Encode()
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if c.basicUser != "" && c.basicPass != "" {
|
|
req.SetBasicAuth(c.basicUser, c.basicPass)
|
|
}
|
|
|
|
res, err := c.http.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
body, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fmt.Print(body)
|
|
|
|
var data AddFileResponse
|
|
if err := json.Unmarshal(body, &data); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
func (c *Client) Version(ctx context.Context) (*VersionResponse, error) {
|
|
v := url.Values{}
|
|
v.Set("mode", "version")
|
|
v.Set("output", "json")
|
|
v.Set("apikey", c.apiKey)
|
|
|
|
addr, err := url.JoinPath(c.addr, "/api")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
u, err := url.Parse(addr)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
u.RawQuery = v.Encode()
|
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if c.basicUser != "" && c.basicPass != "" {
|
|
req.SetBasicAuth(c.basicUser, c.basicPass)
|
|
}
|
|
|
|
res, err := c.http.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer res.Body.Close()
|
|
|
|
body, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var data VersionResponse
|
|
if err := json.Unmarshal(body, &data); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &data, nil
|
|
}
|
|
|
|
type VersionResponse struct {
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
type AddFileResponse struct {
|
|
NzoIDs []string `json:"nzo_ids"`
|
|
ApiError
|
|
}
|
|
|
|
type ApiError struct {
|
|
ErrorMsg string `json:"error,omitempty"`
|
|
}
|
|
|
|
type AddNzbRequest struct {
|
|
Url string
|
|
Category string
|
|
}
|