0b7fc29ac4
Co-authored-by: Dt8333 <25431943+Dt8333@users.noreply.github.com> Co-authored-by: Soulter <905617992@qq.com>
70 lines
2.0 KiB
Python
70 lines
2.0 KiB
Python
import os
|
|
|
|
from astrbot.api import logger, sp
|
|
from astrbot.core.config import AstrBotConfig
|
|
from astrbot.core.db import BaseDatabase
|
|
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
|
|
|
|
from .migra_3_to_4 import (
|
|
migration_conversation_table,
|
|
migration_persona_data,
|
|
migration_platform_table,
|
|
migration_preferences,
|
|
migration_webchat_data,
|
|
)
|
|
|
|
|
|
async def check_migration_needed_v4(db_helper: BaseDatabase) -> bool:
|
|
"""检查是否需要进行数据库迁移
|
|
如果存在 data_v3.db 并且 preference 中没有 migration_done_v4,则需要进行迁移。
|
|
"""
|
|
# 仅当 data 目录下存在旧版本数据(data_v3.db 文件)时才考虑迁移
|
|
data_dir = get_astrbot_data_path()
|
|
data_v3_db = os.path.join(data_dir, "data_v3.db")
|
|
|
|
if not os.path.exists(data_v3_db):
|
|
return False
|
|
migration_done = await db_helper.get_preference(
|
|
"global",
|
|
"global",
|
|
"migration_done_v4",
|
|
)
|
|
if migration_done:
|
|
return False
|
|
return True
|
|
|
|
|
|
async def do_migration_v4(
|
|
db_helper: BaseDatabase,
|
|
platform_id_map: dict[str, dict[str, str]],
|
|
astrbot_config: AstrBotConfig,
|
|
) -> None:
|
|
"""执行数据库迁移
|
|
迁移旧的 webchat_conversation 表到新的 conversation 表。
|
|
迁移旧的 platform 到新的 platform_stats 表。
|
|
"""
|
|
if not await check_migration_needed_v4(db_helper):
|
|
return
|
|
|
|
logger.info("开始执行数据库迁移...")
|
|
|
|
# 执行会话表迁移
|
|
await migration_conversation_table(db_helper, platform_id_map)
|
|
|
|
# 执行人格数据迁移
|
|
await migration_persona_data(db_helper, astrbot_config)
|
|
|
|
# 执行 WebChat 数据迁移
|
|
await migration_webchat_data(db_helper, platform_id_map)
|
|
|
|
# 执行偏好设置迁移
|
|
await migration_preferences(db_helper, platform_id_map)
|
|
|
|
# 执行平台统计表迁移
|
|
await migration_platform_table(db_helper, platform_id_map)
|
|
|
|
# 标记迁移完成
|
|
await sp.put_async("global", "global", "migration_done_v4", True)
|
|
|
|
logger.info("数据库迁移完成。")
|