2023-07-24 02:21:41 +00:00
|
|
|
from typing import Optional, Dict, List
|
|
|
|
from sqlalchemy import Table, Column, and_, or_
|
2023-02-16 05:06:42 +00:00
|
|
|
from sqlalchemy.sql.schema import ForeignKey, PrimaryKeyConstraint
|
2023-07-24 02:21:41 +00:00
|
|
|
from sqlalchemy.types import Integer, String, Boolean, JSON
|
2023-02-16 05:06:42 +00:00
|
|
|
from sqlalchemy.sql import func, select
|
|
|
|
from sqlalchemy.dialects.mysql import insert
|
2023-07-24 02:21:41 +00:00
|
|
|
from sqlalchemy.engine import Row
|
2023-03-03 22:05:16 +00:00
|
|
|
import re
|
2023-02-16 05:06:42 +00:00
|
|
|
|
|
|
|
from core.data.schema.base import BaseData, metadata
|
2023-03-03 22:05:16 +00:00
|
|
|
from core.const import *
|
2023-02-16 05:06:42 +00:00
|
|
|
|
|
|
|
arcade = Table(
|
|
|
|
"arcade",
|
|
|
|
metadata,
|
|
|
|
Column("id", Integer, primary_key=True, nullable=False),
|
|
|
|
Column("name", String(255)),
|
2023-03-09 16:38:58 +00:00
|
|
|
Column("nickname", String(255)),
|
2023-02-16 05:06:42 +00:00
|
|
|
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 14:17:56 +00:00
|
|
|
Column("ip", String(39)),
|
2023-03-09 16:38:58 +00:00
|
|
|
mysql_charset="utf8mb4",
|
2023-02-16 05:06:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
machine = Table(
|
|
|
|
"machine",
|
|
|
|
metadata,
|
|
|
|
Column("id", Integer, primary_key=True, nullable=False),
|
2023-03-09 16:38:58 +00:00
|
|
|
Column(
|
|
|
|
"arcade",
|
|
|
|
ForeignKey("arcade.id", ondelete="cascade", onupdate="cascade"),
|
|
|
|
nullable=False,
|
|
|
|
),
|
2023-02-16 05:06:42 +00:00
|
|
|
Column("serial", String(15), nullable=False),
|
|
|
|
Column("board", String(15)),
|
|
|
|
Column("game", String(4)),
|
2023-03-09 16:38:58 +00:00
|
|
|
Column("country", String(3)), # overwrites if not null
|
2023-02-16 05:06:42 +00:00
|
|
|
Column("timezone", String(255)),
|
|
|
|
Column("ota_enable", Boolean),
|
2023-07-24 02:21:41 +00:00
|
|
|
Column("memo", String(255)),
|
|
|
|
Column("is_cab", Boolean),
|
|
|
|
Column("data", JSON),
|
2023-03-09 16:38:58 +00:00
|
|
|
mysql_charset="utf8mb4",
|
2023-02-16 05:06:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
arcade_owner = Table(
|
2023-03-09 16:38:58 +00:00
|
|
|
"arcade_owner",
|
2023-02-16 05:06:42 +00:00
|
|
|
metadata,
|
2023-03-09 16:38:58 +00: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-02-16 05:06:42 +00:00
|
|
|
)
|
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-16 05:06:42 +00:00
|
|
|
class ArcadeData(BaseData):
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_machine(self, serial: str = None, id: int = None) -> Optional[Row]:
|
2023-02-16 05:06:42 +00:00
|
|
|
if serial is not None:
|
2023-03-03 20:03:57 +00:00
|
|
|
serial = serial.replace("-", "")
|
|
|
|
if len(serial) == 11:
|
|
|
|
sql = machine.select(machine.c.serial.like(f"{serial}%"))
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-03-03 20:03:57 +00:00
|
|
|
elif len(serial) == 15:
|
|
|
|
sql = machine.select(machine.c.serial == serial)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-03-03 20:03:57 +00:00
|
|
|
else:
|
|
|
|
self.logger.error(f"{__name__ }: Malformed serial {serial}")
|
|
|
|
return None
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-16 05:06:42 +00:00
|
|
|
elif id is not None:
|
|
|
|
sql = machine.select(machine.c.id == id)
|
2023-03-09 16:38:58 +00:00
|
|
|
|
|
|
|
else:
|
2023-02-16 05:06:42 +00:00
|
|
|
self.logger.error(f"{__name__ }: Need either serial or ID to look up!")
|
|
|
|
return None
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.fetchone()
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def put_machine(
|
2023-03-09 16:38:58 +00:00
|
|
|
self,
|
|
|
|
arcade_id: int,
|
|
|
|
serial: str = "",
|
|
|
|
board: str = None,
|
|
|
|
game: str = None,
|
|
|
|
is_cab: bool = False,
|
|
|
|
) -> Optional[int]:
|
2023-02-16 05:06:42 +00:00
|
|
|
if arcade_id:
|
|
|
|
self.logger.error(f"{__name__ }: Need arcade id!")
|
|
|
|
return None
|
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
sql = machine.insert().values(
|
|
|
|
arcade=arcade_id, keychip=serial, board=board, game=game, is_cab=is_cab
|
|
|
|
)
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.lastrowid
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def set_machine_serial(self, machine_id: int, serial: str) -> None:
|
|
|
|
result = await self.execute(
|
2023-03-09 16:38:58 +00:00
|
|
|
machine.update(machine.c.id == machine_id).values(keychip=serial)
|
|
|
|
)
|
2023-03-03 22:05:16 +00:00
|
|
|
if result is None:
|
2023-03-09 16:38:58 +00:00
|
|
|
self.logger.error(
|
|
|
|
f"Failed to update serial for machine {machine_id} -> {serial}"
|
|
|
|
)
|
2023-03-03 22:05:16 +00:00
|
|
|
return result.lastrowid
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def set_machine_boardid(self, machine_id: int, boardid: str) -> None:
|
|
|
|
result = await self.execute(
|
2023-03-09 16:38:58 +00:00
|
|
|
machine.update(machine.c.id == machine_id).values(board=boardid)
|
|
|
|
)
|
2023-03-03 22:05:16 +00:00
|
|
|
if result is None:
|
2023-03-09 16:38:58 +00:00
|
|
|
self.logger.error(
|
|
|
|
f"Failed to update board id for machine {machine_id} -> {boardid}"
|
|
|
|
)
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcade(self, id: int) -> Optional[Row]:
|
2023-02-16 05:06:42 +00:00
|
|
|
sql = arcade.select(arcade.c.id == id)
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.fetchone()
|
2023-07-24 02:21:41 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcade_machines(self, id: int) -> Optional[List[Row]]:
|
2023-07-24 02:21:41 +00:00
|
|
|
sql = machine.select(machine.c.arcade == id)
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-07-24 02:21:41 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
|
|
|
return result.fetchall()
|
2023-02-16 05:06:42 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def put_arcade(
|
2023-03-09 16:38:58 +00:00
|
|
|
self,
|
|
|
|
name: str,
|
|
|
|
nickname: str = None,
|
|
|
|
country: str = "JPN",
|
|
|
|
country_id: int = 1,
|
|
|
|
state: str = "",
|
|
|
|
city: str = "",
|
|
|
|
regional_id: int = 1,
|
|
|
|
) -> 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,
|
|
|
|
regional_id=regional_id,
|
|
|
|
)
|
2023-02-16 05:06:42 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.lastrowid
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcades_managed_by_user(self, user_id: int) -> Optional[List[Row]]:
|
2023-07-24 02:21:41 +00:00
|
|
|
sql = select(arcade).join(arcade_owner, arcade_owner.c.arcade == arcade.c.id).where(arcade_owner.c.user == user_id)
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-07-24 02:21:41 +00:00
|
|
|
if result is None:
|
|
|
|
return False
|
|
|
|
return result.fetchall()
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_manager_permissions(self, user_id: int, arcade_id: int) -> Optional[int]:
|
2023-07-24 02:21:41 +00:00
|
|
|
sql = select(arcade_owner.c.permissions).where(and_(arcade_owner.c.user == user_id, arcade_owner.c.arcade == arcade_id))
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-07-24 02:21:41 +00:00
|
|
|
if result is None:
|
|
|
|
return False
|
|
|
|
return result.fetchone()
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcade_owners(self, arcade_id: int) -> Optional[Row]:
|
2023-03-09 16:38:58 +00:00
|
|
|
sql = select(arcade_owner).where(arcade_owner.c.arcade == arcade_id)
|
2023-02-16 05:06:42 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.fetchall()
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def add_arcade_owner(self, arcade_id: int, user_id: int) -> None:
|
2023-03-09 16:38:58 +00:00
|
|
|
sql = insert(arcade_owner).values(arcade=arcade_id, user=user_id)
|
2023-02-16 05:06:42 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-03-09 16:38:58 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-02-16 05:06:42 +00:00
|
|
|
return result.lastrowid
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def format_serial(
|
2023-03-09 16:38:58 +00:00
|
|
|
self, platform_code: str, platform_rev: int, serial_num: int, append: int = 4152
|
|
|
|
) -> str:
|
|
|
|
return f"{platform_code}{platform_rev:02d}A{serial_num:04d}{append:04d}" # 0x41 = A, 0x52 = R
|
|
|
|
|
2023-03-03 22:05:16 +00:00
|
|
|
def validate_keychip_format(self, serial: str) -> bool:
|
2023-08-08 16:35:38 +00:00
|
|
|
if re.fullmatch(r"^A[0-9]{2}[E|X][-]?[0-9]{2}[A-HJ-NP-Z][0-9]{4}([0-9]{4})?$", serial) is None:
|
2023-03-03 22:05:16 +00:00
|
|
|
return False
|
2023-08-08 16:35:38 +00:00
|
|
|
|
2023-03-03 22:05:16 +00:00
|
|
|
return True
|
2023-07-24 02:21:41 +00:00
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcade_by_name(self, name: str) -> Optional[List[Row]]:
|
2023-07-24 02:21:41 +00:00
|
|
|
sql = arcade.select(or_(arcade.c.name.like(f"%{name}%"), arcade.c.nickname.like(f"%{name}%")))
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-07-24 02:21:41 +00:00
|
|
|
if result is None:
|
2023-09-19 06:31:29 +00:00
|
|
|
return None
|
|
|
|
return result.fetchall()
|
|
|
|
|
2024-01-09 19:42:17 +00:00
|
|
|
async def get_arcades_by_ip(self, ip: str) -> Optional[List[Row]]:
|
2023-09-19 06:31:29 +00:00
|
|
|
sql = arcade.select().where(arcade.c.ip == ip)
|
2024-01-09 19:42:17 +00:00
|
|
|
result = await self.execute(sql)
|
2023-09-19 06:31:29 +00:00
|
|
|
if result is None:
|
|
|
|
return None
|
2023-07-24 02:21:41 +00:00
|
|
|
return result.fetchall()
|