2012-07-28 21:17:29 +00:00
|
|
|
// filebot -script fn:artwork.tvdb /path/to/media/
|
2013-04-25 19:23:22 +00:00
|
|
|
def override = _args.conflict == 'override'
|
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
|
2013-02-06 15:12:19 +00:00
|
|
|
include('lib/htpc')
|
2011-12-20 13:00:38 +00:00
|
|
|
|
|
|
|
|
2012-12-28 16:55:44 +00:00
|
|
|
args.eachMediaFolder{ dir ->
|
2012-04-01 11:12:33 +00:00
|
|
|
// fetch only missing artwork by default
|
2013-04-25 19:23:22 +00:00
|
|
|
if (!override && dir.hasFile{it.name == 'banner.jpg'}) {
|
2012-04-01 11:12:33 +00:00
|
|
|
println "Skipping $dir"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
def videos = dir.listFiles{ it.isVideo() }
|
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) {
|
2013-02-06 15:12:19 +00:00
|
|
|
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"
|
2013-04-25 19:23:22 +00:00
|
|
|
fetchSeriesArtworkAndNfo(seriesDir, dir, series, season, override)
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|