2012-07-28 21:17:29 +00:00
|
|
|
// filebot -script fn:artwork.tvdb /path/to/media/
|
2011-12-20 13:00:38 +00:00
|
|
|
|
|
|
|
/*
|
2011-12-28 14:15:39 +00:00
|
|
|
* Fetch series and season banners for all tv shows. Series name is auto-detected if possible or the folder name is used.
|
2011-12-20 13:00:38 +00:00
|
|
|
*/
|
|
|
|
|
2012-07-28 10:21:30 +00:00
|
|
|
// artwork/nfo helpers
|
2012-07-29 06:09:21 +00:00
|
|
|
include("lib/htpc")
|
2011-12-20 13:00:38 +00:00
|
|
|
|
|
|
|
|
2011-12-29 04:05:10 +00:00
|
|
|
args.eachMediaFolder { dir ->
|
2012-04-01 11:12:33 +00:00
|
|
|
// fetch only missing artwork by default
|
|
|
|
if (_args.conflict == "skip" && dir.hasFile{it =~ /tvshow.nfo$/} && dir.hasFile{it =~ /folder.jpg$/} && dir.hasFile{it =~ /banner.jpg$/}) {
|
|
|
|
println "Skipping $dir"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
def videos = dir.listFiles{ it.isVideo() }
|
2011-12-20 13:00:38 +00:00
|
|
|
|
2012-01-04 04:09:17 +00:00
|
|
|
def query = _args.query ?: detectSeriesName(videos, _args.locale)
|
2011-12-22 19:36:31 +00:00
|
|
|
def sxe = videos.findResult{ parseEpisodeNumber(it) }
|
2011-12-20 13:00:38 +00:00
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
if (query == null) {
|
2011-12-27 18:54:25 +00:00
|
|
|
query = dir.dir.hasFile{ it.name =~ /Season/ && it.isDirectory() } ? dir.dir.name : dir.name
|
2011-12-21 02:39:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 00:51:00 +00:00
|
|
|
println "$dir => Search by $query"
|
2012-01-04 04:09:17 +00:00
|
|
|
def options = TheTVDB.search(query, _args.locale)
|
2011-12-20 13:00:38 +00:00
|
|
|
if (options.isEmpty()) {
|
2011-12-22 19:36:31 +00:00
|
|
|
println "TV Series not found: $query"
|
2012-04-01 11:12:33 +00:00
|
|
|
return
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|
|
|
|
|
2012-01-04 04:09:17 +00:00
|
|
|
// sort by relevance
|
|
|
|
options = options.sortBySimilarity(query, { it.name })
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
// auto-select series
|
2012-01-04 04:09:17 +00:00
|
|
|
def series = options[0]
|
|
|
|
|
|
|
|
// maybe require user input
|
|
|
|
if (options.size() != 1 && !_args.nonStrict && !java.awt.GraphicsEnvironment.headless) {
|
|
|
|
series = javax.swing.JOptionPane.showInputDialog(null, "Please select TV Show:", dir.path, 3, null, options.toArray(), series);
|
2012-04-01 11:12:33 +00:00
|
|
|
if (series == null) return
|
2012-01-04 04:09:17 +00:00
|
|
|
}
|
2011-12-22 19:36:31 +00:00
|
|
|
|
|
|
|
// auto-detect structure
|
2011-12-27 18:54:25 +00:00
|
|
|
def seriesDir = [dir.dir, dir].sortBySimilarity(series.name, { it.name })[0]
|
2011-12-22 19:36:31 +00:00
|
|
|
def season = sxe && sxe.season > 0 ? sxe.season : 1
|
|
|
|
|
2011-12-29 00:51:00 +00:00
|
|
|
println "$dir => $series"
|
2012-07-28 10:21:30 +00:00
|
|
|
fetchSeriesArtworkAndNfo(seriesDir, dir, series, season)
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|