forked from Dniel97/artemis
beerpsi
a8daa0344a
Similar to O.N.G.E.K.I. and CHUNITHM, with the caveat that the obfuscated endpoint is created using `md5(endpoint + salt)` instead of using PBKDF2 like other games. Tested and confirmed working on FESTiVAL+. The current implementation is also affected by #129, so I'm open to ideas. Reviewed-on: Hay1tsme/artemis#130 Co-authored-by: beerpsi <beerpsi@duck.com> Co-committed-by: beerpsi <beerpsi@duck.com>
103 lines
2.8 KiB
Python
103 lines
2.8 KiB
Python
from typing import Dict
|
|
|
|
from core.config import CoreConfig
|
|
|
|
|
|
class Mai2ServerConfig:
|
|
def __init__(self, parent: "Mai2Config") -> None:
|
|
self.__config = parent
|
|
|
|
@property
|
|
def enable(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "server", "enable", default=True
|
|
)
|
|
|
|
@property
|
|
def loglevel(self) -> int:
|
|
return CoreConfig.str_to_loglevel(
|
|
CoreConfig.get_config_field(
|
|
self.__config, "mai2", "server", "loglevel", default="info"
|
|
)
|
|
)
|
|
|
|
class Mai2DeliverConfig:
|
|
def __init__(self, parent: "Mai2Config") -> None:
|
|
self.__config = parent
|
|
|
|
@property
|
|
def enable(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "deliver", "enable", default=False
|
|
)
|
|
|
|
@property
|
|
def udbdl_enable(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "deliver", "udbdl_enable", default=False
|
|
)
|
|
|
|
@property
|
|
def content_folder(self) -> int:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "deliver", "content_folder", default=""
|
|
)
|
|
|
|
class Mai2UploadsConfig:
|
|
def __init__(self, parent: "Mai2Config") -> None:
|
|
self.__config = parent
|
|
|
|
@property
|
|
def photos(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "uploads", "photos", default=False
|
|
)
|
|
|
|
@property
|
|
def photos_dir(self) -> str:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "uploads", "photos_dir", default=""
|
|
)
|
|
|
|
@property
|
|
def movies(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "uploads", "movies", default=False
|
|
)
|
|
|
|
@property
|
|
def movies_dir(self) -> str:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "uploads", "movies_dir", default=""
|
|
)
|
|
|
|
|
|
class Mai2CryptoConfig:
|
|
def __init__(self, parent_config: "Mai2Config") -> None:
|
|
self.__config = parent_config
|
|
|
|
@property
|
|
def keys(self) -> Dict[int, list[str]]:
|
|
"""
|
|
in the form of:
|
|
internal_version: [key, iv, salt]
|
|
key and iv are hex strings
|
|
salt is a normal UTF-8 string
|
|
"""
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "crypto", "keys", default={}
|
|
)
|
|
|
|
@property
|
|
def encrypted_only(self) -> bool:
|
|
return CoreConfig.get_config_field(
|
|
self.__config, "mai2", "crypto", "encrypted_only", default=False
|
|
)
|
|
|
|
|
|
class Mai2Config(dict):
|
|
def __init__(self) -> None:
|
|
self.server = Mai2ServerConfig(self)
|
|
self.deliver = Mai2DeliverConfig(self)
|
|
self.uploads = Mai2UploadsConfig(self)
|
|
self.crypto = Mai2CryptoConfig(self) |