forked from Hay1tsme/artemis
64 lines
3.0 KiB
Python
64 lines
3.0 KiB
Python
#!/usr/bin/env python3
|
|
import argparse
|
|
import yaml
|
|
from os import path, mkdir, access, W_OK
|
|
from core import *
|
|
|
|
from twisted.web import server
|
|
from twisted.internet import reactor, endpoints
|
|
from txroutes import Dispatcher
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="ARTEMiS main entry point")
|
|
parser.add_argument("--config", "-c", type=str, default="config", help="Configuration folder")
|
|
args = parser.parse_args()
|
|
|
|
if not path.exists(f"{args.config}/core.yaml"):
|
|
print(f"The config folder you specified ({args.config}) does not exist or does not contain core.yaml.\nDid you copy the example folder?")
|
|
exit(1)
|
|
|
|
cfg: CoreConfig = CoreConfig()
|
|
cfg.update(yaml.safe_load(open(f"{args.config}/core.yaml")))
|
|
|
|
if not path.exists(cfg.server.log_dir):
|
|
mkdir(cfg.server.log_dir)
|
|
|
|
if not access(cfg.server.log_dir, W_OK):
|
|
print(f"Log directory {cfg.server.log_dir} NOT writable, please check permissions")
|
|
exit(1)
|
|
|
|
if not cfg.aimedb.key:
|
|
print("!!AIMEDB KEY BLANK, SET KEY IN CORE.YAML!!")
|
|
exit(1)
|
|
|
|
print(f"ARTEMiS starting in {'develop' if cfg.server.is_develop else 'production'} mode")
|
|
|
|
allnet_server_str = f"tcp:{cfg.allnet.port}:interface={cfg.server.listen_address}"
|
|
title_server_str = f"tcp:{cfg.title.port}:interface={cfg.server.listen_address}"
|
|
adb_server_str = f"tcp:{cfg.aimedb.port}:interface={cfg.server.listen_address}"
|
|
|
|
billing_server_str = f"tcp:{cfg.billing.port}:interface={cfg.server.listen_address}"
|
|
if cfg.server.is_develop:
|
|
billing_server_str = f"ssl:{cfg.billing.port}:interface={cfg.server.listen_address}"\
|
|
f":privateKey={cfg.billing.ssl_key}:certKey={cfg.billing.ssl_cert}"
|
|
|
|
allnet_cls = AllnetServlet(cfg, args.config)
|
|
title_cls = TitleServlet(cfg, args.config)
|
|
|
|
dispatcher = Dispatcher()
|
|
dispatcher.connect('allnet_poweron', '/sys/servlet/PowerOn', allnet_cls, action='handle_poweron', conditions=dict(method=['POST']))
|
|
dispatcher.connect('allnet_downloadorder', '/sys/servlet/DownloadOrder', allnet_cls, action='handle_dlorder', conditions=dict(method=['POST']))
|
|
dispatcher.connect('allnet_billing', '/request', allnet_cls, action='handle_billing_request', conditions=dict(method=['POST']))
|
|
dispatcher.connect("title_get", "/{game}/{version}/{endpoint}", title_cls, action="handle_GET", conditions=dict(method=['GET']))
|
|
dispatcher.connect("title_post", "/{game}/{version}/{endpoint}", title_cls, action="handle_POST", conditions=dict(method=['POST']))
|
|
|
|
endpoints.serverFromString(reactor, allnet_server_str).listen(server.Site(dispatcher))
|
|
endpoints.serverFromString(reactor, adb_server_str).listen(AimedbFactory(cfg))
|
|
|
|
if cfg.billing.port > 0:
|
|
endpoints.serverFromString(reactor, billing_server_str).listen(server.Site(dispatcher))
|
|
|
|
if cfg.title.port > 0:
|
|
endpoints.serverFromString(reactor, title_server_str).listen(server.Site(dispatcher))
|
|
|
|
reactor.run() # type: ignore |