filebot/website/data/shell/rsam.groovy

25 lines
824 B
Groovy
Raw Normal View History

// filebot -script "http://filebot.sourceforge.net/data/shell/rsam.groovy" <options> <folder>
2011-11-02 08:26:25 +00:00
// EXPERIMENTAL // HERE THERE BE DRAGONS
if (net.sourceforge.filebot.Settings.applicationRevisionNumber < 783) throw new Exception("Revision 783+ required")
def isMatch(a, b) { similarity(a, b) > 0.9 }
/*
* Rename anime, tv shows or movies (assuming each folder represents one item)
*/
args.eachMediaFolder { dir ->
2011-11-02 08:26:25 +00:00
def n = dir.name
def lang = Locale.ENGLISH
[ [db:anidb, query:{ anidb.search(n, lang).find{ isMatch(it, n) } }],
[db:thetvdb, query:{ thetvdb.search(n, lang).find{ isMatch(it, n) } }],
[db:themoviedb, query:{ themoviedb.searchMovie(n, lang).find{ isMatch(it, n) } }]
].find {
def match = it.query()
2011-11-02 08:26:25 +00:00
if (match) { rename(folder:dir, db:it.db.name, query:match.name) }
return match
}
}