forked from jrudio/go-sonarr-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.go
353 lines (242 loc) · 6.52 KB
/
commands.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
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
package main
import (
"fmt"
"os"
"path/filepath"
"strconv"
"strings"
sonarr "github.com/jrudio/go-sonarr-client"
homedir "github.com/mitchellh/go-homedir"
"github.com/urfave/cli"
)
func startDB() (store, error) {
// create persistent key store in user home directory
storeDirectory, err := homedir.Dir()
if err != nil {
return store{}, err
}
storeDirectory = filepath.Join(storeDirectory, homeFolderName)
return initDataStore(storeDirectory)
}
func unlock(c *cli.Context) error {
storeDirectory, err := homedir.Dir()
if err != nil {
return cli.NewExitError(err, 1)
}
storeDirectory = filepath.Join(storeDirectory, homeFolderName)
lockFilePath := filepath.Join(storeDirectory, "LOCK")
if err := os.Remove(lockFilePath); err != nil {
return cli.NewExitError(fmt.Sprintf("failed to remove file: %v", err), 1)
}
fmt.Println("removed LOCK file")
return nil
}
func save(c *cli.Context) error {
db, err := startDB()
if err != nil {
return cli.NewExitError(err, 1)
}
defer db.Close()
// prompt to save url to sonarr application
fmt.Println("enter the url that points to sonarr...")
var sonarrURL string
fmt.Scanln(&sonarrURL)
if sonarrURL == "" {
return cli.NewExitError("url is required", 1)
}
// prompt to save api key
fmt.Println("enter your api key...")
var key string
fmt.Scanln(&key)
if key == "" {
return cli.NewExitError("api key is required", 1)
}
// confirm
fmt.Printf("URL: %s\nAPI Key: %s\n", sonarrURL, key)
fmt.Println("Are you sure you want to save?")
// show success/error
if err := db.saveSonarrURL(sonarrURL); err != nil {
return cli.NewExitError(fmt.Sprintf("save url failed: %v", err), 1)
}
if err := db.saveSonarrKey(key); err != nil {
// revert url save
db.saveSonarrURL("")
return cli.NewExitError(fmt.Sprintf("save api key failed: %v", err), 1)
}
return nil
}
func getCredentials(c *cli.Context) error {
db, err := startDB()
if err != nil {
return cli.NewExitError(err, 1)
}
defer db.Close()
radarrURL, err := db.getSonarrURL()
if err != nil {
return cli.NewExitError(err, 1)
}
key, err := db.getSonarrKey()
if err != nil {
return cli.NewExitError(err, 1)
}
fmt.Printf("URL: %s\nAPI Key: %s\n", radarrURL, key)
return nil
}
func search(c *cli.Context) error {
title := strings.Join(c.Args(), " ")
if title == "" {
return cli.NewExitError("a title is required", 1)
}
db, err := startDB()
if err != nil {
return cli.NewExitError(err, 1)
}
defer db.Close()
sonarrKey, err := db.getSonarrKey()
if err != nil {
return cli.NewExitError(err, 1)
}
sonarrURL, err := db.getSonarrURL()
if err != nil {
return cli.NewExitError(err, 1)
}
client, err := sonarr.New(sonarrURL, sonarrKey)
if err != nil {
return cli.NewExitError(err, 1)
}
results, err := client.Search(title)
for _, series := range results {
fmt.Printf("%s (%d) - %d\n", series.Title, series.Year, series.TvdbID)
}
return nil
}
func showSeriesInfo(c *cli.Context) error {
tmdbIDstr := c.Args().First()
if tmdbIDstr == "" {
return cli.NewExitError("a tvdb id is required", 1)
}
// fire up store
db, err := startDB()
if err != nil {
return cli.NewExitError(err, 1)
}
defer db.Close()
// grab credentials
sonarrKey, err := db.getSonarrKey()
if err != nil {
return cli.NewExitError(err, 1)
}
sonarrURL, err := db.getSonarrURL()
if err != nil {
return cli.NewExitError(err, 1)
}
// create sonarr client to interface with sonarr
client, err := sonarr.New(sonarrURL, sonarrKey)
if err != nil {
return cli.NewExitError(err, 1)
}
tvdbID, err := strconv.Atoi(tmdbIDstr)
series, err := client.GetSeriesFromTVDB(tvdbID)
if err != nil {
return cli.NewExitError(err, 1)
}
// title (year) - tmdbid
// summary
const output = "%s (%d) - %d\n\t%s\n"
fmt.Printf(output, series.Title, series.Year, series.TvdbID, series.Overview)
return nil
}
func addSeries(c *cli.Context) error {
tvdbIDstr := c.Args().First()
if tvdbIDstr == "" {
return cli.NewExitError("a tvdb id is required", 1)
}
// fire up store
db, err := startDB()
if err != nil {
return cli.NewExitError(err, 1)
}
defer db.Close()
// grab credentials
sonarrKey, err := db.getSonarrKey()
if err != nil {
return cli.NewExitError(err, 1)
}
sonarrURL, err := db.getSonarrURL()
if err != nil {
return cli.NewExitError(err, 1)
}
// create sonarr client to interface with sonarr
client, err := sonarr.New(sonarrURL, sonarrKey)
if err != nil {
return cli.NewExitError(err, 1)
}
tmdbIDStr, err := strconv.Atoi(tvdbIDstr)
if err != nil {
return cli.NewExitError(err, 1)
}
series, err := client.GetSeriesFromTVDB(tmdbIDStr)
if err != nil {
return cli.NewExitError(err, 1)
}
// show available profiles
profiles, err := client.GetProfiles()
if err != nil {
return cli.NewExitError(err, 1)
}
profileCount := len(profiles)
if profileCount == 0 {
fmt.Println("aborting...")
return cli.NewExitError("no profiles found", 1)
}
fmt.Print("available quality profiles:\n\n")
for i, profile := range profiles {
fmt.Printf("[%d] - %s\n", i, profile.Name)
}
fmt.Print("\nplease choose a profile: ")
// ask user for requested quality
var requestedQualityIndex int
fmt.Scanln(&requestedQualityIndex)
// bound-check user input
if requestedQualityIndex < 0 || requestedQualityIndex > profileCount {
return cli.NewExitError("invalid selection", 1)
}
profile := profiles[requestedQualityIndex].ID
// display available root folders
folders, err := client.GetRootFolders()
if err != nil {
return cli.NewExitError(err, 1)
}
if len(folders) == 0 {
fmt.Println("aborting...")
return cli.NewExitError("failed to find root folders", 1)
}
fmt.Println("\navailable root folders:")
for i, folder := range folders {
fmt.Printf("[%d] - %s\n", i, folder.Path)
}
fmt.Print("\nchoose a folder to download this series to: ")
// ask user where we should download this series to
var rootFolderPathIndex int
fmt.Scanln(&rootFolderPathIndex)
fmt.Println()
rootFolder := folders[rootFolderPathIndex].Path
// set movie path and profile quality to user preference
series.AddOptions.SearchForMissingEpisodes = true
series.QualityProfileID = profile
series.RootFolderPath = rootFolder
series.Monitored = true
if errors := client.AddSeries(*series); errors != nil {
output := ""
for _, err := range errors {
output += err.Error() + "\n"
}
fmt.Printf(output)
return cli.NewExitError(fmt.Errorf(""), 1)
}
fmt.Printf("added %s (%d) successfully\n", series.Title, series.Year)
return nil
}
func deleteMovie(c *cli.Context) error {
return nil
}