MonkeyBusiness/pyeamu.py

183 lines
4.9 KiB
Python
Raw Normal View History

2022-08-26 12:39:11 +02:00
from urllib.parse import urlunparse, urlencode
import uvicorn
2022-12-18 00:08:29 +01:00
import ujson as json
from os import path
2022-08-26 12:39:11 +02:00
from fastapi import FastAPI, Request, Response
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from starlette.responses import RedirectResponse
2022-08-26 12:39:11 +02:00
import config
import modules
import utils.card as conv
2022-08-26 12:39:11 +02:00
from core_common import core_process_request, core_prepare_response, E
2022-11-15 15:03:37 +01:00
def urlpathjoin(parts, sep="/"):
2022-08-26 12:39:11 +02:00
return sep + sep.join([x.lstrip(sep) for x in parts])
server_address = f"{config.ip}:{config.port}"
2022-11-15 15:03:37 +01:00
server_services_url = urlunparse(
("http", server_address, config.services_prefix, None, None, None)
)
2022-09-06 01:42:04 +02:00
keepalive_address = "127.0.0.1"
2022-08-26 12:39:11 +02:00
settings = {}
for s in (
"ip",
"port",
"services_prefix",
"verbose_log",
"arcade",
"paseli",
"maintenance_mode",
):
settings[s] = getattr(config, s)
2022-08-26 12:39:11 +02:00
app = FastAPI()
for router in modules.routers:
app.include_router(router)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
if path.exists("webui"):
webui = True
with open(path.join("webui", "monkey.json"), "w") as f:
2023-03-02 12:47:04 +01:00
json.dump(settings, f, indent=2, escape_forward_slashes=False)
app.mount("/webui", StaticFiles(directory="webui", html=True), name="webui")
else:
webui = False
@app.get("/webui")
async def redirect_to_config():
return RedirectResponse(url="/config")
2022-08-26 12:39:11 +02:00
if __name__ == "__main__":
print(" __ __ _ ")
print("| \/ | ___ _ __ | | _____ _ _ ")
print("| |\/| |/ _ \| '_ \| |/ / _ \ | | |")
print("| | | | (_) | | | | < __/ |_| |")
print("|_| |_|\___/|_| |_|_|\_\___|\__, |")
print(" |___/ ")
print(" ____ _ ")
print("| __ ) _ _ ___(_)_ __ ___ ___ ___ ")
print("| _ \| | | / __| | '_ \ / _ \/ __/ __|")
print("| |_) | |_| \__ \ | | | | __/\__ \__ \\")
print("|____/ \__,_|___/_|_| |_|\___||___/___/")
print()
print("Game Config:")
2022-08-26 12:39:11 +02:00
print(f"<services>{server_services_url}</services>")
2022-11-15 15:03:37 +01:00
print('<url_slash __type="bool">1</url_slash>')
2022-08-26 12:39:11 +02:00
print()
if webui:
print("Web Interface:")
print(f"http://{server_address}/webui/")
print()
print("Source Repository:")
print("https://github.com/drmext/MonkeyBusiness")
print()
2022-08-26 12:39:11 +02:00
uvicorn.run("pyeamu:app", host=config.ip, port=config.port, reload=True)
@app.post(urlpathjoin([config.services_prefix, "/{gameinfo}/services/get"]))
async def services_get(request: Request):
request_info = await core_process_request(request)
services = {}
for service in modules.routers:
2022-11-15 15:03:37 +01:00
model_blacklist = services.get("model_blacklist", [])
model_whitelist = services.get("model_whitelist", [])
2022-08-26 12:39:11 +02:00
2022-11-15 15:03:37 +01:00
if request_info["model"] in model_blacklist:
2022-08-26 12:39:11 +02:00
continue
2022-11-15 15:03:37 +01:00
if model_whitelist and request_info["model"] not in model_whitelist:
2022-08-26 12:39:11 +02:00
continue
2022-11-15 15:03:37 +01:00
k = (service.tags[0] if service.tags else service.prefix).strip("/")
2022-08-26 12:39:11 +02:00
if k not in services:
2022-11-15 15:03:37 +01:00
services[k] = urlunparse(
("http", server_address, service.prefix, None, None, None)
)
2022-08-26 12:39:11 +02:00
keepalive_params = {
2022-09-06 01:42:04 +02:00
"pa": keepalive_address,
"ia": keepalive_address,
"ga": keepalive_address,
"ma": keepalive_address,
2022-08-26 12:39:11 +02:00
"t1": 2,
"t2": 10,
}
2022-11-15 15:03:37 +01:00
services["keepalive"] = urlunparse(
(
"http",
keepalive_address,
"/keepalive",
None,
urlencode(keepalive_params),
None,
)
)
services["ntp"] = urlunparse(("ntp", "pool.ntp.org", "/", None, None, None))
services["services"] = urlunparse(
("http", server_address, "/core", None, None, None)
)
2022-08-26 12:39:11 +02:00
response = E.response(
E.services(
expire=10800,
2022-11-15 15:03:37 +01:00
mode="operation",
2022-08-26 12:39:11 +02:00
product_domain=1,
2022-11-15 15:03:37 +01:00
*[E.item(name=k, url=services[k]) for k in services],
2022-08-26 12:39:11 +02:00
)
)
response_body, response_headers = await core_prepare_response(request, response)
return Response(content=response_body, headers=response_headers)
@app.get("/")
async def redirect_to_webui():
return RedirectResponse(url="/webui")
@app.get("/config")
async def get_config():
return settings
@app.get("/conv/{card}")
async def card_conv(card: str):
card = card.upper()
lookalike = {
"I": "1",
"O": "0",
"Q": "0",
"V": "U",
}
for k, v in lookalike.items():
card = card.replace(k, v)
if card.startswith("E004") or card.startswith("012E"):
card = "".join([c for c in card if c in "0123456789ABCDEF"])
uid = card
kid = conv.to_konami_id(card)
else:
card = "".join([c for c in card if c in conv.valid_characters])
uid = conv.to_uid(card)
kid = card
return {"uid": uid, "konami_id": kid}