-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonarr.js
301 lines (251 loc) · 7.87 KB
/
sonarr.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
'use strict';
/* I DIDN'T WRITE THIS FILE. HOWEVER CANNOT FIND THE ORIGINAL AUTHOR OR SOURCE */
const request = require('request');
/*
* Function to turn JSON object to URL params
*/
function jsonToQueryString(json) {
return '?' +
Object
.keys(json)
.map(function (key) {
if (json[key] !== null) {
return encodeURIComponent(key) + '=' +
encodeURIComponent(json[key]);
}
})
.join('&');
}
/*
* Check for standard errors in the response object
*/
function checkResponseForErrors(res) {
let { statusCode, body, headers } = res;
if (statusCode >= 400) {
return { error: true, body };
}
// API key is invalid
if ((body.error) && (body.error === 'Unauthorized')) {
return { error: true, body };
}
// response is not json
if (headers['content-type'] !== 'application/json; charset=utf-8') {
return { error: true, body: { error: 'JSON expected' } };
}
return { error: false, body };
}
class Sonarr {
constructor(options) {
// Gather constructor parameters
this.hostname = options.hostname;
this.port = options.port || 8989;
this.apiKey = options.apiKey;
this.urlBase = options.urlBase;
this.ssl = options.ssl || false;
this.username = options.username || null;
this.password = options.password || null;
this.auth = false;
// `http_auth` requested
if (this.username && this.password) {
this.auth = true;
}
// `hostname` in valid
if (!this.hostname) {
throw new TypeError('Hostname is empty');
}
// Sanitize `hostname`
this.hostname = this.hostname.replace(/^https?:\/\//, '');
// Validate `port`
if ((!this.port) || (typeof this.port !== 'number')) {
try {
this.port = parseInt(this.port);
} catch (e) {
throw new TypeError('Port is not a number');
}
}
// Valid characters in API key
if (this.apiKey.search(/[^a-z0-9]{32}/) !== -1) {
throw new TypeError('API Key is an invalid');
}
// URL Base exists && is valid
if ((this.urlBase) && (this.urlBase.charAt(0) !== '/')) {
this.urlBase = '/' + this.urlBase;
}
// Construct the URL
var serverUrl = 'http' + (this.ssl !== false ? 's' : '') + '://' + this.hostname + ':' + this.port;
// Add in the base URL if present
if (this.urlBase) {
serverUrl = serverUrl + this.urlBase;
}
// Completed API URL
this.serverApi = serverUrl + '/api/v3/';
}
/*
* sends request to Sonarr API
*/
_request(actions) {
function promiseRequest(options) {
return new Promise((resolve, reject) => {
request(options, (err, res) => {
if (err) {
reject(err);
} else {
let { error, body } = checkResponseForErrors(res);
if (error) {
reject(body);
} else {
resolve(body);
}
}
})
})
}
// Append the server URL, api, and relative url and - if GET params those too
let apiUrl = this.serverApi + actions.relativeUrl;
if ((actions.parameters) && (actions.method === 'GET')) {
apiUrl = apiUrl + jsonToQueryString(actions.parameters);
}
// Build the HTTP request headers
let headers = {
'X-API-KEY': this.apiKey
};
// Append the type
if (actions.method === 'GET') {
Object.assign(headers, {
'Accept': 'application/json'
});
} else {
Object.assign(headers, {
'Content-Type': 'application/json'
});
}
// Append auth to headers
if (this.auth) {
let buffer = new Buffer(this.username + ':' + this.password);
Object.assign(headers, {
'Authorization': 'Basic ' + buffer.toString('base64')
});
}
// Request options
let options = {
'url': apiUrl,
'headers': headers
};
// Usually we don't have valid ssl certs, so ignore it
if (this.ssl) {
Object.assign(options, {
'strictSSL': false
});
}
// Append the method parameter to the request
Object.assign(options, {
'method': actions.method
});
if (['POST', 'PUT', 'DELETE'].includes(actions.method)) {
Object.assign(options, {
'json': actions.parameters
});
} else {
Object.assign(options, {
'json': true
});
}
// Issue request-promise and return
return promiseRequest(options)
.then(response => {
return response;
})
.catch(e => {
throw new Error(e.message);
});
}
/*
* Retrieve from API via GET
*/
get(relativeUrl, parameters = {}) {
// no Relative url was passed
if (relativeUrl === undefined) {
throw new TypeError('Relative URL is not set');
}
// parameters isn't an object
if (typeof parameters !== 'object') {
throw new TypeError('Parameters must be type object');
}
var actions = {
'relativeUrl': relativeUrl,
'method': 'GET',
'parameters': parameters
};
return this._request(actions)
.then(function (data) {
return data;
});
}
/*
* Perform an action via POST
*/
post(relativeUrl, parameters = {}) {
// No Relative URL was passed
if (relativeUrl === undefined) {
throw new TypeError('Relative URL is not set');
}
// Paramet isn't an object
if (typeof parameters !== 'object') {
throw new TypeError('Parameters must be type object');
}
var actions = {
'relativeUrl': relativeUrl,
'method': 'POST',
'parameters': parameters
};
return this._request(actions)
.then(function (data) {
return data;
});
}
/*
* perform an action via PUT
*/
put(relativeUrl, parameters = {}) {
// no Relative url was passed
if (relativeUrl === undefined) {
throw new TypeError('Relative URL is not set');
}
// parameters isn't an object
if (typeof parameters !== 'object') {
throw new TypeError('Parameters must be type object');
}
var actions = {
'relativeUrl': relativeUrl,
'method': 'PUT',
'parameters': parameters
};
return this._request(actions)
.then(function (data) {
return data;
});
}
/*
* perform an action via PUT
*/
delete(relativeUrl, parameters = {}) {
// no Relative url was passed
if (relativeUrl === undefined) {
throw new TypeError('Relative URL is not set');
}
// parameters isn't an object
if (typeof parameters !== 'object') {
throw new TypeError('Parameters must be type object');
}
var actions = {
'relativeUrl': relativeUrl,
'method': 'DELETE',
'parameters': parameters
};
return this._request(actions)
.then(function (data) {
return data;
});
}
}
module.exports = Sonarr;