-
-
Notifications
You must be signed in to change notification settings - Fork 425
Expand file tree
/
Copy pathscan_handler.py
More file actions
1118 lines (1009 loc) · 40.8 KB
/
scan_handler.py
File metadata and controls
1118 lines (1009 loc) · 40.8 KB
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
import asyncio
import enum
from typing import Any
import socketio # type: ignore
from config.config_manager import config_manager as cm
from endpoints.responses.rom import SimpleRomSchema
from handler.database import db_platform_handler, db_rom_handler
from handler.filesystem import fs_asset_handler, fs_firmware_handler, fs_rom_handler
from handler.filesystem.roms_handler import FSRom
from handler.metadata import (
meta_flashpoint_handler,
meta_gamelist_handler,
meta_hasheous_handler,
meta_hltb_handler,
meta_igdb_handler,
meta_launchbox_handler,
meta_libretro_handler,
meta_moby_handler,
meta_playmatch_handler,
meta_ra_handler,
meta_sgdb_handler,
meta_ss_handler,
meta_tgdb_handler,
)
from handler.metadata.flashpoint_handler import FLASHPOINT_PLATFORM_LIST, FlashpointRom
from handler.metadata.gamelist_handler import GamelistRom
from handler.metadata.hasheous_handler import HASHEOUS_PLATFORM_LIST, HasheousRom
from handler.metadata.hltb_handler import HLTB_PLATFORM_LIST, HLTBRom
from handler.metadata.igdb_handler import IGDB_PLATFORM_LIST, IGDBRom
from handler.metadata.launchbox_handler.media import populate_rom_specific_paths
from handler.metadata.launchbox_handler.platforms import LAUNCHBOX_PLATFORM_LIST
from handler.metadata.launchbox_handler.types import LaunchboxRom
from handler.metadata.libretro_handler import LIBRETRO_PLATFORM_LIST, LibretroRom
from handler.metadata.moby_handler import MOBYGAMES_PLATFORM_LIST, MobyGamesRom
from handler.metadata.playmatch_handler import (
PLAYMATCH_SUPPORTED_SOURCES,
PlaymatchRomMatch,
)
from handler.metadata.ra_handler import RA_PLATFORM_LIST, RAGameRom
from handler.metadata.sgdb_handler import SGDBRom
from handler.metadata.ss_handler import SCREENSAVER_PLATFORM_LIST, SSRom
from logger.formatter import BLUE, LIGHTYELLOW
from logger.formatter import highlight as hl
from logger.logger import log
from models.assets import Save, Screenshot, State
from models.firmware import Firmware
from models.platform import Platform
from models.rom import Rom
from models.user import User
from utils import emoji
LOGGER_MODULE_NAME = {"module_name": "scan"}
@enum.unique
class ScanType(enum.StrEnum):
NEW_PLATFORMS = "new_platforms"
QUICK = "quick"
UPDATE = "update"
UNMATCHED = "unmatched"
COMPLETE = "complete"
HASHES = "hashes"
@enum.unique
class MetadataSource(enum.StrEnum):
IGDB = "igdb" # IGDB
MOBY = "moby" # MobyGames
SS = "ss" # Screenscraper
RA = "ra" # RetroAchievements
LAUNCHBOX = "launchbox" # Launchbox
HASHEOUS = "hasheous" # Hasheous
TGDB = "tgdb" # TheGamesDB
SGDB = "sgdb" # SteamGridDB
FLASHPOINT = "flashpoint" # Flashpoint Project
HLTB = "hltb" # HowLongToBeat
GAMELIST = "gamelist" # ES-DE gamelist.xml
LIBRETRO = "libretro" # Libretro thumbnails
PLAYMATCH = "playmatch" # Playmatch
def get_main_platform_igdb_id(platform: Platform):
cnfg = cm.get_config()
if platform.fs_slug in cnfg.PLATFORMS_VERSIONS.keys():
main_platform_slug = cnfg.PLATFORMS_VERSIONS[platform.fs_slug]
main_platform = db_platform_handler.get_platform_by_fs_slug(main_platform_slug)
if main_platform:
main_platform_igdb_id = main_platform.igdb_id
else:
main_platform = meta_igdb_handler.get_platform(main_platform_slug)
main_platform_igdb_id = main_platform["igdb_id"]
if not main_platform_igdb_id:
main_platform_igdb_id = platform.igdb_id
else:
main_platform_igdb_id = platform.igdb_id
return main_platform_igdb_id
def get_priority_ordered_metadata_sources(
metadata_sources: list[MetadataSource], priority_type: str = "metadata"
) -> list[MetadataSource]:
"""Get metadata sources ordered by priority from config
Args:
metadata_sources: List of available metadata sources
priority_type: Type of priority to use ("metadata" or "artwork")
Returns:
List of metadata sources ordered by priority
"""
cnfg = cm.get_config()
if priority_type == "metadata":
priority_order = cnfg.SCAN_METADATA_PRIORITY
else:
priority_order = cnfg.SCAN_ARTWORK_PRIORITY
# Filter priority order to only include sources that are available
ordered_sources = [
MetadataSource(source)
for source in priority_order
if source in metadata_sources
]
# Add any remaining sources that weren't in the priority list
remaining_sources = [
MetadataSource(source)
for source in metadata_sources
if source not in ordered_sources
]
return ordered_sources + remaining_sources
async def scan_platform(
fs_slug: str,
fs_platforms: list[str],
) -> Platform:
"""Get platform details
Args:
fs_slug: short name of the platform
Returns
Platform object
"""
platform_attrs: dict[str, Any] = {}
platform_attrs["fs_slug"] = fs_slug
cnfg = cm.get_config()
swapped_platform_bindings = {v: k for k, v in cnfg.PLATFORMS_BINDING.items()}
swapped_platform_versions = {v: k for k, v in cnfg.PLATFORMS_VERSIONS.items()}
# Sometimes users change the name of the folder, so we try to match it with the config
if fs_slug not in fs_platforms:
log.warning(
f"{hl(fs_slug)} not found in file system, trying to match via config",
extra=LOGGER_MODULE_NAME,
)
if fs_slug in swapped_platform_bindings.keys():
platform = db_platform_handler.get_platform_by_fs_slug(fs_slug)
if platform:
platform_attrs["fs_slug"] = swapped_platform_bindings[platform.slug]
elif fs_slug in swapped_platform_versions.keys():
platform = db_platform_handler.get_platform_by_fs_slug(fs_slug)
if platform:
platform_attrs["fs_slug"] = swapped_platform_versions[platform.slug]
try:
if fs_slug in cnfg.PLATFORMS_BINDING.keys():
platform_attrs["slug"] = cnfg.PLATFORMS_BINDING[fs_slug]
elif fs_slug in cnfg.PLATFORMS_VERSIONS.keys():
platform_attrs["slug"] = cnfg.PLATFORMS_VERSIONS[fs_slug]
else:
platform_attrs["slug"] = fs_slug
except (KeyError, TypeError, AttributeError):
platform_attrs["slug"] = fs_slug
igdb_platform = meta_igdb_handler.get_platform(platform_attrs["slug"])
moby_platform = meta_moby_handler.get_platform(platform_attrs["slug"])
ss_platform = meta_ss_handler.get_platform(platform_attrs["slug"])
ra_platform = meta_ra_handler.get_platform(platform_attrs["slug"])
launchbox_platform = meta_launchbox_handler.get_platform(platform_attrs["slug"])
hasheous_platform = meta_hasheous_handler.get_platform(platform_attrs["slug"])
tgdb_platform = meta_tgdb_handler.get_platform(platform_attrs["slug"])
flashpoint_platform = meta_flashpoint_handler.get_platform(platform_attrs["slug"])
hltb_platform = meta_hltb_handler.get_platform(platform_attrs["slug"])
libretro_platform = meta_libretro_handler.get_platform(platform_attrs["slug"])
platform_attrs["name"] = platform_attrs["slug"].replace("-", " ").title()
platform_attrs.update(
{
**libretro_platform,
**hltb_platform,
**flashpoint_platform,
**tgdb_platform,
**hasheous_platform,
**launchbox_platform,
**ra_platform,
**moby_platform,
**ss_platform,
**igdb_platform,
"igdb_id": igdb_platform.get("igdb_id")
or hasheous_platform.get("igdb_id")
or None,
"ra_id": ra_platform.get("ra_id") or hasheous_platform.get("ra_id") or None,
"tgdb_id": moby_platform.get("tgdb_id")
or hasheous_platform.get("tgdb_id")
or tgdb_platform.get("tgdb_id")
or None,
"name": igdb_platform.get("name")
or ss_platform.get("name")
or moby_platform.get("name")
or ra_platform.get("name")
or launchbox_platform.get("name")
or hasheous_platform.get("name")
or tgdb_platform.get("name")
or flashpoint_platform.get("name")
or hltb_platform.get("name")
or platform_attrs["slug"].replace("-", " ").title(),
"url_logo": igdb_platform.get("url_logo")
or tgdb_platform.get("url_logo")
or "",
}
)
if (
platform_attrs["igdb_id"]
or platform_attrs["moby_id"]
or platform_attrs["ss_id"]
or platform_attrs["ra_id"]
or platform_attrs["launchbox_id"]
or hasheous_platform["hasheous_id"]
or tgdb_platform["tgdb_id"]
or flashpoint_platform["flashpoint_id"]
or hltb_platform["hltb_slug"]
or libretro_platform["libretro_slug"]
):
log.info(
f"Folder {hl(platform_attrs['slug'])}[{hl(fs_slug, color=LIGHTYELLOW)}] identified as {hl(platform_attrs['name'], color=BLUE)} {emoji.EMOJI_VIDEO_GAME}",
extra={"module_name": "scan"},
)
else:
log.warning(
f"Platform {hl(platform_attrs['slug'])} not identified {emoji.EMOJI_CROSS_MARK}",
extra=LOGGER_MODULE_NAME,
)
platform_attrs["missing_from_fs"] = False
return Platform(**platform_attrs)
async def scan_firmware(
platform: Platform,
file_name: str,
firmware: Firmware | None = None,
) -> Firmware:
firmware_path = fs_firmware_handler.get_firmware_fs_structure(platform.fs_slug)
# Set default properties
firmware_attrs = {
"id": firmware.id if firmware else None,
"platform_id": platform.id,
}
file_path = f"{firmware_path}/{file_name}"
file_size = await fs_firmware_handler.get_file_size(file_path)
firmware_attrs.update(
{
"file_path": firmware_path,
"file_name": file_name,
"file_name_no_tags": fs_firmware_handler.get_file_name_with_no_tags(
file_name
),
"file_name_no_ext": fs_firmware_handler.get_file_name_with_no_extension(
file_name
),
"file_extension": fs_firmware_handler.parse_file_extension(file_name),
"file_size_bytes": file_size,
}
)
file_hashes = await fs_firmware_handler.calculate_file_hashes(
firmware_path=firmware_path,
file_name=file_name,
)
firmware_attrs.update(**file_hashes)
return Firmware(**firmware_attrs)
async def scan_rom(
scan_type: ScanType,
platform: Platform,
rom: Rom,
fs_rom: FSRom,
metadata_sources: list[str],
newly_added: bool,
launchbox_remote_enabled: bool = True,
socket_manager: socketio.AsyncRedisManager | None = None,
) -> Rom:
rom_attrs = {
"id": rom.id,
"platform_id": platform.id,
"fs_name": fs_rom["fs_name"],
"fs_path": rom.fs_path,
"fs_name_no_tags": rom.fs_name_no_tags,
"fs_name_no_ext": rom.fs_name_no_ext,
"fs_extension": rom.fs_extension,
"regions": rom.regions,
"revision": rom.revision,
"languages": rom.languages,
"tags": rom.tags,
"crc_hash": rom.crc_hash,
"md5_hash": rom.md5_hash,
"sha1_hash": rom.sha1_hash,
"ra_hash": rom.ra_hash,
"fs_size_bytes": rom.fs_size_bytes,
"sort_name": None,
}
# Check if files have been parsed and hashed
if len(fs_rom["files"]) > 0:
filesize = sum([file.file_size_bytes for file in fs_rom["files"]])
rom_attrs.update(
{
"crc_hash": fs_rom["crc_hash"],
"md5_hash": fs_rom["md5_hash"],
"sha1_hash": fs_rom["sha1_hash"],
"ra_hash": fs_rom["ra_hash"],
"fs_size_bytes": filesize,
}
)
# Update properties from existing rom if not a complete rescan
if not newly_added and scan_type != ScanType.COMPLETE:
rom_attrs.update(
{
"name": rom.name,
"sort_name": rom.sort_name,
"slug": rom.slug,
"summary": rom.summary,
"url_cover": rom.url_cover,
"url_screenshots": rom.url_screenshots,
"url_manual": rom.url_manual,
"path_cover_s": rom.path_cover_s,
"path_cover_l": rom.path_cover_l,
"path_screenshots": rom.path_screenshots,
"path_manual": rom.path_manual,
"igdb_id": rom.igdb_id,
"moby_id": rom.moby_id,
"ss_id": rom.ss_id,
"sgdb_id": rom.sgdb_id,
"ra_id": rom.ra_id,
"launchbox_id": rom.launchbox_id,
"hasheous_id": rom.hasheous_id,
"tgdb_id": rom.tgdb_id,
"gamelist_id": rom.gamelist_id,
"flashpoint_id": rom.flashpoint_id,
"hltb_id": rom.hltb_id,
"libretro_id": rom.libretro_id,
"igdb_metadata": rom.igdb_metadata,
"moby_metadata": rom.moby_metadata,
"ss_metadata": rom.ss_metadata,
"ra_metadata": rom.ra_metadata,
"launchbox_metadata": rom.launchbox_metadata,
"hasheous_metadata": rom.hasheous_metadata,
"gamelist_metadata": rom.gamelist_metadata,
"flashpoint_metadata": rom.flashpoint_metadata,
"hltb_metadata": rom.hltb_metadata,
}
)
async def fetch_playmatch_hash_match() -> PlaymatchRomMatch:
if (
meta_playmatch_handler.is_enabled()
and MetadataSource.PLAYMATCH in metadata_sources
and any(PLAYMATCH_SUPPORTED_SOURCES.intersection(metadata_sources))
and (
newly_added
or scan_type == ScanType.COMPLETE
or scan_type == ScanType.UPDATE
or scan_type == ScanType.UNMATCHED
)
):
return await meta_playmatch_handler.lookup_rom(fs_rom["files"] or rom.files)
return PlaymatchRomMatch(
igdb_id=None,
moby_id=None,
ss_id=None,
launchbox_id=None,
sgdb_id=None,
ra_id=None,
hasheous_id=None,
tgdb_id=None,
flashpoint_id=None,
hltb_id=None,
libretro_id=None,
gamelist_id=None,
)
async def fetch_hasheous_hash_match() -> HasheousRom:
if (
MetadataSource.HASHEOUS in metadata_sources
and platform.hasheous_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.hasheous_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.hasheous_id or not rom.hasheous_metadata)
and rom.platform_slug in HASHEOUS_PLATFORM_LIST
)
)
):
return await meta_hasheous_handler.lookup_rom(
platform.slug, fs_rom["files"] or rom.files
)
return HasheousRom(hasheous_id=None, igdb_id=None, tgdb_id=None, ra_id=None)
_added_rom = db_rom_handler.add_rom(Rom(**rom_attrs))
_added_rom.is_identifying = True
if socket_manager:
await socket_manager.emit(
"scan:scanning_rom",
{
**SimpleRomSchema.from_orm_with_factory(_added_rom).model_dump(
exclude={
"created_at",
"updated_at",
"rom_user",
"last_modified",
"files",
}
),
},
)
# Run hash fetches concurrently
(
playmatch_hash_match,
hasheous_hash_match,
) = await asyncio.gather(
fetch_playmatch_hash_match(),
fetch_hasheous_hash_match(),
)
async def fetch_igdb_rom(
playmatch_rom: PlaymatchRomMatch, hasheous_rom: HasheousRom
) -> IGDBRom:
if (
MetadataSource.IGDB in metadata_sources
and platform.igdb_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.igdb_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.igdb_id or not rom.igdb_metadata)
and rom.platform_slug in IGDB_PLATFORM_LIST
)
)
):
# Use Hasheous match to get the IGDB ID
h_igdb_id = hasheous_rom.get("igdb_id")
if h_igdb_id:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Hasheous as "
f"{hl(str(h_igdb_id), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
return await meta_igdb_handler.get_rom_by_id(rom, h_igdb_id)
# Use Playmatch matches to get the IGDB ID
if playmatch_rom["igdb_id"] is not None:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Playmatch as "
f"{hl(str(playmatch_rom['igdb_id']), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
return await meta_igdb_handler.get_rom_by_id(
rom, playmatch_rom["igdb_id"]
)
main_platform_igdb_id = get_main_platform_igdb_id(platform)
if scan_type == ScanType.UPDATE and rom.igdb_id:
# Use the ID to refetch the metadata from IGDB
return await meta_igdb_handler.get_rom_by_id(rom, rom.igdb_id)
else:
# If no matches found, use the file name to get the IGDB ID
return await meta_igdb_handler.get_rom(
rom,
rom_attrs["fs_name"],
main_platform_igdb_id or platform.igdb_id,
)
return IGDBRom(igdb_id=None)
async def fetch_gamelist_rom() -> GamelistRom:
if MetadataSource.GAMELIST in metadata_sources and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.gamelist_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.gamelist_id or not rom.gamelist_metadata)
)
):
return await meta_gamelist_handler.get_rom(
rom_attrs["fs_name"], platform, rom
)
return GamelistRom(gamelist_id=None)
async def fetch_flashpoint_rom() -> FlashpointRom:
if (
MetadataSource.FLASHPOINT in metadata_sources
and platform.slug in FLASHPOINT_PLATFORM_LIST
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.flashpoint_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.flashpoint_id or not rom.flashpoint_metadata)
and platform.slug in FLASHPOINT_PLATFORM_LIST
)
)
):
if (scan_type == ScanType.UPDATE and rom.flashpoint_id) or (
scan_type == ScanType.UNMATCHED
and rom.flashpoint_id
and not rom.flashpoint_metadata
):
return await meta_flashpoint_handler.get_rom_by_id(rom.flashpoint_id)
else:
return await meta_flashpoint_handler.get_rom(
rom_attrs["fs_name"], platform.slug
)
return FlashpointRom(flashpoint_id=None)
async def fetch_libretro_rom() -> LibretroRom:
if (
MetadataSource.LIBRETRO in metadata_sources
and platform.slug in LIBRETRO_PLATFORM_LIST
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.libretro_id)
or (scan_type == ScanType.UNMATCHED and not rom.libretro_id)
)
):
return await meta_libretro_handler.get_rom(
rom_attrs["fs_name"], platform.slug
)
return LibretroRom(libretro_id=None)
async def fetch_hltb_rom() -> HLTBRom:
if (
MetadataSource.HLTB in metadata_sources
and platform.slug in HLTB_PLATFORM_LIST
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.hltb_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.hltb_id or not rom.hltb_metadata)
)
)
):
return await meta_hltb_handler.get_rom(rom_attrs["fs_name"], platform.slug)
return HLTBRom(hltb_id=None)
async def fetch_moby_rom(playmatch_rom: PlaymatchRomMatch) -> MobyGamesRom:
if (
MetadataSource.MOBY in metadata_sources
and platform.moby_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.moby_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.moby_id or not rom.moby_metadata)
and rom.platform_slug in MOBYGAMES_PLATFORM_LIST
)
)
):
if scan_type == ScanType.UPDATE and rom.moby_id:
return await meta_moby_handler.get_rom_by_id(rom.moby_id)
if playmatch_rom["moby_id"] is not None:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Playmatch as MobyGames "
f"{hl(str(playmatch_rom['moby_id']), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
return await meta_moby_handler.get_rom_by_id(playmatch_rom["moby_id"])
return await meta_moby_handler.get_rom(
rom_attrs["fs_name"], platform_moby_id=platform.moby_id
)
return MobyGamesRom(moby_id=None)
async def fetch_ss_rom(playmatch_rom: PlaymatchRomMatch) -> SSRom:
if (
MetadataSource.SS in metadata_sources
and platform.ss_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.ss_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.ss_id or not rom.ss_metadata)
and rom.platform_slug in SCREENSAVER_PLATFORM_LIST
)
)
):
# Use the ID to refetch metadata
if scan_type == ScanType.UPDATE and rom.ss_id:
return await meta_ss_handler.get_rom_by_id(rom, rom.ss_id)
# Use Playmatch's hash-based id when available
if playmatch_rom["ss_id"] is not None:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Playmatch as ScreenScraper "
f"{hl(str(playmatch_rom['ss_id']), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
return await meta_ss_handler.get_rom_by_id(rom, playmatch_rom["ss_id"])
# Use the file hashes for lookup
game_by_hash, is_not_game = await meta_ss_handler.lookup_rom(
rom, platform.ss_id, fs_rom["files"] or rom.files
)
if game_by_hash.get("ss_id") or is_not_game:
return game_by_hash
# Fallback to the filename
return await meta_ss_handler.get_rom(
rom, rom_attrs["fs_name"], platform_ss_id=platform.ss_id
)
return SSRom(ss_id=None)
async def fetch_launchbox_rom(
platform_slug: str, playmatch_rom: PlaymatchRomMatch
) -> LaunchboxRom:
if MetadataSource.LAUNCHBOX in metadata_sources and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.launchbox_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.launchbox_id or not rom.launchbox_metadata)
and rom.platform_slug in LAUNCHBOX_PLATFORM_LIST
)
):
if (
scan_type == ScanType.UPDATE
and rom.launchbox_id
and launchbox_remote_enabled
):
launchbox_rom = await meta_launchbox_handler.get_rom_by_id(
rom.launchbox_id,
remote_enabled=True,
fs_name=rom_attrs["fs_name"],
platform_slug=platform_slug,
)
elif (
scan_type == ScanType.UNMATCHED
and rom.launchbox_id
and not rom.launchbox_metadata
and launchbox_remote_enabled
):
# ID was set manually but metadata was never fetched
launchbox_rom = await meta_launchbox_handler.get_rom_by_id(
rom.launchbox_id,
remote_enabled=True,
fs_name=rom_attrs["fs_name"],
platform_slug=platform_slug,
)
elif playmatch_rom["launchbox_id"] is not None and launchbox_remote_enabled:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Playmatch as LaunchBox "
f"{hl(str(playmatch_rom['launchbox_id']), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
launchbox_rom = await meta_launchbox_handler.get_rom_by_id(
playmatch_rom["launchbox_id"],
remote_enabled=True,
fs_name=rom_attrs["fs_name"],
platform_slug=platform_slug,
)
else:
launchbox_rom = await meta_launchbox_handler.get_rom(
rom_attrs["fs_name"],
platform_slug,
remote_enabled=launchbox_remote_enabled,
)
metadata = launchbox_rom.get("launchbox_metadata")
if metadata:
populate_rom_specific_paths(metadata, rom)
return launchbox_rom
return LaunchboxRom(launchbox_id=None)
async def fetch_ra_rom(hasheous_rom: HasheousRom) -> RAGameRom:
if (
MetadataSource.RA in metadata_sources
and platform.ra_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or scan_type == ScanType.HASHES
or (scan_type == ScanType.UPDATE and rom.ra_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.ra_id or not rom.ra_metadata)
and rom.platform_slug in RA_PLATFORM_LIST
)
)
):
# Use Hasheous match to get the RA ID
h_ra_id = hasheous_rom.get("ra_id")
if h_ra_id:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Hasheous as "
f"{hl(str(h_ra_id), color=BLUE)} {emoji.EMOJI_ALIEN_MONSTER}",
extra=LOGGER_MODULE_NAME,
)
return await meta_ra_handler.get_rom_by_id(rom=rom, ra_id=h_ra_id)
if (scan_type == ScanType.UPDATE and rom.ra_id) or (
scan_type == ScanType.UNMATCHED and rom.ra_id and not rom.ra_metadata
):
return await meta_ra_handler.get_rom_by_id(rom=rom, ra_id=rom.ra_id)
else:
return await meta_ra_handler.get_rom(
rom=rom, ra_hash=rom_attrs["ra_hash"]
)
return RAGameRom(ra_id=None)
async def fetch_hasheous_rom(hasheous_rom: HasheousRom) -> HasheousRom:
if (
MetadataSource.HASHEOUS in metadata_sources
and platform.hasheous_id
and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.hasheous_id)
or (
scan_type == ScanType.UNMATCHED
and (not rom.hasheous_id or not rom.hasheous_metadata)
and rom.platform_slug in HASHEOUS_PLATFORM_LIST
)
)
):
(
igdb_game,
ra_game,
) = await asyncio.gather(
meta_hasheous_handler.get_igdb_game(hasheous_rom),
meta_hasheous_handler.get_ra_game(hasheous_rom),
)
return HasheousRom(
{
**hasheous_rom,
**ra_game,
**igdb_game,
}
)
return HasheousRom(hasheous_id=None, igdb_id=None, tgdb_id=None, ra_id=None)
# Run metadata fetches concurrently
(
igdb_handler_rom,
moby_handler_rom,
ss_handler_rom,
ra_handler_rom,
launchbox_handler_rom,
hasheous_handler_rom,
flashpoint_handler_rom,
hltb_handler_rom,
gamelist_handler_rom,
libretro_handler_rom,
) = await asyncio.gather(
fetch_igdb_rom(playmatch_hash_match, hasheous_hash_match),
fetch_moby_rom(playmatch_hash_match),
fetch_ss_rom(playmatch_hash_match),
fetch_ra_rom(hasheous_hash_match),
fetch_launchbox_rom(platform.slug, playmatch_hash_match),
fetch_hasheous_rom(hasheous_hash_match),
fetch_flashpoint_rom(),
fetch_hltb_rom(),
fetch_gamelist_rom(),
fetch_libretro_rom(),
)
metadata_handlers: dict[MetadataSource, dict] = {
MetadataSource.IGDB: {
"handler": igdb_handler_rom,
"id_field": "igdb_id",
"metadata_field": "igdb_metadata",
},
MetadataSource.MOBY: {
"handler": moby_handler_rom,
"id_field": "moby_id",
"metadata_field": "moby_metadata",
},
MetadataSource.SS: {
"handler": ss_handler_rom,
"id_field": "ss_id",
"metadata_field": "ss_metadata",
},
MetadataSource.RA: {
"handler": ra_handler_rom,
"id_field": "ra_id",
"metadata_field": "ra_metadata",
},
MetadataSource.LAUNCHBOX: {
"handler": launchbox_handler_rom,
"id_field": "launchbox_id",
"metadata_field": "launchbox_metadata",
},
MetadataSource.HASHEOUS: {
"handler": hasheous_handler_rom,
"id_field": "hasheous_id",
"metadata_field": "hasheous_metadata",
},
MetadataSource.FLASHPOINT: {
"handler": flashpoint_handler_rom,
"id_field": "flashpoint_id",
"metadata_field": "flashpoint_metadata",
},
MetadataSource.HLTB: {
"handler": hltb_handler_rom,
"id_field": "hltb_id",
"metadata_field": "hltb_metadata",
},
MetadataSource.GAMELIST: {
"handler": gamelist_handler_rom,
"id_field": "gamelist_id",
"metadata_field": "gamelist_metadata",
},
MetadataSource.LIBRETRO: {
"handler": libretro_handler_rom,
"id_field": "libretro_id",
"metadata_field": None,
},
MetadataSource.SGDB: {
"handler": {},
"id_field": "sgdb_id",
"metadata_field": None,
},
MetadataSource.TGDB: {
"handler": {},
"id_field": "tgdb_id",
"metadata_field": None,
},
}
# For COMPLETE rescans, explicitly clear metadata IDs and metadata for unselected sources
# This ensures that when a source is no longer selected, its data is removed from the ROM
if not newly_added and scan_type == ScanType.COMPLETE:
for source, fields in metadata_handlers.items():
if source not in metadata_sources:
rom_attrs[fields["id_field"]] = None
if fields["metadata_field"]:
rom_attrs[fields["metadata_field"]] = {}
# Reset artwork fields so stale values are cleared when no source supplies them
rom_attrs.update(
{
"url_cover": "",
"url_screenshots": [],
"url_manual": "",
"path_cover_s": "",
"path_cover_l": "",
"path_screenshots": [],
"path_manual": "",
}
)
# Determine which metadata sources are available
available_sources = [
name
for name, fields in metadata_handlers.items()
if fields["handler"].get(fields["id_field"])
]
# Apply metadata priority order
priority_ordered = get_priority_ordered_metadata_sources(
available_sources, "metadata"
)
# Reverse priority order to apply highest priority last
for source_name in reversed(priority_ordered):
handler_data = metadata_handlers[source_name]["handler"]
# Only update fields that have valid values
for key, field_value in handler_data.items():
if field_value:
rom_attrs[key] = field_value
# Artwork sources are prioritized separately
priority_ordered_artwork = get_priority_ordered_metadata_sources(
available_sources, "artwork"
)
# Reverse priority order to apply highest priority last
for source_name in reversed(priority_ordered_artwork):
handler_data = metadata_handlers[source_name]["handler"]
for field in ["url_cover", "url_screenshots", "url_manual"]:
# Only update fields that have valid values
field_value = handler_data.get(field)
if field_value:
rom_attrs[field] = field_value
# Don't overwrite existing base fields on update and unmatched scans
if not newly_added and (
scan_type == ScanType.UNMATCHED or scan_type == ScanType.UPDATE
):
rom_attrs.update(
{
"name": rom.name or rom_attrs.get("name") or None,
"summary": rom.summary or rom_attrs.get("summary") or None,
# Don't overwrite existing manually uploaded cover image
"url_cover": (
rom.url_cover
if rom.path_cover_s
else rom_attrs.get("url_cover") or None
),
"url_manual": rom.url_manual or rom_attrs.get("url_manual") or None,
"url_screenshots": rom.url_screenshots
or rom_attrs.get("url_screenshots")
or [],
}
)
# Use PICO-8 cartridge PNG as cover art if no cover is set.
# PICO-8 .p8.png files are valid PNG images whose visual content is the
# cartridge label, so the ROM file itself serves as the cover art.
if not rom_attrs.get("url_cover") and not rom_attrs.get("path_cover_s"):
pico8_url = fs_rom_handler.get_pico8_cover_url(
platform.slug, rom_attrs["fs_name"], rom_attrs["fs_path"]
)
if pico8_url:
rom_attrs["url_cover"] = pico8_url
# If not found in any metadata source, we return the rom with the default values
if (
not rom_attrs.get("igdb_id")
and not rom_attrs.get("moby_id")
and not rom_attrs.get("ss_id")
and not rom_attrs.get("ra_id")
and not rom_attrs.get("launchbox_id")
and not rom_attrs.get("hasheous_id")
and not rom_attrs.get("flashpoint_id")
and not rom_attrs.get("hltb_id")
and not rom_attrs.get("gamelist_id")
):
log.warning(
f"{hl(rom_attrs['fs_name'])} not identified {emoji.EMOJI_CROSS_MARK}",
extra=LOGGER_MODULE_NAME,
)
return Rom(**rom_attrs)
async def fetch_sgdb_details(playmatch_rom: PlaymatchRomMatch) -> SGDBRom:
"""Fetch SteamGridDB details for the ROM."""
if MetadataSource.SGDB in metadata_sources and (
newly_added
or scan_type == ScanType.COMPLETE
or (scan_type == ScanType.UPDATE and rom.sgdb_id)
or (scan_type == ScanType.UNMATCHED and not rom.sgdb_id)
):
if scan_type == ScanType.UPDATE and rom.sgdb_id:
return await meta_sgdb_handler.get_rom_by_id(rom.sgdb_id)
if playmatch_rom["sgdb_id"] is not None:
log.debug(
f"{hl(rom_attrs['fs_name'])} identified by Playmatch as SteamGridDB "