« get me outta code hell

gen-thumbs.js « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/gen-thumbs.js
blob: cecedc827bda5616295ae2aede606417b716a214 (plain)
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
#!/usr/bin/env node

// Ok, so the d8te is 3 March 2021, and the music wiki was initially released
// on 15 November 2019. That is 474 days or 11376 hours. In my opinion, and
// pro8a8ly the opinions of at least one other person, that is WAY TOO LONG
// to go without media thum8nails!!!! So that's what this file is here to do.
//
// This program takes a path to the media folder (via --media or the environ.
// varia8le HSMUSIC_MEDIA), traverses su8directories to locate image files,
// and gener8tes lower-resolution/file-size versions of all that are new or
// have 8een modified since the last run. We use a JSON-format cache of MD5s
// for each file to perform this comparision; we gener8te files (using ffmpeg)
// in "medium" and "small" sizes adjacent to the existing PNG for easy and
// versatile access in site gener8tion code.
//
// So for example, on the very first run, you might have a media folder which
// looks something like this:
//
//   media/
//     album-art/
//       one-year-older/
//         cover.jpg
//         firefly-cloud.jpg
//         october.jpg
//         ...
//     flash-art/
//       413.jpg
//       ...
//     bg.jpg
//     ...
//
// After running gen-thumbs.js with the path to that folder passed, you'd end
// up with something like this:
//
//   media/
//     album-art/
//       one-year-older/
//         cover.jpg
//         cover.medium.jpg
//         cover.small.jpg
//         firefly-cloud.jpg
//         firefly-cloud.medium.jpg
//         firefly-cloud.small.jpg
//         october.jpg
//         october.medium.jpg
//         october.small.jpg
//         ...
//     flash-art/
//       413.jpg
//       413.medium.jpg
//       413.small.jpg
//       ...
//     bg.jpg
//     bg.medium.jpg
//     bg.small.jpg
//     thumbs-cache.json
//     ...
//
// (Do note that while 8oth JPG and PNG are supported, gener8ted files will
// always 8e in JPG format and file extension. GIFs are skipped since there
// aren't any super gr8 ways to make those more efficient!)
//
// And then in gener8tion code, you'd reference the medium/small or original
// version of each file, as decided is appropriate. Here are some guidelines:
//
// - Small: Grid tiles on the homepage and in galleries.
// - Medium: Cover art on individual al8um and track pages, etc.
// - Original: Only linked to, not embedded.
//
// The traversal code is indiscrimin8te: there are no special cases to, say,
// not gener8te thum8nails for the bg.jpg file (since those would generally go
// unused). This is just to make the code more porta8le and sta8le, long-term,
// since it avoids a lot of otherwise implic8ted maintenance.

'use strict';

export const CACHE_FILE = 'thumbnail-cache.json';
const WARNING_DELAY_TIME = 10000;

// Thumbnail spec details:
//
// * `currentSpecbust` is the current version of the thumbnail specification
//   format, which will be written to new or updated cache entries;
//   it represents just the overall format for reading and writing macro
//   details, not individual thumbnail spec versions.
//
// For each spec entry:
//
// * `tackbust` is the current version of this thumbtack's specification.
//   If a cache entry's tackbust for this thumbtack is less than this value,
//   this particular thumbtack will be regenerated, but any others (whose
//   `tackbust` listed below is equal or below the cache-recorded bust) will be
//   reused. (Zero is a special value that means this tack's spec is still the
//   same as it would've been generated prior to thumbtack versioning.)
//
// * `size` is the maximum length of the image. It will be scaled down,
//   keeping aspect ratio, to fit in this dimension.
//
// * `quality` represents how much to trade a lower file size for better JPEG
//   image quality. Maximum is 100, but very high values tend to yield
//   diminishing returns.
//
const currentSpecbust = 2;
const thumbnailSpec = {
  'huge': {
    tackbust: 0,
    size: 1600,
    quality: 90,
  },

  'semihuge': {
    tackbust: 0,
    size: 1200,
    quality: 92,
  },

  'large': {
    tackbust: 0,
    size: 800,
    quality: 93,
  },

  'medium': {
    tackbust: 0,
    size: 400,
    quality: 95,
  },

  'small': {
    tackbust: 0,
    size: 250,
    quality: 85,
  },

  'mini': {
    tackbust: 2,
    size: 8,
    quality: 95,
  },
};

import {spawn} from 'node:child_process';
import {createHash} from 'node:crypto';
import {createReadStream} from 'node:fs';
import * as path from 'node:path';

import {
  mkdir,
  readdir,
  readFile,
  rename,
  stat,
  writeFile,
} from 'node:fs/promises';

import dimensionsOf from 'image-size';

import CacheableObject from '#cacheable-object';
import {delay, empty, queue, stitchArrays, unique} from '#sugar';
import {chunkMultipleArrays, filterMultipleArrays, sortByName} from '#wiki-data';

import {
  colors,
  fileIssue,
  logError,
  logInfo,
  logWarn,
  logicalPathTo,
  parseOptions,
  progressPromiseAll,
} from '#cli';

import {
  commandExists,
  isMain,
  promisifyProcess,
  traverse,
} from '#node-utils';

export const defaultMagickThreads = 8;

function getSpecbustForCacheEntry(entry) {
  const nope = () => {
    logWarn`Couldn't determine a spec version for:`;
    console.error(entry);
    return null;
  };

  if (!entry) {
    return null;
  }

  if (Array.isArray(entry)) {
    if (entry.length === 3) {
      return 0;
    } else if (entry.length > 3) {
      return entry[0];
    } else {
      return nope();
    }
  } else if (typeof entry === 'object') {
    if (entry.specbust) {
      return entry.specbust;
    } else {
      return nope();
    }
  } else {
    return nope();
  }
}

export function thumbnailCacheEntryToDetails(entry) {
  // Empty entries get no details.
  if (!entry) {
    return null;
  }

  // First attempt to identify a specification version (aka "bust") for this
  // entry. It'll be used to actually parse the contents.

  const bust = getSpecbustForCacheEntry(entry);
  if (bust === null) {
    return null;
  }

  // Now extract details, reading based on the spec version.

  const details = {
    bust,
    md5: null,
    width: null,
    height: null,
    mtime: null,
    tackbust: {},
  };

  if (bust === 0) {
    ([details.md5,
      details.width,
      details.height] =
      entry);
  }

  if (bust === 1) {
    ([details.md5,
      details.width,
      details.height,
      details.mtime] =
      entry.slice(1))
  }

  if (bust >= 2 && bust <= Infinity) {
    ({tackbust: details.tackbust,
      md5: details.md5,
      width: details.width,
      height: details.height,
      mtime: details.mtime} = entry);
  }

  return details;
}

function detailsToThumbnailCacheEntry({
  specbust,
  tackbust,
  md5,
  width,
  height,
  mtime,
}) {
  // It's not necessarily impossible to write an earlier version of the cache
  // entry format, but doing so would be a lie - an entry's bust should always
  // identify the version of the spec it was generated with, so that other code
  // can make assumptions about not only the format of the entry, but also the
  // content of the generated thumbnail.
  if (specbust !== currentSpecbust) {
    throw new Error(`Writing a different specbust than current is unsupported`);
  }

  return {
    specbust,
    tackbust,
    md5,
    width,
    height,
    mtime,
  };
}

export function getThumbnailsAvailableForDimensions([width, height]) {
  // This function is intended to be portable, so it can be used both for
  // calculating which thumbnails to generate, and which ones will be ready
  // to reference in generated code. Sizes are in array [name, size] form
  // with larger sizes earlier in return. Keep in mind this isn't a direct
  // 1:1 mapping with the sizes listed in the thumbnail spec, because the
  // largest thumbnail (first in return) will be adjusted to the provided
  // dimensions.

  const {all} = getThumbnailsAvailableForDimensions;

  // Find the largest size which is beneath the passed dimensions. We use the
  // longer edge here (of width and height) so that each resulting thumbnail is
  // fully constrained within the size*size square defined by its spec.
  const longerEdge = Math.max(width, height);
  const index = all.findIndex(([name, size]) => size <= longerEdge);

  // Literal edge cases are handled specially. For dimensions which are bigger
  // than the biggest thumbnail in the spec, return all possible results.
  // These don't need any adjustments since the largest is already smaller than
  // the provided dimensions.
  if (index === 0) {
    return [
      ...all,
    ];
  }

  // For dimensions which are smaller than the smallest thumbnail, return only
  // the smallest, adjusted to the provided dimensions.
  if (index === -1) {
    const smallest = all[all.length - 1];
    return [
      [smallest[0], longerEdge],
    ];
  }

  // For non-edge cases, we return the largest size below the dimensions
  // as well as everything smaller, but also the next size larger - that way
  // there's a size which is as big as the original, but still JPEG compressed.
  // The size larger is adjusted to the provided dimensions to represent the
  // actual dimensions it'll provide.
  const larger = all[index - 1];
  const rest = all.slice(index);
  return [
    [larger[0], longerEdge],
    ...rest,
  ];
}

function stringifyCache(cache) {
  if (Object.keys(cache).length === 0) {
    return `{}`;
  }

  const entries = Object.entries(cache);
  sortByName(entries, {getName: entry => entry[0]});

  return [
    `{`,
    entries
      .map(([key, value]) => [JSON.stringify(key), JSON.stringify(value)])
      .map(([key, value]) => `${key}: ${value}`)
      .map((line, index, array) =>
        (index < array.length - 1
          ? `${line},`
          : line))
      .map(line => `  ${line}`),
    `}`,
  ].flat().join('\n');
}

getThumbnailsAvailableForDimensions.all =
  Object.entries(thumbnailSpec)
    .map(([name, {size}]) => [name, size])
    .sort((a, b) => b[1] - a[1]);

function getCacheEntryForMediaPath(mediaPath, cache) {
  // Gets the cache entry for the provided image path, which should always be
  // a forward-slashes path (i.e. suitable for display online). Since the cache
  // file may have forward or back-slashes, this checks both.

  const entryFromMediaPath = cache[mediaPath];
  if (entryFromMediaPath) return entryFromMediaPath;

  const winPath = mediaPath.split(path.posix.sep).join(path.win32.sep);
  const entryFromWinPath = cache[winPath];
  if (entryFromWinPath) return entryFromWinPath;

  return null;
}

export function checkIfImagePathHasCachedThumbnails(mediaPath, cache) {
  // Generic utility for checking if the thumbnail cache includes any info for
  // the provided image path, so that the other functions don't hard-code the
  // cache format.

  return !!getCacheEntryForMediaPath(mediaPath, cache);
}

export function getDimensionsOfImagePath(mediaPath, cache) {
  // This function is really generic. It takes the gen-thumbs image cache and
  // returns the dimensions in that cache, so that other functions don't need
  // to hard-code the cache format.

  const cacheEntry = getCacheEntryForMediaPath(mediaPath, cache);

  if (!cacheEntry) {
    throw new Error(`Expected mediaPath to be included in cache, got ${mediaPath}`);
  }

  const details = thumbnailCacheEntryToDetails(cacheEntry);

  if (!details) {
    throw new Error(`Couldn't determine any details for this image (${mediaPath})`);
  }

  const {width, height} = details;

  if (typeof width !== 'number' && typeof height !== 'number') {
    throw new Error(`Details for this image don't appear to contain dimensions (${mediaPath})`);
  }

  return [width, height];
}

export function getThumbnailEqualOrSmaller(preferred, mediaPath, cache) {
  // This function is totally exclusive to page generation. It's a shorthand
  // for accessing dimensions from the thumbnail cache, calculating all the
  // thumbnails available, and selecting the one which is equal to or smaller
  // than the provided size. Since the path provided might not be the actual
  // one which is being thumbnail-ified, this just returns the name of the
  // selected thumbnail size.

  if (!getCacheEntryForMediaPath(mediaPath, cache)) {
    throw new Error(`Expected mediaPath to be included in cache, got ${mediaPath}`);
  }

  const {size: preferredSize} = thumbnailSpec[preferred];
  const [width, height] = getDimensionsOfImagePath(mediaPath, cache);
  const available = getThumbnailsAvailableForDimensions([width, height]);
  const [selected] = available.find(([name, size]) => size <= preferredSize);
  return selected;
}

function readFileMD5(filePath) {
  return new Promise((resolve, reject) => {
    const md5 = createHash('md5');
    const stream = createReadStream(filePath);
    stream.on('data', (data) => md5.update(data));
    stream.on('end', () => resolve(md5.digest('hex')));
    stream.on('error', (err) => reject(err));
  });
}

async function identifyImageDimensions(filePath) {
  // See: https://github.com/image-size/image-size/issues/96
  const buffer = await readFile(filePath);
  const dimensions = dimensionsOf(buffer);
  return [dimensions.width, dimensions.height];
}

async function getImageMagickVersion(binary) {
  const proc = spawn(binary, ['--version']);

  let allData = '';
  proc.stdout.on('data', (data) => {
    allData += data.toString();
  });

  try {
    await promisifyProcess(proc, false);
  } catch (error) {
    return null;
  }

  if (!allData.match(/ImageMagick/i)) {
    return null;
  }

  const match = allData.match(/Version: (.*)/i);
  if (!match) {
    return 'unknown version';
  }

  return match[1];
}

async function getSpawnMagick(tool) {
  if (tool !== 'identify' && tool !== 'convert') {
    throw new Error(`Expected identify or convert`);
  }

  let fn = null;
  let description = null;
  let version = null;

  if (await commandExists(tool)) {
    version = await getImageMagickVersion(tool);
    if (version !== null) {
      fn = (args) => spawn(tool, args);
      description = tool;
    }
  }

  if (fn === null && await commandExists('magick')) {
    version = await getImageMagickVersion('magick');
    if (version !== null) {
      fn = (args) => spawn('magick', [tool, ...args]);
      description = `magick ${tool}`;
    }
  }

  if (fn === null) {
    return [`no ${tool} or magick binary`, null];
  }

  return [`${description} (${version})`, fn];
}

// TODO: This function may read MD5, mtime (stats), and image dimensions, and
// all of those values are needed for writing a cache entry. Reusing them from
// the cache if they *weren't* checked is fine, but if they were checked, we
// don't have any way to extract the results of the check - and reuse them for
// writing the cache. This function probably needs a bit of a restructure to
// avoid duplicating that work.
async function determineThumbtacksNeededForFile({
  filePath,
  mediaPath,
  cache,

  reuseMismatchedMD5 = false,
  reuseFutureBust = false,
  reusePastBust = false,
}) {
  const allRightSize = async () => {
    const dimensions = await identifyImageDimensions(filePath);
    const sizes = getThumbnailsAvailableForDimensions(dimensions);
    return sizes.map(([thumbtack]) => thumbtack);
  };

  const cacheEntry = getCacheEntryForMediaPath(mediaPath, cache);
  const cacheDetails = thumbnailCacheEntryToDetails(cacheEntry);

  if (!cacheDetails) {
    return await allRightSize();
  }

  if (!reuseMismatchedMD5) checkMD5: {
    // Reading MD5 is expensive because it means reading all the file contents.
    // Skip out if the file's date modified matches what's recorded on the
    // cache.
    const results = await stat(filePath);
    if (+results.mtime === cacheDetails.mtime) {
      break checkMD5;
    }

    const md5 = await readFileMD5(filePath);
    if (md5 !== cacheDetails.md5) {
      return await allRightSize();
    }
  }

  const mismatchedBusts =
    Object.entries(thumbnailSpec)
      .filter(([thumbtack, specEntry]) =>
        (!reusePastBust && (cacheDetails.tackbust[thumbtack] ?? 0) < specEntry.tackbust) ||
        (!reuseFutureBust && (cacheDetails.tackbust[thumbtack] ?? 0) > specEntry.tackbust))
      .map(([thumbtack]) => thumbtack);

  if (empty(mismatchedBusts)) {
    return [];
  }

  const rightSize = new Set(await allRightSize());
  const mismatchedWithinRightSize =
    mismatchedBusts.filter(size => rightSize.has(size));

  return mismatchedWithinRightSize;
}

async function generateImageThumbnail(imagePath, thumbtack, {
  mediaPath,
  mediaCachePath,
  spawnConvert,
}) {
  const filePathInMedia =
    path.join(mediaPath, imagePath);

  const dirnameInCache =
    path.join(mediaCachePath, path.dirname(imagePath));

  const filename =
    path.basename(imagePath, path.extname(imagePath)) +
    `.${thumbtack}.jpg`;

  const filePathInCache =
    path.join(dirnameInCache, filename);

  await mkdir(dirnameInCache, {recursive: true});

  const specEntry = thumbnailSpec[thumbtack];
  const {size, quality} = specEntry;

  const convertProcess = spawnConvert([
    filePathInMedia,
    '-strip',
    '-resize',
    `${size}x${size}>`,
    '-interlace',
    'Plane',
    '-quality',
    `${quality}%`,
    filePathInCache,
  ]);

  await promisifyProcess(convertProcess, false);
}

export async function determineMediaCachePath({
  mediaPath,
  providedMediaCachePath,
  disallowDoubling = false,
}) {
  if (!mediaPath) {
    return {
      annotation: 'media path not provided',
      mediaCachePath: null,
    };
  }

  if (providedMediaCachePath) {
    return {
      annotation: 'custom path provided',
      mediaCachePath: providedMediaCachePath,
    };
  }

  let mediaIncludesThumbnailCache;

  try {
    const files = await readdir(mediaPath);
    mediaIncludesThumbnailCache = files.includes(CACHE_FILE);
  } catch (error) {
    mediaIncludesThumbnailCache = false;
  }

  if (mediaIncludesThumbnailCache === true && !disallowDoubling) {
    return {
      annotation: 'media path doubles as cache',
      mediaCachePath: mediaPath,
    };
  }

  const inferredPath =
    path.join(
      path.dirname(mediaPath),
      path.basename(mediaPath) + '-cache');

  let inferredIncludesThumbnailCache;

  try {
    const files = await readdir(inferredPath);
    inferredIncludesThumbnailCache = files.includes(CACHE_FILE);
  } catch (error) {
    if (error.code === 'ENOENT') {
      inferredIncludesThumbnailCache = null;
    } else {
      inferredIncludesThumbnailCache = undefined;
    }
  }

  if (inferredIncludesThumbnailCache === true) {
    return {
      annotation: 'inferred path has cache',
      mediaCachePath: inferredPath,
    };
  } else if (inferredIncludesThumbnailCache === false) {
    return {
      annotation: 'inferred path does not have cache',
      mediaCachePath: null,
    };
  } else if (inferredIncludesThumbnailCache === null) {
    return {
      annotation: 'inferred path will be created',
      mediaCachePath: inferredPath,
    };
  } else {
    return {
      annotation: 'inferred path not readable',
      mediaCachePath: null,
    };
  }
}

export async function migrateThumbsIntoDedicatedCacheDirectory({
  mediaPath,
  mediaCachePath,

  queueSize = 0,
}) {
  if (!mediaPath) {
    throw new Error('Expected mediaPath');
  }

  if (!mediaCachePath) {
    throw new Error(`Expected mediaCachePath`);
  }

  logInfo`Migrating thumbnail files into dedicated directory.`;
  logInfo`Moving thumbs from: ${mediaPath}`;
  logInfo`Moving thumbs into: ${mediaCachePath}`;

  const thumbFiles = await traverse(mediaPath, {
    pathStyle: 'device',
    filterFile: file => isThumb(file),
    filterDir: name => name !== '.git',
  });

  if (thumbFiles.length) {
    // Double-check files.
    const thumbtacks = Object.keys(thumbnailSpec);
    const unsafeFiles = thumbFiles.filter(file => {
      if (path.extname(file) !== '.jpg') return true;
      if (thumbtacks.every(tack => !file.includes(tack))) return true;
      if (path.relative(mediaPath, file).startsWith('../')) return true;
      return false;
    });

    if (unsafeFiles.length > 0) {
      logError`Detected files which we thought were safe, but don't actually seem to be thumbnails!`;
      logError`List of files that were invalid: ${`(Please remove any personal files before reporting)`}`;
      for (const file of unsafeFiles) {
        console.error(file);
      }
      fileIssue();
      return {success: false};
    }

    logInfo`Moving ${thumbFiles.length} thumbs.`;

    await mkdir(mediaCachePath, {recursive: true});

    const errored = [];

    await progressPromiseAll(`Moving thumbnail files`, queue(
      thumbFiles.map(file => async () => {
        try {
          const filePathInMedia = file;
          const filePath = path.relative(mediaPath, filePathInMedia);
          const filePathInCache = path.join(mediaCachePath, filePath);
          await mkdir(path.dirname(filePathInCache), {recursive: true});
          await rename(filePathInMedia, filePathInCache);
        } catch (error) {
          if (error.code !== 'ENOENT') {
            errored.push(file);
          }
        }
      }),
      queueSize));

    if (errored.length) {
      logError`Couldn't move these paths (${errored.length}):`;
      for (const file of errored) {
        console.error(file);
      }
      logError`It's possible there were permission errors. After you've`;
      logError`investigated, running again should work to move these.`;
      return {success: false};
    } else {
      logInfo`Successfully moved all ${thumbFiles.length} thumbnail files!`;
    }
  } else {
    logInfo`Didn't find any thumbnails to move.`;
  }

  let cacheExists = false;
  try {
    await stat(path.join(mediaPath, CACHE_FILE));
    cacheExists = true;
  } catch (error) {
    if (error.code === 'ENOENT') {
      logInfo`No cache file present here. (${CACHE_FILE})`;
    } else {
      logWarn`Failed to access cache file. Check its permissions?`;
    }
  }

  if (cacheExists) {
    try {
      await rename(
        path.join(mediaPath, CACHE_FILE),
        path.join(mediaCachePath, CACHE_FILE));
      logInfo`Moved thumbnail cache file.`;
    } catch (error) {
      logWarn`Failed to move cache file. (${CACHE_FILE})`;
      logWarn`Check its permissions, or try copying/pasting.`;
    }
  }

  return {success: true};
}

// Fill in missing details (usually on older entries) that don't actually
// require generating any thumbnails to determine. This makes sure all
// entries are using the latest specbust, too.
export async function refreshThumbnailCache(cache, {mediaPath, queueSize}) {
  if (Object.keys(cache).length === 0) {
    return;
  }

  await progressPromiseAll(`Refreshing existing entries on thumbnail cache`,
    queue(
      Object.entries(cache)
        .map(([imagePath, cacheEntry]) => async () => {
          const details = thumbnailCacheEntryToDetails(cacheEntry);

          // Couldn't parse this entry, it won't be used later on.
          // But leave it around just in case some other version of hsmusic
          // can get use out of it.
          if (!details) {
            return;
          }

          const {tackbust, width, height} = details;

          let {md5, mtime} = details;
          let updatedAnything = false;

          try {
            const filePathInMedia = path.join(mediaPath, imagePath);

            if (md5 === null) {
              md5 = await readFileMD5(filePathInMedia);
              updatedAnything = true;
            }

            if (mtime === null) {
              const statResults = await stat(filePathInMedia);
              mtime = +statResults.mtime;
              updatedAnything = true;
            }
          } catch (error) {
            if (error.code === 'ENOENT') {
              if (md5 === null) {
                md5 = "-";
                updatedAnything = true;
              }

              if (mtime === null) {
                mtime = 0;
                updatedAnything = true;
              }
            } else {
              throw error;
            }
          }

          if (!updatedAnything) {
            return;
          }

          cache[imagePath] = detailsToThumbnailCacheEntry({
            specbust: currentSpecbust,
            tackbust,
            width,
            height,
            md5,
            mtime,
          });
        }),
      queueSize));
}

export default async function genThumbs({
  mediaPath,
  mediaCachePath,

  queueSize = 0,
  magickThreads = defaultMagickThreads,
  quiet = false,
}) {
  if (!mediaPath) {
    throw new Error('Expected mediaPath to be passed');
  }

  const quietInfo = quiet ? () => null : logInfo;

  const [convertInfo, spawnConvert] = await getSpawnMagick('convert');

  if (!spawnConvert) {
    logError`${`It looks like you don't have ImageMagick installed.`}`;
    logError`ImageMagick is required to generate thumbnails for display on the wiki.`;
    for (const error of [convertInfo].filter(Boolean)) {
      logError`(Error message: ${error})`;
    }
    logInfo`You can find info to help install ImageMagick on Linux, Windows, or macOS`;
    logInfo`from its official website: ${`https://imagemagick.org/script/download.php`}`;
    logInfo`If you have trouble working ImageMagick and would like some help, feel free`;
    logInfo`to drop a message in the HSMusic Discord server! ${'https://hsmusic.wiki/discord/'}`;
    return {success: false};
  } else {
    logInfo`Found ImageMagick binary:  ${convertInfo}`;
  }

  quietInfo`Running up to ${magickThreads + ' magick threads'} simultaneously.`;

  let cache = {};
  let firstRun = false;

  try {
    cache = JSON.parse(await readFile(path.join(mediaCachePath, CACHE_FILE)));
    quietInfo`Cache file successfully read.`;
  } catch (error) {
    if (error.code === 'ENOENT') {
      firstRun = true;
    } else {
      logWarn`Malformed or unreadable cache file: ${error}`;
      logWarn`You may want to cancel and investigate this!`;
      logWarn`All-new thumbnails and cache will be generated for this run.`;
      await delay(WARNING_DELAY_TIME);
    }
  }

  await refreshThumbnailCache(cache, {mediaPath, queueSize});

  try {
    await mkdir(mediaCachePath, {recursive: true});
  } catch (error) {
    logError`Couldn't create the media cache directory: ${error.code}`;
    logError`That's where the media files are going to go, so you'll`;
    logError`have to investigate this - it's likely a permissions error.`;
    return {success: false};
  }

  try {
    await writeFile(
      path.join(mediaCachePath, CACHE_FILE),
      stringifyCache(cache));
    quietInfo`Writing to cache file appears to be working.`;
  } catch (error) {
    logWarn`Test of cache file writing failed: ${error}`;
    if (cache) {
      logWarn`Cache read succeeded: Any newly written thumbs will be unnecessarily regenerated on the next run.`;
    } else if (firstRun) {
      logWarn`No cache found: All thumbs will be generated now, and will be unnecessarily regenerated next run.`;
      logWarn`You may also have to provide ${'--media-cache-path'} ${mediaCachePath} next run.`;
    } else {
      logWarn`Cache read failed: All thumbs will be regenerated now, and will be unnecessarily regenerated again next run.`;
    }
    logWarn`You may want to cancel and investigate this!`;
    await delay(WARNING_DELAY_TIME);
  }

  if (firstRun) {
    cache = {};
  }

  const imagePaths = await traverseSourceImagePaths(mediaPath, {target: 'generate'});

  const imageThumbtacksNeeded =
    await progressPromiseAll(`Determining thumbtacks needed`,
      queue(
        imagePaths.map(imagePath => () =>
          determineThumbtacksNeededForFile({
            filePath: path.join(mediaPath, imagePath),
            mediaPath: imagePath,
            cache,
          }).catch(error => ({error}))),
        queueSize));

  {
    const erroredPaths = imagePaths.slice();
    const errors = imageThumbtacksNeeded.map(({error}) => error);
    filterMultipleArrays(erroredPaths, errors, (_imagePath, error) => error);

    for (const {imagePath, error} of stitchArrays({imagePath: erroredPaths, error: errors})) {
      logError`Failed to identify thumbs needed for ${imagePath}: ${error}`;
    }

    if (!empty(errors)) {
      logError`Failed to determine needed thumbnails for least one image file!`;
      logError`This indicates a thumbnail probably wouldn't be generated.`;
      logError`So, exiting early.`;
      return {success: false};
    } else {
      quietInfo`All image files successfully read.`;
    }
  }

  // We aren't going to need the original value of `imagePaths` again, so it's
  // fine to filter it here.
  filterMultipleArrays(
    imagePaths,
    imageThumbtacksNeeded,
    (_imagePath, needed) => !empty(needed));

  if (empty(imagePaths)) {
    logInfo`All image thumbnails are already up-to-date - nice!`;
    return {success: true, cache};
  }

  const imageDimensions =
    await progressPromiseAll(`Identifying dimensions of image files`,
      queue(
        imagePaths.map(imagePath => () =>
          identifyImageDimensions(path.join(mediaPath, imagePath))
            .catch(error => ({error}))),
        queueSize));

  {
    const erroredPaths = imagePaths.slice();
    const errors = imageDimensions.map(result => result.error);
    filterMultipleArrays(erroredPaths, errors, (_imagePath, error) => error);

    for (const {imagePath, error} of stitchArrays({imagePath: erroredPaths, error: errors})) {
      logError`Failed to identify dimensions for ${imagePath}: ${error}`;
    }

    if (!empty(errors)) {
      logError`Failed to identify dimensions for at least one image file!`;
      logError`This indicates a thumbnail probably wouldn't be generated.`;
      logError`So, exiting early.`;
      return {success: false};
    } else {
      quietInfo`All image files successfully had dimensions identified.`;
    }
  }

  let numFailed = 0;
  const writeMessageFn = () =>
    `Writing image thumbnails. [failed: ${numFailed}]`;

  const generateCallImageIndices =
    imageThumbtacksNeeded
      .flatMap(({length}, index) =>
        Array.from({length}, () => index));

  const generateCallImagePaths =
    generateCallImageIndices
      .map(index => imagePaths[index]);

  const generateCallThumbtacks =
    imageThumbtacksNeeded.flat();

  const generateCallFns =
    stitchArrays({
      imagePath: generateCallImagePaths,
      thumbtack: generateCallThumbtacks,
    }).map(({imagePath, thumbtack}) => () =>
        generateImageThumbnail(imagePath, thumbtack, {
          mediaPath,
          mediaCachePath,
          spawnConvert,
        }).catch(error => {
            numFailed++;
            return ({error});
          }));

  logInfo`Generating ${generateCallFns.length} thumbnails for ${imagePaths.length} media files.`;
  if (generateCallFns.length > 500) {
    logInfo`Go get a latte - this could take a while!`;
  }

  const generateCallResults =
    await progressPromiseAll(writeMessageFn,
      queue(generateCallFns, magickThreads));

  let successfulIndices;

  {
    const erroredIndices = generateCallImageIndices.slice();
    const erroredPaths = generateCallImagePaths.slice();
    const erroredThumbtacks = generateCallThumbtacks.slice();
    const errors = generateCallResults.map(result => result?.error);

    const {removed} =
      filterMultipleArrays(
        erroredIndices,
        erroredPaths,
        erroredThumbtacks,
        errors,
        (_index, _imagePath, _thumbtack, error) => error);

    successfulIndices = new Set(removed[0]);

    const chunks =
      chunkMultipleArrays(erroredPaths, erroredThumbtacks, errors,
        (imagePath, lastImagePath) => imagePath !== lastImagePath);

    // TODO: This should obviously be an aggregate error.
    // ...Just like every other error report here, and those dang aggregates
    // should be constructable from within the queue, rather than after.
    for (const [[imagePath], thumbtacks, errors] of chunks) {
      logError`Failed to generate thumbnails for ${imagePath}:`;
      for (const {thumbtack, error} of stitchArrays({thumbtack: thumbtacks, error: errors})) {
        logError`- ${thumbtack}: ${error}`;
      }
    }

    if (empty(errors)) {
      logInfo`All needed thumbnails generated successfully - nice!`;
    } else {
      logWarn`Result is incomplete - the above thumbnails should be checked for errors.`;
      logWarn`Successfully generated images won't be regenerated next run, though!`;
    }
  }

  filterMultipleArrays(
    imagePaths,
    imageThumbtacksNeeded,
    imageDimensions,
    (_imagePath, _thumbtacksNeeded, _dimensions, index) =>
      successfulIndices.has(index));

  for (const {
    imagePath,
    thumbtacksNeeded,
    dimensions,
  } of stitchArrays({
    imagePath: imagePaths,
    thumbtacksNeeded: imageThumbtacksNeeded,
    dimensions: imageDimensions,
  })) {
    const cacheEntry = cache[imagePath];
    const cacheDetails = thumbnailCacheEntryToDetails(cacheEntry);

    const updatedTackbust =
      (cacheDetails
        ? {...cacheDetails.tackbust}
        : {});

    for (const thumbtack of thumbtacksNeeded) {
      updatedTackbust[thumbtack] = thumbnailSpec[thumbtack].tackbust;
    }

    // We could reuse md5 and mtime values from the preivous cache entry, if
    // extant, but we can't identify the *reason* for why those thumbtacks
    // were generated, so it's possible these values were at fault. No getting
    // around computing them again here, at the moment.

    const filePathInMedia = path.join(mediaPath, imagePath);
    const md5 = await readFileMD5(filePathInMedia);

    const statResults = await stat(filePathInMedia);
    const mtime = +statResults.mtime;

    cache[imagePath] = detailsToThumbnailCacheEntry({
      specbust: currentSpecbust,
      tackbust: updatedTackbust,
      width: dimensions[0],
      height: dimensions[1],
      md5,
      mtime,
    });
  }

  try {
    await writeFile(
      path.join(mediaCachePath, CACHE_FILE),
      stringifyCache(cache));
    quietInfo`Updated cache file successfully written!`;
  } catch (error) {
    logWarn`Failed to write updated cache file: ${error}`;
    logWarn`Any newly (re)generated thumbnails will be regenerated next run.`;
    logWarn`Sorry about that!`;
  }

  return {success: true, cache};
}

export function getExpectedImagePaths(mediaPath, {urls, wikiData}) {
  const fromRoot = urls.from('media.root');

  const paths = [
    wikiData.albumData
      .flatMap(album => [
        album.hasCoverArt && fromRoot.to('media.albumCover', album.directory, album.coverArtFileExtension),
        !empty(CacheableObject.getUpdateValue(album, 'bannerArtistContribs')) && fromRoot.to('media.albumBanner', album.directory, album.bannerFileExtension),
        !empty(CacheableObject.getUpdateValue(album, 'wallpaperArtistContribs')) && fromRoot.to('media.albumWallpaper', album.directory, album.wallpaperFileExtension),
      ])
      .filter(Boolean),

    wikiData.artistData
      .filter(artist => artist.hasAvatar)
      .map(artist => fromRoot.to('media.artistAvatar', artist.directory, artist.avatarFileExtension)),

    wikiData.flashData
      .map(flash => fromRoot.to('media.flashArt', flash.directory, flash.coverArtFileExtension)),

    wikiData.trackData
      .filter(track => track.hasUniqueCoverArt)
      .map(track => fromRoot.to('media.trackCover', track.album.directory, track.directory, track.coverArtFileExtension)),
  ].flat();

  sortByName(paths, {getName: path => path});

  return paths;
}

export function checkMissingMisplacedMediaFiles(expectedImagePaths, extantImagePaths) {
  expectedImagePaths = expectedImagePaths.map(path => path.toLowerCase());
  extantImagePaths = extantImagePaths.map(path => path.toLowerCase());

  return {
    missing:
      expectedImagePaths
        .filter(f => !extantImagePaths.includes(f)),

    misplaced:
      extantImagePaths
        .filter(f =>
          // todo: This is a hack to match only certain directories - the ones
          // which expectedImagePaths will detect. The rest of the code here is
          // urls-agnostic (meaning you could swap out a different URL spec and
          // it would still work), but this part is hard-coded.
          f.includes('album-art/') ||
          f.includes('artist-avatar/') ||
          f.includes('flash-art/'))
        .filter(f => !expectedImagePaths.includes(f)),
  };
}

export async function verifyImagePaths(mediaPath, {urls, wikiData}) {
  const expectedPaths = getExpectedImagePaths(mediaPath, {urls, wikiData});
  const extantPaths = await traverseSourceImagePaths(mediaPath, {target: 'verify'});

  const {missing: missingPaths, misplaced: misplacedPaths} =
    checkMissingMisplacedMediaFiles(expectedPaths, extantPaths);

  if (empty(missingPaths) && empty(misplacedPaths)) {
    logInfo`All image paths are good - nice! None are missing or misplaced.`;
    return {missing: [], misplaced: []};
  }

  const relativeMediaPath = await logicalPathTo(mediaPath);

  const dirnamesOfExpectedPaths =
    unique(expectedPaths.map(file => path.dirname(file)));

  const dirnamesOfExtantPaths =
    unique(extantPaths.map(file => path.dirname(file)));

  const dirnamesOfMisplacedPaths =
    unique(misplacedPaths.map(file => path.dirname(file)));

  const completelyMisplacedDirnames =
    dirnamesOfMisplacedPaths
      .filter(dirname => !dirnamesOfExpectedPaths.includes(dirname));

  const completelyMissingDirnames =
    dirnamesOfExpectedPaths
      .filter(dirname => !dirnamesOfExtantPaths.includes(dirname));

  const individuallyMisplacedPaths =
    misplacedPaths
      .filter(file => !completelyMisplacedDirnames.includes(path.dirname(file)));

  const individuallyMissingPaths =
    missingPaths
      .filter(file => !completelyMissingDirnames.includes(path.dirname(file)));

  const wrongExtensionPaths =
    misplacedPaths
      .map(file => {
        const stripExtension = file =>
          path.join(
            path.dirname(file),
            path.basename(file, path.extname(file)));

        const extantExtension = path.extname(file);
        const basename = stripExtension(file);

        const expectedPath =
          missingPaths
            .find(file => stripExtension(file) === basename);

        if (!expectedPath) return null;

        const expectedExtension = path.extname(expectedPath);
        return {basename, extantExtension, expectedExtension};
      })
      .filter(Boolean);

  if (!empty(missingPaths)) {
    if (missingPaths.length === 1) {
      logWarn`${1} expected image file is missing from ${relativeMediaPath}:`;
    } else {
      logWarn`${missingPaths.length} expected image files are missing:`;
    }

    for (const dirname of completelyMissingDirnames) {
      console.log(` - (missing) All files under ${colors.bright(dirname)}`);
    }

    for (const file of individuallyMissingPaths) {
      console.log(` - (missing) ${file}`);
    }
  }

  if (!empty(misplacedPaths)) {
    if (misplacedPaths.length === 1) {
      logWarn`${1} image file, present in ${relativeMediaPath}, wasn't expected:`;
    } else {
      logWarn`${misplacedPaths.length} image files, present in ${relativeMediaPath}, weren't expected:`;
    }

    for (const dirname of completelyMisplacedDirnames) {
      console.log(` - (misplaced) All files under ${colors.bright(dirname)}`);
    }

    for (const file of individuallyMisplacedPaths) {
      console.log(` - (misplaced) ${file}`);
    }
  }

  if (!empty(wrongExtensionPaths)) {
    if (wrongExtensionPaths.length === 1) {
      logWarn`Of these, ${1} has an unexpected file extension:`;
    } else {
      logWarn`Of these, ${wrongExtensionPaths.length} have an unexpected file extension:`;
    }

    for (const {basename, extantExtension, expectedExtension} of wrongExtensionPaths) {
      console.log(` - (expected ${colors.green(expectedExtension)}) ${basename + colors.red(extantExtension)}`);
    }

    logWarn`To handle unexpected file extensions:`;
    logWarn` * Source and ${`replace`} with the correct file, or`;
    logWarn` * Add ${`"Cover Art File Extension"`} field (or similar)`;
    logWarn`   to the respective document in YAML data files.`;
  }

  return {missing: missingPaths, misplaced: misplacedPaths};
}

// Recursively traverses the provided (extant) media path, filtering so only
// "source" images are returned - no thumbnails and no non-images. Provide
// target as 'generate' or 'verify' to indicate the desired use of the results.
//
// Under 'verify':
//
// * All source files are returned, so that their existence can be verified
//   against a list of expected source files.
//
// * Source files are returned in "wiki" path style, AKA with POSIX-style
//   forward slashes, regardless the system being run on.
//
// Under 'generate':
//
// * All files which shouldn't actually have thumbnails generated are excluded.
//
// * Source files are returned in device-style, with backslashes on Windows.
//   These are suitable to be passed as command-line arguments to ImageMagick.
//
// Both modes return paths relative to mediaPath, with no ./ or .\ at the
// front.
//
export async function traverseSourceImagePaths(mediaPath, {target}) {
  if (target !== 'verify' && target !== 'generate') {
    throw new Error(`Expected target to be 'verify' or 'generate', got ${target}`);
  }

  const paths = await traverse(mediaPath, {
    pathStyle: (target === 'verify' ? 'posix' : 'device'),
    prefixPath: '',

    filterFile(name) {
      const ext = path.extname(name);

      if (!['.jpg', '.png', '.gif'].includes(ext)) {
        return false;
      }

      if (target === 'generate' && ext === '.gif') {
        return false;
      }

      if (isThumb(name)) {
        return false;
      }

      return true;
    },

    filterDir(name) {
      if (name === '.git') {
        return false;
      }

      return true;
    },
  });

  sortByName(paths, {getName: path => path});

  return paths;
}

export function isThumb(file) {
  const thumbnailLabel = file.match(/\.([^.]+)\.jpg$/)?.[1];
  return Object.keys(thumbnailSpec).includes(thumbnailLabel);
}

if (isMain(import.meta.url)) {
  (async function () {
    const miscOptions = await parseOptions(process.argv.slice(2), {
      'media-path': {
        type: 'value',
      },

      'queue-size': {
        type: 'value',
        validate(size) {
          if (parseInt(size) !== parseFloat(size)) return 'an integer';
          if (parseInt(size) < 0) return 'a counting number or zero';
          return true;
        },
      },

      queue: {alias: 'queue-size'},
    });

    const mediaPath = miscOptions['media-path'] || process.env.HSMUSIC_MEDIA;
    const queueSize = +(miscOptions['queue-size'] ?? 0);

    await genThumbs(mediaPath, {queueSize});
  })().catch((err) => {
    console.error(err);
  });
}