Fix importing from AGB
This commit is contained in:
2
vrobbler/apps/videogames/exceptions.py
Normal file
2
vrobbler/apps/videogames/exceptions.py
Normal file
@ -0,0 +1,2 @@
|
||||
class GameNotFound(Exception):
|
||||
pass
|
||||
@ -14,6 +14,7 @@ from videogames.models import VideoGame
|
||||
from videogames.scrapers import scrape_game_name_from_adb
|
||||
from videogames.utils import get_or_create_videogame
|
||||
from vrobbler.apps.scrobbles.exceptions import UserNotFound
|
||||
from vrobbler.apps.videogames.exceptions import GameNotFound
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@ -44,9 +45,7 @@ def load_game_data(directory_path: str, user_tz=None) -> dict:
|
||||
for file in os.listdir(directory):
|
||||
filename = os.fsdecode(file)
|
||||
if not filename.endswith("lrtl"):
|
||||
logger.info(
|
||||
f"Found non-gamelog file extension, skipping {filename}"
|
||||
)
|
||||
logger.info(f'Skipping "{filename}", not lrtl file')
|
||||
continue
|
||||
|
||||
game_name = filename.split(".lrtl")[0].split(" (")[0]
|
||||
@ -94,14 +93,26 @@ def import_retroarch_lrtl_files(playlog_path: str, user_id: int) -> List[dict]:
|
||||
for game_name, game_data in game_logs.items():
|
||||
# Use the retroarch name, because we can't change those but may want to
|
||||
# tweak the found game
|
||||
mame_name = scrape_game_name_from_adb(game_name)
|
||||
logger.info(f"Received name {game_name}")
|
||||
try:
|
||||
mame_name = scrape_game_name_from_adb(game_name)
|
||||
except GameNotFound as e:
|
||||
logger.warning(e)
|
||||
continue
|
||||
|
||||
if mame_name:
|
||||
logger.info(f"Found name {game_name}")
|
||||
game_name = mame_name
|
||||
|
||||
found_game = VideoGame.objects.filter(retroarch_name=game_name).first()
|
||||
|
||||
if not found_game:
|
||||
found_game = get_or_create_videogame(game_name)
|
||||
try:
|
||||
found_game = get_or_create_videogame(game_name)
|
||||
except GameNotFound as e:
|
||||
logger.warning(f"Game not found for: {e}")
|
||||
continue
|
||||
|
||||
if found_game:
|
||||
found_game.retroarch_name = game_name
|
||||
found_game.save(update_fields=["retroarch_name"])
|
||||
@ -112,9 +123,7 @@ def import_retroarch_lrtl_files(playlog_path: str, user_id: int) -> List[dict]:
|
||||
stop_timestamp=end_datetime
|
||||
)
|
||||
if found_scrobble:
|
||||
logger.info(
|
||||
f"Found scrobble for {game_name} with stop_timestamp {end_datetime}, not scrobbling"
|
||||
)
|
||||
logger.info(f"Skipping scrobble for game {found_game.id}")
|
||||
continue
|
||||
last_scrobble = found_game.scrobble_set.last()
|
||||
|
||||
@ -148,4 +157,5 @@ def import_retroarch_lrtl_files(playlog_path: str, user_id: int) -> List[dict]:
|
||||
)
|
||||
)
|
||||
created_scrobbles = Scrobble.objects.bulk_create(new_scrobbles)
|
||||
logger.info(f"Created {len(created_scrobbles)} scrobbles")
|
||||
return new_scrobbles
|
||||
|
||||
@ -4,6 +4,8 @@ from typing import Optional
|
||||
import requests
|
||||
from bs4 import BeautifulSoup
|
||||
|
||||
from vrobbler.apps.videogames.exceptions import GameNotFound
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
MAME_LOOKUP_URL = "http://adb.arcadeitalia.net/dettaglio_mame.php?game_name={query}&search_id=2"
|
||||
@ -26,11 +28,14 @@ def scrape_game_name_from_adb(name: str) -> str:
|
||||
title = ""
|
||||
headers = {"User-Agent": "Vrobbler 0.11.12"}
|
||||
url = MAME_LOOKUP_URL.format(query=name)
|
||||
r = requests.get(url, headers=headers)
|
||||
if r.status_code == 200:
|
||||
soup = BeautifulSoup(r.text, "html.parser")
|
||||
title = _get_title_from_soup(soup).split(" (")[0].split(" / ")[0]
|
||||
resp = requests.get(url, headers=headers)
|
||||
if not resp.ok:
|
||||
raise GameNotFound(f"Lookup failed with code {resp.status_code}")
|
||||
|
||||
soup = BeautifulSoup(resp.text, "html.parser")
|
||||
title = _get_title_from_soup(soup).split(" (")[0].split(" / ")[0]
|
||||
|
||||
logger.info(f"Found title {title}")
|
||||
if title == "Arcade Database":
|
||||
title = ""
|
||||
|
||||
|
||||
@ -3,10 +3,11 @@ from typing import Optional
|
||||
|
||||
import requests
|
||||
from django.core.files.base import ContentFile
|
||||
from videogames.models import VideoGame, VideoGamePlatform
|
||||
|
||||
from videogames.howlongtobeat import lookup_game_from_hltb
|
||||
from videogames.igdb import lookup_game_from_igdb
|
||||
from videogames.models import VideoGame, VideoGamePlatform
|
||||
|
||||
from vrobbler.apps.videogames.exceptions import GameNotFound
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@ -45,16 +46,24 @@ def get_or_create_videogame(
|
||||
if "genres" in game_dict.keys():
|
||||
genres = game_dict.pop("genres")
|
||||
|
||||
title = game_dict.get("title")
|
||||
if not title:
|
||||
raise GameNotFound(name_or_id)
|
||||
|
||||
hltb_id = game_dict.get("hltb_id")
|
||||
igdb_id = game_dict.get("igdb_id")
|
||||
if hltb_id:
|
||||
game, game_created = VideoGame.objects.get_or_create(hltb_id=hltb_id)
|
||||
elif igdb_id:
|
||||
game, game_created = VideoGame.objects.get_or_create(igdb_id=igdb_id)
|
||||
else:
|
||||
game, game_created = VideoGame.objects.get_or_create(
|
||||
title=game_dict.get("title")
|
||||
hltb_id=hltb_id,
|
||||
title=title,
|
||||
)
|
||||
elif igdb_id:
|
||||
game, game_created = VideoGame.objects.get_or_create(
|
||||
igdb_id=igdb_id,
|
||||
title=title,
|
||||
)
|
||||
else:
|
||||
game, game_created = VideoGame.objects.get_or_create(title=title)
|
||||
|
||||
if game_created or force_update:
|
||||
VideoGame.objects.filter(pk=game.id).update(**game_dict)
|
||||
|
||||
Reference in New Issue
Block a user