forked from filebot/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
artwork.tvdb.groovy
53 lines (40 loc) · 1.27 KB
/
artwork.tvdb.groovy
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
#!/usr/bin/env filebot -script
include('lib/htpc')
args.eachMediaFolder{ dir ->
// fetch only missing artwork by default
if (dir.hasFile{it.name == 'banner.jpg'}) {
log.finest "Skipping $dir"
return
}
def videos = dir.listFiles{ it.isVideo() }
def query = _args.query ?: detectSeriesName(videos)
def sxe = videos.findResult{ parseEpisodeNumber(it) }
def locale = any{ _args.language.locale }{ Locale.ENGLISH }
if (query == null) {
query = dir.dir.hasFile{ it.name =~ /Season/ && it.isDirectory() } ? dir.dir.name : dir.name
}
log.finest "$dir => Search by $query"
def options = TheTVDB.search(query, locale)
if (options.isEmpty()) {
log.warning "TV Series not found: $query"
return
}
// sort by relevance
options = options.sortBySimilarity(query, { it.name })
// auto-select series
def series = options[0]
// maybe require user input
if (options.size() > 1 && _args.strict) {
series = showInputDialog(options, query, 'Select TV Show:')
}
if (series == null) {
return null
}
// auto-detect structure
def seriesDir = [dir.dir, dir].sortBySimilarity(series.name, { it.name })[0]
def season = sxe && sxe.season > 0 ? sxe.season : 1
log.fine "$dir => $series"
tryLogCatch {
fetchSeriesArtworkAndNfo(seriesDir, dir, series.id, season, false, locale)
}
}