mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-01 01:10:21 +08:00
* Revert "fix SQLAlchemy compatibility issues on macOS (#7724)"
This reverts commit 2d78626840.
* fix
* chore: add busy timeout pragma
154 lines
5.1 KiB
Python
154 lines
5.1 KiB
Python
import argparse
|
||
import asyncio
|
||
import mimetypes
|
||
import os
|
||
import sys
|
||
from pathlib import Path
|
||
|
||
import runtime_bootstrap
|
||
|
||
runtime_bootstrap.initialize_runtime_bootstrap()
|
||
|
||
from astrbot.core import LogBroker, LogManager, db_helper, logger # noqa: E402
|
||
from astrbot.core.config.default import VERSION # noqa: E402
|
||
from astrbot.core.initial_loader import InitialLoader # noqa: E402
|
||
from astrbot.core.utils.astrbot_path import ( # noqa: E402
|
||
get_astrbot_config_path,
|
||
get_astrbot_data_path,
|
||
get_astrbot_knowledge_base_path,
|
||
get_astrbot_plugin_path,
|
||
get_astrbot_root,
|
||
get_astrbot_site_packages_path,
|
||
get_astrbot_temp_path,
|
||
)
|
||
from astrbot.core.utils.io import ( # noqa: E402
|
||
download_dashboard,
|
||
get_bundled_dashboard_dist_path,
|
||
get_dashboard_version,
|
||
should_use_bundled_dashboard_dist,
|
||
)
|
||
from astrbot.core.utils.runtime_env import is_packaged_desktop_runtime # noqa: E402
|
||
|
||
# 将父目录添加到 sys.path
|
||
sys.path.append(Path(__file__).parent.as_posix())
|
||
|
||
logo_tmpl = r"""
|
||
___ _______.___________..______ .______ ______ .___________.
|
||
/ \ / | || _ \ | _ \ / __ \ | |
|
||
/ ^ \ | (----`---| |----`| |_) | | |_) | | | | | `---| |----`
|
||
/ /_\ \ \ \ | | | / | _ < | | | | | |
|
||
/ _____ \ .----) | | | | |\ \----.| |_) | | `--' | | |
|
||
/__/ \__\ |_______/ |__| | _| `._____||______/ \______/ |__|
|
||
|
||
"""
|
||
|
||
|
||
def check_env() -> None:
|
||
if not (sys.version_info.major == 3 and sys.version_info.minor >= 10):
|
||
logger.error("请使用 Python3.10+ 运行本项目。")
|
||
exit()
|
||
|
||
astrbot_root = get_astrbot_root()
|
||
if astrbot_root not in sys.path:
|
||
sys.path.insert(0, astrbot_root)
|
||
|
||
site_packages_path = get_astrbot_site_packages_path()
|
||
if not is_packaged_desktop_runtime() and site_packages_path not in sys.path:
|
||
sys.path.append(site_packages_path)
|
||
|
||
os.makedirs(get_astrbot_config_path(), exist_ok=True)
|
||
os.makedirs(get_astrbot_plugin_path(), exist_ok=True)
|
||
os.makedirs(get_astrbot_temp_path(), exist_ok=True)
|
||
os.makedirs(get_astrbot_knowledge_base_path(), exist_ok=True)
|
||
os.makedirs(site_packages_path, exist_ok=True)
|
||
|
||
# 针对问题 #181 的临时解决方案
|
||
mimetypes.add_type("text/javascript", ".js")
|
||
mimetypes.add_type("text/javascript", ".mjs")
|
||
mimetypes.add_type("application/json", ".json")
|
||
|
||
|
||
async def check_dashboard_files(webui_dir: str | None = None):
|
||
"""下载管理面板文件"""
|
||
# 指定webui目录
|
||
if webui_dir:
|
||
if os.path.exists(webui_dir):
|
||
logger.info("Using WebUI directory: %s", webui_dir)
|
||
return webui_dir
|
||
logger.warning("WebUI directory not found: %s. Using default.", webui_dir)
|
||
|
||
data_dist_path = os.path.join(get_astrbot_data_path(), "dist")
|
||
if os.path.exists(data_dist_path):
|
||
v = await get_dashboard_version()
|
||
if should_use_bundled_dashboard_dist(data_dist_path, VERSION):
|
||
bundled_dist = get_bundled_dashboard_dist_path()
|
||
logger.info(
|
||
"Using bundled WebUI because data/dist is older than core version v%s.",
|
||
VERSION,
|
||
)
|
||
return str(bundled_dist)
|
||
if v is not None:
|
||
# 存在文件
|
||
if v == f"v{VERSION}":
|
||
logger.info("WebUI is up to date.")
|
||
else:
|
||
logger.warning(
|
||
"WebUI version mismatch: %s, expected v%s.",
|
||
v,
|
||
VERSION,
|
||
)
|
||
return data_dist_path
|
||
|
||
logger.info(
|
||
"Downloading WebUI. If it fails, download dist.zip from https://github.com/AstrBotDevs/AstrBot/releases/latest and extract dist to data/.",
|
||
)
|
||
|
||
try:
|
||
await download_dashboard(version=f"v{VERSION}", latest=False)
|
||
except Exception as e:
|
||
logger.critical(f"下载管理面板文件失败: {e}。")
|
||
return None
|
||
|
||
logger.info("管理面板下载完成。")
|
||
return data_dist_path
|
||
|
||
|
||
async def main_async(webui_dir_arg: str | None) -> None:
|
||
"""主异步入口"""
|
||
# 检查仪表板文件
|
||
webui_dir = await check_dashboard_files(webui_dir_arg)
|
||
if webui_dir is None:
|
||
logger.warning(
|
||
"管理面板文件检查失败,WebUI 功能将不可用。"
|
||
"请检查网络连接或手动指定 --webui-dir 参数。"
|
||
)
|
||
|
||
db = db_helper
|
||
|
||
# 打印 logo
|
||
logger.info(logo_tmpl)
|
||
|
||
core_lifecycle = InitialLoader(db, log_broker)
|
||
core_lifecycle.webui_dir = webui_dir
|
||
await core_lifecycle.start()
|
||
|
||
|
||
if __name__ == "__main__":
|
||
parser = argparse.ArgumentParser(description="AstrBot")
|
||
parser.add_argument(
|
||
"--webui-dir",
|
||
type=str,
|
||
help="Specify the directory path for WebUI static files",
|
||
default=None,
|
||
)
|
||
args = parser.parse_args()
|
||
|
||
check_env()
|
||
|
||
# 启动日志代理
|
||
log_broker = LogBroker()
|
||
LogManager.set_queue_handler(logger, log_broker)
|
||
|
||
# 只使用一次 asyncio.run()
|
||
asyncio.run(main_async(args.webui_dir))
|