mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-06 16:07:01 +08:00
refactor(chain): chain 与 module 仅经 run_module 契约互联,实现模块内容封闭
- mTorrent 字幕链接解析下沉为 IndexerModule.site_subtitle_links,subtitle 模块自行跳过 API 站点 - TMDB/MusicBrainz 识别缓存管理改为模块方法(tmdb_cache_*/music_cache_*)经 run_module 分发 - WechatClawBot 客户端查找/临时客户端/缓存迁移内聚为 wechatclawbot_* 模块方法, chain 移除 WechatClawBot 类与 ModuleManager 内省 - LISTENBRAINZ_* 常量迁至 schemas/types.py,模块与链层再导入保持兼容 - TMDbException 升为 schemas/exception.py 跨层契约,vendored 异常保持类身份一致 - 架构守护测试新增 test_chain_does_not_import_module_internals(共 18 项) - 文档同步:chain->module 仅允许 run_module 分发,直接导入禁止
This commit is contained in:
@@ -111,6 +111,19 @@ class MusicBrainzModule(_ModuleBase):
|
||||
self.cache.clear()
|
||||
logger.info("音乐识别缓存清除完成")
|
||||
|
||||
def music_cache_items(self) -> list[dict]:
|
||||
"""查询音乐识别缓存条目列表。"""
|
||||
return self.cache.list_items() if self.cache else []
|
||||
|
||||
def music_cache_delete(self, cache_key: str) -> dict:
|
||||
"""按缓存键删除单条音乐识别缓存。"""
|
||||
return self.cache.delete(cache_key) if self.cache else {}
|
||||
|
||||
def music_cache_clear(self) -> None:
|
||||
"""清空全部音乐识别缓存。"""
|
||||
if self.cache:
|
||||
self.cache.clear()
|
||||
|
||||
def test(self) -> Tuple[bool, str]:
|
||||
"""测试 MusicBrainz 搜索接口连通性。"""
|
||||
result = self._request_json(
|
||||
|
||||
Reference in New Issue
Block a user