1
0
mirror of synced 2025-02-15 18:02:39 +01:00
artemis/core/data/schema/arcade.py

272 lines
8.8 KiB
Python
Raw Normal View History

2024-11-14 12:36:22 +07:00
import re
from typing import List, Optional
from sqlalchemy import Column, Table, and_, or_
from sqlalchemy.dialects.mysql import insert
from sqlalchemy.engine import Row
2024-11-14 12:36:22 +07:00
from sqlalchemy.sql import func, select
from sqlalchemy.sql.schema import ForeignKey, PrimaryKeyConstraint
from sqlalchemy.types import JSON, Boolean, Integer, String
from core.data.schema.base import BaseData, metadata
2024-11-14 12:36:22 +07:00
arcade: Table = Table(
"arcade",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
Column("name", String(255)),
2023-03-09 11:38:58 -05:00
Column("nickname", String(255)),
Column("country", String(3)),
Column("country_id", Integer),
Column("state", String(255)),
Column("city", String(255)),
Column("region_id", Integer),
Column("timezone", String(255)),
2023-08-08 10:17:56 -04:00
Column("ip", String(39)),
2023-03-09 11:38:58 -05:00
mysql_charset="utf8mb4",
)
2024-11-14 12:36:22 +07:00
machine: Table = Table(
"machine",
metadata,
Column("id", Integer, primary_key=True, nullable=False),
2023-03-09 11:38:58 -05:00
Column(
"arcade",
ForeignKey("arcade.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("serial", String(15), nullable=False),
Column("board", String(15)),
Column("game", String(4)),
2023-03-09 11:38:58 -05:00
Column("country", String(3)), # overwrites if not null
Column("timezone", String(255)),
Column("ota_enable", Boolean),
Column("memo", String(255)),
Column("is_cab", Boolean),
Column("data", JSON),
2023-03-09 11:38:58 -05:00
mysql_charset="utf8mb4",
)
2024-11-14 12:36:22 +07:00
arcade_owner: Table = Table(
2023-03-09 11:38:58 -05:00
"arcade_owner",
metadata,
2023-03-09 11:38:58 -05:00
Column(
"user",
Integer,
ForeignKey("aime_user.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column(
"arcade",
Integer,
ForeignKey("arcade.id", ondelete="cascade", onupdate="cascade"),
nullable=False,
),
Column("permissions", Integer, nullable=False),
PrimaryKeyConstraint("user", "arcade", name="arcade_owner_pk"),
mysql_charset="utf8mb4",
)
2023-03-09 11:38:58 -05:00
class ArcadeData(BaseData):
2024-11-14 12:36:22 +07:00
async def get_machine(self, serial: Optional[str] = None, id: Optional[int] = None) -> Optional[Row]:
if serial is not None:
2023-03-03 15:03:57 -05:00
serial = serial.replace("-", "")
if len(serial) == 11:
sql = machine.select(machine.c.serial.like(f"{serial}%"))
2023-03-09 11:38:58 -05:00
2023-03-03 15:03:57 -05:00
elif len(serial) == 15:
sql = machine.select(machine.c.serial == serial)
2023-03-09 11:38:58 -05:00
2023-03-03 15:03:57 -05:00
else:
self.logger.error(f"{__name__ }: Malformed serial {serial}")
return None
2023-03-09 11:38:58 -05:00
elif id is not None:
sql = machine.select(machine.c.id == id)
2023-03-09 11:38:58 -05:00
else:
self.logger.error(f"{__name__ }: Need either serial or ID to look up!")
return None
2023-03-09 11:38:58 -05:00
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.fetchone()
2023-03-09 11:38:58 -05:00
async def create_machine(
2023-03-09 11:38:58 -05:00
self,
arcade_id: int,
serial: str = "",
2024-11-14 12:36:22 +07:00
board: Optional[str] = None,
game: Optional[str] = None,
2023-03-09 11:38:58 -05:00
is_cab: bool = False,
) -> Optional[int]:
if not arcade_id:
self.logger.error(f"{__name__ }: Need arcade id!")
return None
2023-03-09 11:38:58 -05:00
sql = machine.insert().values(
arcade=arcade_id, serial=serial, board=board, game=game, is_cab=is_cab
2023-03-09 11:38:58 -05:00
)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.lastrowid
2023-03-09 11:38:58 -05:00
2024-01-09 14:42:17 -05:00
async def set_machine_serial(self, machine_id: int, serial: str) -> None:
result = await self.execute(
2023-03-09 11:38:58 -05:00
machine.update(machine.c.id == machine_id).values(keychip=serial)
)
if result is None:
2023-03-09 11:38:58 -05:00
self.logger.error(
f"Failed to update serial for machine {machine_id} -> {serial}"
)
return result.lastrowid
2023-03-09 11:38:58 -05:00
2024-01-09 14:42:17 -05:00
async def set_machine_boardid(self, machine_id: int, boardid: str) -> None:
result = await self.execute(
2023-03-09 11:38:58 -05:00
machine.update(machine.c.id == machine_id).values(board=boardid)
)
if result is None:
2023-03-09 11:38:58 -05:00
self.logger.error(
f"Failed to update board id for machine {machine_id} -> {boardid}"
)
2024-01-09 14:42:17 -05:00
async def get_arcade(self, id: int) -> Optional[Row]:
sql = arcade.select(arcade.c.id == id)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.fetchone()
2024-01-09 14:42:17 -05:00
async def get_arcade_machines(self, id: int) -> Optional[List[Row]]:
sql = machine.select(machine.c.arcade == id)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
if result is None:
return None
return result.fetchall()
async def create_arcade(
2023-03-09 11:38:58 -05:00
self,
2024-11-14 12:36:22 +07:00
name: Optional[str] = None,
nickname: Optional[str] = None,
2023-03-09 11:38:58 -05:00
country: str = "JPN",
country_id: int = 1,
state: str = "",
city: str = "",
region_id: int = 1,
2023-03-09 11:38:58 -05:00
) -> Optional[int]:
if nickname is None:
nickname = name
sql = arcade.insert().values(
name=name,
nickname=nickname,
country=country,
country_id=country_id,
state=state,
city=city,
region_id=region_id,
2023-03-09 11:38:58 -05:00
)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.lastrowid
2024-01-09 14:42:17 -05:00
async def get_arcades_managed_by_user(self, user_id: int) -> Optional[List[Row]]:
sql = select(arcade).join(arcade_owner, arcade_owner.c.arcade == arcade.c.id).where(arcade_owner.c.user == user_id)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
if result is None:
return False
return result.fetchall()
2024-01-09 14:42:17 -05:00
async def get_manager_permissions(self, user_id: int, arcade_id: int) -> Optional[int]:
sql = select(arcade_owner.c.permissions).where(and_(arcade_owner.c.user == user_id, arcade_owner.c.arcade == arcade_id))
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
if result is None:
return False
return result.fetchone()
2024-01-09 14:42:17 -05:00
async def get_arcade_owners(self, arcade_id: int) -> Optional[Row]:
2023-03-09 11:38:58 -05:00
sql = select(arcade_owner).where(arcade_owner.c.arcade == arcade_id)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.fetchall()
2024-01-09 14:42:17 -05:00
async def add_arcade_owner(self, arcade_id: int, user_id: int) -> None:
2023-03-09 11:38:58 -05:00
sql = insert(arcade_owner).values(arcade=arcade_id, user=user_id)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
2023-03-09 11:38:58 -05:00
if result is None:
return None
return result.lastrowid
2024-01-09 14:42:17 -05:00
async def get_arcade_by_name(self, name: str) -> Optional[List[Row]]:
sql = arcade.select(or_(arcade.c.name.like(f"%{name}%"), arcade.c.nickname.like(f"%{name}%")))
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
if result is None:
return None
return result.fetchall()
2024-01-09 14:42:17 -05:00
async def get_arcades_by_ip(self, ip: str) -> Optional[List[Row]]:
sql = arcade.select().where(arcade.c.ip == ip)
2024-01-09 14:42:17 -05:00
result = await self.execute(sql)
if result is None:
return None
return result.fetchall()
2024-07-09 15:10:42 -04:00
async def get_num_generated_keychips(self) -> Optional[int]:
result = await self.execute(select(func.count("serial LIKE 'A69A%'")).select_from(machine))
if result:
return result.fetchone()['count_1']
self.logger.error("Failed to count machine serials that start with A69A!")
def format_serial(
self, platform_code: str, platform_rev: int, serial_letter: str, serial_num: int, append: int, dash: bool = False
) -> str:
return f"{platform_code}{'-' if dash else ''}{platform_rev:02d}{serial_letter}{serial_num:04d}{append:04d}"
def validate_keychip_format(self, serial: str) -> bool:
# For the 2nd letter, E and X are the only "real" values that have been observed (A is used for generated keychips)
2024-07-09 15:10:42 -04:00
if re.fullmatch(r"^A[0-9]{2}[A-Z][-]?[0-9]{2}[A-HJ-NP-Z][0-9]{4}([0-9]{4})?$", serial) is None:
return False
return True
# Thanks bottersnike!
def get_keychip_suffix(self, year: int, month: int) -> str:
assert year > 1957
assert 1 <= month <= 12
year -= 1957
# Jan/Feb/Mar are from the previous tax year
if month < 4:
year -= 1
assert year >= 1 and year <= 99
month = ((month - 1) + 9) % 12 # Offset so April=0
return f"{year:02}{month // 6:01}{month % 6 + 1:01}"
def parse_keychip_suffix(self, suffix: str) -> tuple[int, int]:
year = int(suffix[0:2])
half = int(suffix[2])
assert half in (0, 1)
period = int(suffix[3])
assert period in (1, 2, 3, 4, 5, 6)
month = half * 6 + (period - 1)
month = ((month + 3) % 12) + 1 # Offset so Jan=1
# Jan/Feb/Mar are from the previous tax year
if month < 4:
year += 1
year += 1957
return (year, month)