JoeanAmier d1bca5a896 perf: 优化重定向链接获取逻辑
1. 更新 chunk 参数默认值
2. 更新配置文件参数说明

Closes #138
Closes #139
2024-08-04 15:35:23 +08:00

72 lines
2.0 KiB
Python

from json import dump
from json import load
from pathlib import Path
from platform import system
from .static import ROOT
from .static import SEC_CH_UA
from .static import SEC_CH_UA_PLATFORM
from .static import USERAGENT
__all__ = ['Settings']
class Settings:
default = {
"work_path": "",
"folder_name": "Download",
"name_format": "发布时间 作者昵称 作品标题",
"sec_ch_ua": SEC_CH_UA,
"sec_ch_ua_platform": SEC_CH_UA_PLATFORM,
"user_agent": USERAGENT,
"cookie": "",
"proxy": None,
"timeout": 10,
"chunk": 1024 * 1024 * 2,
"max_retry": 5,
"record_data": False,
"image_format": "PNG",
"image_download": True,
"video_download": True,
"live_download": False,
"folder_mode": False,
"download_record": True,
"language": "zh_CN",
# "server": False,
}
encode = "UTF-8-SIG" if system() == "Windows" else "UTF-8"
def __init__(self, root: Path = ROOT):
self.file = root.joinpath("./settings.json")
def run(self):
return self.read() if self.file.is_file() else self.create()
def read(self) -> dict:
with self.file.open("r", encoding=self.encode) as f:
return load(f)
def create(self) -> dict:
with self.file.open("w", encoding=self.encode) as f:
dump(self.default, f, indent=4, ensure_ascii=False)
return self.default
def update(self, data: dict):
with self.file.open("w", encoding=self.encode) as f:
dump(data, f, indent=4, ensure_ascii=False)
@classmethod
def check_keys(
cls,
data: dict,
callback: callable,
*args,
**kwargs,
) -> dict:
needful_keys = set(cls.default.keys())
given_keys = set(data.keys())
if not needful_keys.issubset(given_keys):
callback(*args, **kwargs)
return cls.default
return data