forked from filebot/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amc.groovy
executable file
·648 lines (530 loc) · 22.1 KB
/
amc.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
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
#!/usr/bin/env filebot -script
// log input parameters
log.fine("Run script [$_args.script] at [$now]")
_def.each{ n, v -> log.finest('Parameter: ' + [n, n =~ /plex|kodi|pushover|pushbullet|discord|mail|myepisodes/ ? '*****' : v].join(' = ')) }
args.withIndex().each{ f, i -> if (f.exists()) { log.finest "Argument[$i]: $f" } else { log.warning "Argument[$i]: File does not exist: $f" } }
// initialize variables
failOnError = _args.conflict.equalsIgnoreCase('fail')
testRun = license == null || _args.action.equalsIgnoreCase('test')
// --output folder must be a valid folder
outputFolder = tryLogCatch{ any{ _args.output }{ '.' }.toFile().getCanonicalFile() }
// enable/disable features as specified via --def parameters
unsorted = tryQuietly{ unsorted.toBoolean() }
music = tryQuietly{ music.toBoolean() }
subtitles = tryQuietly{ subtitles.split(/\W+/) as List }
artwork = tryQuietly{ artwork.toBoolean() && !testRun }
extras = tryQuietly{ extras.toBoolean() }
clean = tryQuietly{ clean.toBoolean() }
exec = tryQuietly{ exec.toString() }
// array of kodi/plex/emby hosts
kodi = tryQuietly{ any{kodi}{xbmc}.split(/[ ,;|]+/)*.split(/:(?=\d+$)/).collect{ it.length >= 2 ? [host: it[0], port: it[1] as int] : [host: it[0]] } }
plex = tryQuietly{ plex.split(/[ ,;|]+/)*.split(/:/).collect{ it.length >= 2 ? [host: it[0], token: it[1]] : [host: it[0]] } }
emby = tryQuietly{ emby.split(/[ ,;|]+/)*.split(/:/).collect{ it.length >= 2 ? [host: it[0], token: it[1]] : [host: it[0]] } }
// extra options, myepisodes updates and email notifications
extractFolder = tryQuietly{ extractFolder as File }
skipExtract = tryQuietly{ skipExtract.toBoolean() }
deleteAfterExtract = tryQuietly{ deleteAfterExtract.toBoolean() }
excludeList = tryQuietly{ def f = excludeList as File; f.isAbsolute() ? f : outputFolder.resolve(f.path) }
myepisodes = tryQuietly{ myepisodes.split(':', 2) as List }
gmail = tryQuietly{ gmail.split(':', 2) as List }
mail = tryQuietly{ mail.split(':', 5) as List }
pushover = tryQuietly{ pushover.split(':', 2) as List }
pushbullet = tryQuietly{ pushbullet.toString() }
discord = tryQuietly{ discord.toString() }
storeReport = tryQuietly{ def f = storeReport as File; f.isAbsolute() ? f : outputFolder.resolve(f.path) }
reportError = tryQuietly{ reportError.toBoolean() }
// user-defined filters
label = any{ ut_label }{ null }
ignore = any{ ignore }{ null }
minFileSize = any{ minFileSize.toLong() }{ 50 * 1000L * 1000L }
minLengthMS = any{ minLengthMS.toLong() }{ 10 * 60 * 1000L }
// database preferences
seriesDB = any{ seriesDB }{ _args.datasource.identifier }{ 'TheTVDB' }
animeDB = any{ animeDB }{ _args.datasource.identifier }{ 'AniDB' }
movieDB = any{ movieDB }{ _args.datasource.identifier }{ 'TheMovieDB' }
musicDB = any{ musicDB }{ _args.datasource.identifier }{ 'ID3' }
// series / anime / movie format expressions
seriesFormat = any{ seriesFormat }{ _args.format }{ '{plex}' }
animeFormat = any{ animeFormat }{ _args.format }{ '{plex}' }
movieFormat = any{ movieFormat }{ _args.format }{ '{plex}' }
musicFormat = any{ musicFormat }{ _args.format }{ '{plex}' }
unsortedFormat = any{ unsortedFormat }{ 'Unsorted/{file.structurePathTail}' }
// include artwork/nfo, pushover/pushbullet and ant utilities as required
if (artwork || kodi || plex || emby) { include('lib/htpc') }
if (pushover || pushbullet || gmail || mail) { include('lib/web') }
// check input parameters
def ut = _def.findAll{ k, v -> k.startsWith('ut_') }.collectEntries{ k, v ->
if (v ==~ /[%$]\p{Alnum}|\p{Punct}+/) {
log.warning "Bad $k value: $v"
v = null
}
return [k.substring(3), v ? v : null]
}
// sanity checks
if (outputFolder == null || !outputFolder.isDirectory()) {
die "Illegal usage: output folder must exist and must be a directory: $outputFolder"
}
if (ut.dir) {
if (ut.state_allow && !(ut.state ==~ ut.state_allow)) {
die "Illegal state: $ut.state != $ut.state_allow", ExitCode.NOOP
}
if (args.size() > 0) {
die "Illegal usage: use either script parameters $ut or file arguments $args but not both"
}
if (ut.dir == '/') {
die "Illegal usage: No! Are you insane? You can't just pass in the entire filesystem. Think long and hard about what you just tried to do."
}
if (ut.dir.toFile() in outputFolder.listPath()) {
die "Illegal usage: output folder [$outputFolder] must be separate from input folder $ut"
}
} else if (args.size() == 0) {
die "Illegal usage: no input"
} else if (args.any{ f -> f in outputFolder.listPath() }) {
die "Illegal usage: output folder [$outputFolder] must be separate from input arguments $args"
} else if (args.any{ f -> f in File.listRoots() }) {
die "Illegal usage: input $args must not include a filesystem root"
}
// collect input fileset as specified by the given --def parameters
roots = args
if (args.size() == 0) {
// assume we're called with utorrent parameters (account for older and newer versions of uTorrents)
if (ut.kind == 'single' || (ut.kind != 'multi' && ut.dir && ut.file)) {
roots = [new File(ut.dir, ut.file).getCanonicalFile()] // single-file torrent
} else {
roots = [new File(ut.dir).getCanonicalFile()] // multi-file torrent
}
}
// helper function to work with the structure relative path rather than the whole absolute path
def relativeInputPath(f) {
def r = roots.find{ r -> f.path.startsWith(r.path) && r.isDirectory() && f.isFile() }
if (r != null) {
return f.path.substring(r.path.length() + 1)
}
return f.name
}
// define and load exclude list (e.g. to make sure files are only processed once)
excludePathSet = new FileSet()
if (excludeList) {
if (excludeList.exists()) {
try {
excludePathSet.load(excludeList)
} catch(Exception e) {
die "Failed to load excludeList: $e"
}
log.fine "Use excludes: $excludeList (${excludePathSet.size()})"
} else {
log.fine "Use excludes: $excludeList"
if ((!excludeList.parentFile.isDirectory() && !excludeList.parentFile.mkdirs()) || (!excludeList.isFile() && !excludeList.createNewFile())) {
die "Failed to create excludeList: $excludeList"
}
}
}
extractedArchives = []
temporaryFiles = []
def extract(f) {
// avoid cyclical archives that extract to the same output folder over and over
if (f in extractedArchives) {
return []
}
def folder = new File(extractFolder ?: f.dir, f.nameWithoutExtension)
def files = extract(file: f, output: folder.resolve(f.dir.name), conflict: 'auto', filter: { it.isArchive() || it.isVideo() || it.isSubtitle() || (music && it.isAudio()) }, forceExtractAll: true) ?: []
extractedArchives += f
temporaryFiles += folder
temporaryFiles += files
// resolve newly extracted files and deal with disk folders and hidden files correctly
return [folder]
}
def acceptFile(f) {
if (f.isHidden()) {
log.finest "Ignore hidden: $f"
return false
}
if (f.isDirectory() && f.name ==~ /[.@].+|bin|initrd|opt|sbin|var|dev|lib|proc|sys|var.defaults|etc|lost.found|root|tmp|etc.defaults|mnt|run|usr|System.Volume.Information/) {
log.finest "Ignore system path: $f"
return false
}
if (f.isVideo() && f.name =~ /(?<=\b|_)(?i:Sample|Trailer|Extras|Extra.Episodes|Bonus.Features|Music.Video|Scrapbook|Behind.the.Scenes|Extended.Scenes|Deleted.Scenes|Mini.Series|s\d{2}c\d{2}|S\d+EXTRA|\d+xEXTRA|NCED|NCOP|(OP|ED)\d+|Formula.1.\d{4})(?=\b|_)/) {
log.finest "Ignore video extra: $f"
return false
}
// ignore if the user-defined ignore pattern matches
if (f.path.findMatch(ignore)) {
log.finest "Ignore pattern: $f"
return false
}
// ignore archives that are on the exclude path list
if (excludePathSet.contains(f)) {
return false
}
// accept folders right away and skip file sanity checks
if (f.isDirectory()) {
return true
}
// check if file exists
if (!f.isFile()) {
log.warning "File does not exist: $f"
return false
}
// accept archives if the extract feature is enabled
if (f.isArchive() || f.hasExtension('001')) {
return !skipExtract
}
// ignore iso images that do not contain a video disk structure
if (f.hasExtension('iso') && !f.isDisk()) {
log.fine "Ignore disk image: $f"
return false
}
// ignore small video files
if (minFileSize > 0 && f.isVideo() && f.length() < minFileSize) {
log.fine "Skip small video file: $f ($f.displaySize)"
return false
}
// ignore short videos
if (minLengthMS > 0 && f.isVideo() && any{ f.mediaCharacteristics.duration.toMillis() < minLengthMS }{ false }) {
log.fine "Skip short video: $f"
return false
}
// ignore subtitle files without matching video file in the same or parent folder (in strict mode only)
if (_args.strict && f.isSubtitle() && ![f, f.dir].findResults{ it.dir }.any{ it.listFiles{ it.isVideo() && f.isDerived(it) }}) {
log.fine "Ignore orphaned subtitles: $f"
return false
}
// process only media files (accept audio files only if music mode is enabled)
return f.isVideo() || f.isSubtitle() || (music && f.isAudio())
}
// specify how to resolve input folders, e.g. grab files from all folders except disk folders and already processed folders (i.e. folders with movie/tvshow nfo files)
def resolveInput(f) {
// resolve folder recursively, except disk folders
if (f.isDirectory()) {
if (f.isDisk()) {
return f
}
return f.listFiles{ acceptFile(it) }.collect{ resolveInput(it) }
}
if (f.isArchive() || f.hasExtension('001')) {
return extract(f).findAll{ acceptFile(it) }.collect{ resolveInput(it) }
}
return f
}
// flatten nested file structure
def input = roots.findAll{ acceptFile(it) }.flatten{ resolveInput(it) }.toSorted()
// update exclude list with all input that will be processed during this run
if (excludeList && !testRun) {
excludePathSet.append(excludeList, extractedArchives, input)
}
// print exclude and input sets for logging
input.each{ f -> log.fine "Input: $f" }
// print xattr metadata
input.each{ f -> if (f.metadata) log.finest "xattr: [$f.name] => [$f.metadata]" }
// early abort if there is nothing to do
if (input.size() == 0) {
die "No files selected for processing", ExitCode.NOOP
}
// force Movie / TV Series / Anime behaviour
def forceGroup() {
switch(label) {
case ~/.*(?i:Movie|Film|Concert|UFC).*/:
return AutoDetection.Group.Movie
case ~ /.*(?i:TV|Show|Series|Documentary).*/:
return AutoDetection.Group.Series
case ~ /.*(?i:Anime).*/:
return AutoDetection.Group.Anime
case ~/.*(?i:Audio|Music|Music.Video).*/:
return AutoDetection.Group.Music
case ~/.*(?i:games|book|other|ignore).*/:
return AutoDetection.Group.None
default:
return null
}
}
def group(files) {
def singleGroupKey = forceGroup()
if (singleGroupKey) {
return [(singleGroupKey): files]
}
return new AutoDetection(files, false, _args.language.locale).group()
}
// group episodes / movies
def groups = group(input)
// log movie/series/anime detection results
groups.each{ group, files -> log.finest "Group: $group => ${files*.name}" }
// keep track of files that have been processed successfully
def destinationFiles = []
// keep track of unsorted files or files that could not be processed for some reason
def unsortedFiles = []
// process each batch
groups.each{ group, files ->
// fetch subtitles (but not for anime)
if ((group.isMovie() || group.isSeries()) && subtitles != null && files.findAll{ it.isVideo() }.size() > 0) {
subtitles.each{ languageCode ->
def subtitleFiles = getMissingSubtitles(file: files, lang: languageCode, strict: true, output: 'srt', encoding: 'UTF-8', format: 'MATCH_VIDEO_ADD_LANGUAGE_TAG') ?: []
files += subtitleFiles
input += subtitleFiles // make sure subtitles are added to the exclude list and other post processing operations
temporaryFiles += subtitleFiles // if downloaded for temporarily extraced files delete later
}
}
// EPISODE MODE
if ((group.isSeries() || group.isAnime()) && !group.isMovie()) {
// choose series / anime
def dest = group.isSeries() ? rename(file: files, format: seriesFormat, db: seriesDB) : rename(file: files, format: animeFormat, order: 'Absolute', db: animeDB)
if (dest) {
destinationFiles += dest
if (artwork) {
dest.mapByFolder().each{ dir, fs ->
def hasSeasonFolder = any{ dir =~ /Specials|Season.\d+/ || dir.parentFile.structurePathTail.listPath().size() > 0 }{ false } // MAY NOT WORK FOR CERTAIN FORMATS
fs.findResults{ it.metadata }.findAll{ it.seriesInfo.database == 'TheTVDB' }.collect{ [name: it.seriesName, season: it.special ? 0 : it.season, id: it.seriesInfo.id] }.unique().each{ s ->
tryLogCatch {
log.fine "Fetching series artwork for [$s.name / Season $s.season] to [$dir]"
fetchSeriesArtworkAndNfo(hasSeasonFolder ? dir.parentFile : dir, dir, s.id, s.season, false, _args.language.locale)
}
}
}
}
} else if (failOnError && dest == null) {
die "Failed to process group: $group"
} else {
unsortedFiles += files
}
}
// MOVIE MODE
else if (group.isMovie() && !group.isSeries() && !group.isAnime()) {
def dest = rename(file: files, format: movieFormat, db: movieDB)
if (dest) {
destinationFiles += dest
if (artwork) {
dest.mapByFolder().each{ dir, fs ->
def movieFile = fs.findAll{ it.isVideo() || it.isDisk() }.toSorted{ it.length() }.reverse().findResult{ it }
if (movieFile) tryLogCatch {
def movieInfo = movieFile.metadata
log.fine "Fetching movie artwork for [$movieInfo] to [$dir]"
if (movieInfo) {
fetchMovieArtworkAndNfo(dir, movieInfo, movieFile, extras, false, _args.language.locale)
}
}
}
}
} else if (failOnError && dest == null) {
die "Failed to process group: $group"
} else {
unsortedFiles += files
}
}
// MUSIC MODE
else if (group.isMusic()) {
def dest = rename(file: files, format: musicFormat, db: musicDB)
if (dest) {
destinationFiles += dest
} else if (failOnError && dest == null) {
die "Failed to process group: $group"
} else {
unsortedFiles += files
}
}
// UNSORTED
else {
unsortedFiles += files
}
}
// ---------- POST PROCESSING ---------- //
// deal with remaining files that cannot be sorted automatically
if (unsorted) {
if (unsortedFiles.size() > 0) {
log.fine "Processing ${unsortedFiles.size()} unsorted files"
def dest = rename(map: unsortedFiles.collectEntries{ original ->
def destination = getMediaInfo(original, unsortedFormat) as File
// sanity check user-defined unsorted format
if (destination == null) {
die "Illegal usage: unsorted format must yield valid file path"
}
// resolve relative paths
if (!destination.isAbsolute()) {
destination = outputFolder.resolve(destination.path)
}
return [original, destination]
})
if (dest != null) {
destinationFiles += dest
}
}
}
// run program on newly processed files
if (exec) {
destinationFiles.collect{ getMediaInfo(it, exec) }.unique().each{ command ->
log.fine "Execute: $command"
execute(command)
}
}
// ---------- REPORTING ---------- //
if (getRenameLog().size() > 0) {
// messages used for kodi / plex / emby pushover notifications
def getNotificationTitle = {
def count = getRenameLog().count{ k, v -> !v.isSubtitle() }
return "FileBot finished processing $count files"
}.memoize()
def getNotificationMessage = { prefix = '• ', postfix = '\n' ->
return ut.title ?: (input.findAll{ !it.isSubtitle() } ?: input).collect{ relativeInputPath(it) as File }.root.nameWithoutExtension.unique().collect{ prefix + it }.join(postfix).trim()
}.memoize()
// make Kodi scan for new content and display notification message
if (kodi) tryLogCatch {
kodi.each{ instance ->
log.fine "Notify Kodi: $instance"
showNotification(instance.host, instance.port, getNotificationTitle(), getNotificationMessage(), 'https://app.filebot.net/icon.png')
scanVideoLibrary(instance.host, instance.port)
}
}
// make Plex scan for new content
if (plex) tryLogCatch {
plex.each{ instance ->
log.fine "Notify Plex: $instance"
refreshPlexLibrary(instance.host, null, instance.token)
}
}
// make Emby scan for new content
if (emby) tryLogCatch {
emby.each{ instance ->
log.fine "Notify Emby: $instance"
refreshEmbyLibrary(instance.host, null, instance.token)
}
}
// mark episodes as 'acquired'
if (myepisodes) tryLogCatch {
log.fine 'Update MyEpisodes'
executeScript('update-mes', [login:myepisodes.join(':'), addshows:true], getRenameLog().values())
}
// pushover only supports plain text messages
if (pushover) tryLogCatch {
log.fine 'Sending Pushover notification'
Pushover(pushover[0], pushover[1] ?: 'wcckDz3oygHSU2SdIptvnHxJ92SQKK').send(getNotificationTitle(), getNotificationMessage())
}
// messages used for email / pushbullet reports
def getReportSubject = { getNotificationMessage('', '; ') }
def getReportTitle = { '[FileBot] ' + getReportSubject() }
def getReportMessage = {
def renameLog = getRenameLog()
'''<!DOCTYPE html>\n''' + XML {
html {
head {
meta(charset:'UTF-8')
style('''
p{font-family:Arial,Helvetica,sans-serif}
p b{color:#07a}
hr{border-style:dashed;border-width:1px 0 0 0;border-color:lightgray}
small{color:#d3d3d3;font-size:xx-small;font-weight:normal;font-family:Arial,Helvetica,sans-serif}
table a:link{color:#666;font-weight:bold;text-decoration:none}
table a:visited{color:#999;font-weight:bold;text-decoration:none}
table a:active,table a:hover{color:#bd5a35;text-decoration:underline}
table{font-family:Arial,Helvetica,sans-serif;color:#666;background:#eaebec;margin:15px;border:#ccc 1px solid;border-radius:3px;box-shadow:0 1px 2px #d1d1d1}
table th{padding:15px;border-top:1px solid #fafafa;border-bottom:1px solid #e0e0e0;background:#ededed}
table th{text-align:center;padding-left:20px}
table tr:first-child th:first-child{border-top-left-radius:3px}
table tr:first-child th:last-child{border-top-right-radius:3px}
table tr{text-align:left;padding-left:20px}
table td:first-child{text-align:left;padding-left:20px;border-left:0}
table td{padding:15px;border-top:1px solid #fff;border-bottom:1px solid #e0e0e0;border-left:1px solid #e0e0e0;background:#fafafa;white-space:nowrap}
table tr.even td{background:#f6f6f6}
table tr:last-child td{border-bottom:0}
table tr:last-child td:first-child{border-bottom-left-radius:3px}
table tr:last-child td:last-child{border-bottom-right-radius:3px}
table tr:hover td{background:#f2f2f2}
''')
title(getReportTitle())
}
body {
p {
mkp.yield("FileBot finished processing ")
b(getReportSubject())
mkp.yield(" (${renameLog.size()} files).")
}
hr(); table {
tr { th('Original Name'); th('New Name'); th('New Location') }
renameLog.each{ from, to ->
tr { [from.name, to.name, to.parent].each{ cell -> td(cell) } }
}
}
hr(); small("// Generated by ${Settings.applicationIdentifier} on ${InetAddress.localHost.hostName} at ${now}")
}
}
}
}
// store processing report
if (storeReport) {
def reportName = [now.format(/[yyyy-MM-dd HH mm]/), getReportSubject().take(50)].join(' ').validateFileName().space('_')
def reportFile = storeReport.resolve(reportName + '.html')
log.fine "Saving HTML report to [$reportFile]"
getReportMessage().saveAs(reportFile)
}
// send pushbullet report
if (pushbullet) tryLogCatch {
log.fine 'Sending PushBullet report'
PushBullet(pushbullet).sendFile(getNotificationTitle() + '.html', getReportMessage(), 'text/html', getNotificationMessage(), any{ mailto }{ null })
}
// send gmail report
if (gmail) tryLogCatch {
log.fine 'Sending Gmail report'
def account = gmail[0] =~ /@/ ? gmail[0] : gmail[0] + '@gmail.com'
Gmail(account, gmail[1]).sendHtml(account, any{ mailto }{ account }, getReportTitle(), getReportMessage())
}
// send email report
if (mail) tryLogCatch {
log.fine 'Sending Email report'
def account = mail[2]
Email(mail[0], mail[1], mail[3], mail[4]).sendHtml(account, any{ mailto }{ account }, getReportTitle(), getReportMessage())
}
// use custom discord embeds since attachments do not play well with smart phones (i.e. Content-Disposition: attachment)
if (discord) tryLogCatch {
log.fine 'Calling Discord webhook'
def json = [
content: "FileBot finished processing **${getReportSubject()}** (${renameLog.size()} files).",
embeds: renameLog.collect{ from, to -> [to.parentFile, from.name, to.name] }.groupBy{ it[0] }.collect{ group, names ->
[
"title": group.getStructurePathTail() as String,
"fields": names.collect{ parent, from, to -> ["name": from, "value": to, inline: true] },
"color": new Random().nextInt(0xFFFFFF)
]
} + ["footer": [text: "Generated by ${Settings.applicationIdentifier} on ${InetAddress.localHost.hostName} at ${now}", icon_url: 'https://app.filebot.net/avatar.png']]
]
new URL(discord).post(JsonOutput.toJson(json).getBytes('UTF-8'), 'application/json', ['Content-Encoding':'gzip'])
}
}
// clean up temporary files that may be left behind after extraction
if (deleteAfterExtract) {
extractedArchives.each{ a ->
log.finest "Delete archive $a"
a.delete()
a.dir.listFiles().toList().findAll{ v -> v.name.startsWith(a.nameWithoutExtension) && v.extension ==~ /r\d+/ }.each{ v ->
log.finest "Delete archive volume $v"
v.delete()
}
}
}
// abort and skip clean-up logic if we didn't process any files
if (destinationFiles.size() == 0) {
die "Finished without processing any files"
}
// clean empty folders, clutter files, etc after move
if (clean) {
if (_args.action ==~ /(?i:COPY|HARDLINK|DUPLICATE)/ && temporaryFiles.size() > 0) {
log.fine 'Clean temporary extracted files'
// delete extracted files
temporaryFiles.findAll{ it.isFile() }.toSorted().each{
log.finest "Delete $it"
it.delete()
}
// delete remaining empty folders
temporaryFiles.findAll{ it.isDirectory() }.toSorted().reverse().each{
log.finest "Delete $it"
if (it.getFiles().size() == 0) {
it.deleteDir()
}
}
}
// deleting remaining files only makes sense after moving files
if (_args.action ==~ /(?i:MOVE)/) {
def cleanerInput = args.size() > 0 ? args : ut.kind == 'multi' && ut.dir ? [ut.dir as File] : []
cleanerInput = cleanerInput.findAll{ f -> f.exists() }
if (cleanerInput.size() > 0) {
log.fine 'Clean clutter files and empty folders'
executeScript('cleaner', args.size() == 0 ? [root:true, ignore: ignore] : [root:false, ignore: ignore], cleanerInput)
}
}
}