forked from jrudio/go-sonarr-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
129 lines (90 loc) · 2.69 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package sonarr
import (
"bytes"
"encoding/json"
"net/http"
"net/url"
"strings"
"time"
)
func (s *Sonarr) get(endpoint string, params url.Values) (*http.Response, error) {
endpointURL, err := url.Parse(endpoint)
if err != nil {
return &http.Response{}, err
}
if params == nil {
params = endpointURL.Query()
}
params.Set("apikey", s.apiKey)
endpointURL.RawQuery = params.Encode()
requestURL := appendEndpoint(s.baseURL.String(), endpointURL.String())
req, err := http.NewRequest("GET", requestURL, nil)
if err != nil {
return &http.Response{}, err
}
return s.HTTPClient.Do(req)
}
func (s *Sonarr) put(endpoint string, payload interface{}) (*http.Response, error) {
body, err := json.Marshal(payload)
if err != nil {
return &http.Response{}, err
}
endpointURL, err := url.Parse(endpoint)
if err != nil {
return &http.Response{}, err
}
params := endpointURL.Query()
params.Set("apikey", s.apiKey)
endpointURL.RawQuery = params.Encode()
requestURL := appendEndpoint(s.baseURL.String(), endpointURL.String())
req, err := http.NewRequest("PUT", requestURL, bytes.NewBuffer(body))
if err != nil {
return &http.Response{}, err
}
return s.HTTPClient.Do(req)
}
func (s Sonarr) post(query string, body []byte) (*http.Response, error) {
endpointURL, err := url.Parse(query)
if err != nil {
return &http.Response{}, err
}
client := http.Client{
Timeout: time.Duration(s.Timeout) * time.Second,
}
requestURL := appendEndpoint(s.baseURL.String(), endpointURL.String())
req, err := http.NewRequest("POST", requestURL, bytes.NewBuffer(body))
if err != nil {
return &http.Response{}, err
}
req.Header.Set("x-api-key", s.apiKey)
req.Header.Set("Content-Type", "application/json")
return client.Do(req)
}
func (s *Sonarr) del(endpoint string, params url.Values) (*http.Response, error) {
endpointURL, err := url.Parse(endpoint)
if err != nil {
return &http.Response{}, err
}
if params == nil {
params = endpointURL.Query()
}
params.Set("apikey", s.apiKey)
endpointURL.RawQuery = params.Encode()
requestURL := appendEndpoint(s.baseURL.String(), endpointURL.String())
req, err := http.NewRequest("DELETE", requestURL, nil)
if err != nil {
return &http.Response{}, err
}
return s.HTTPClient.Do(req)
}
// appendEndpoint checks for and applies a "/" to a url when necessary
func appendEndpoint(baseURL, endpoint string) string {
// /api/series && http://192.168.1.25:8989/
if strings.HasPrefix(endpoint, "/") && strings.HasSuffix(baseURL, "/") {
endpoint = endpoint[1:]
} else if !strings.HasPrefix(endpoint, "/") && !strings.HasSuffix(baseURL, "/") {
// api/series && http://192.168.1.25:8989
endpoint = "/" + endpoint
}
return baseURL + endpoint
}