mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-04 23:17:20 +08:00
- notification 域:渠道能力(MessageChannel→NotificationChannel、ChannelCapability* 迁入 notification.py) - message 域:消息收发(Notification→Message、NotificationType→MessageType、CommingMessage→IncomingMessage、NotificationHistoryItem→MessageHistoryItem、NotificationClear*→MessageClear*) - Agent 工具契约:send_notification_message→send_message、notification_callback→message_callback - 源码不保留旧名物理别名,旧导入经 app/runtime/compat/manifest.py SYMBOL_ALIASES 惰性解析 - API 路径与持久化键冻结不变,前端零改动 - 新增兼容守护测试与 docs/rules/07 命名边界规范
112 lines
4.1 KiB
Python
112 lines
4.1 KiB
Python
from typing import Dict, List, Optional, Type, TypeVar, Generic, Iterator
|
|
|
|
from app.db.oper.systemconfig import SystemConfigOper
|
|
from app.runtime.extensions.module_manager import ModuleManager
|
|
from app.runtime.extensions.service_config import ServiceConfigHelper
|
|
from app.schemas import ServiceInfo
|
|
from app.schemas.types import SystemConfigKey, ModuleType
|
|
|
|
TConf = TypeVar("TConf")
|
|
|
|
__all__ = [
|
|
"ServiceBaseHelper",
|
|
"ServiceConfigHelper",
|
|
"SystemConfigOper",
|
|
]
|
|
|
|
|
|
class ServiceBaseHelper(Generic[TConf]):
|
|
"""
|
|
通用服务帮助类,抽象获取配置和服务实例的通用逻辑
|
|
"""
|
|
|
|
def __init__(self, config_key: SystemConfigKey, conf_type: Type[TConf], module_type: ModuleType):
|
|
"""绑定服务配置类型与对应的运行模块类型。"""
|
|
self.modulemanager = ModuleManager()
|
|
self.config_key = config_key
|
|
self.conf_type = conf_type
|
|
self.module_type = module_type
|
|
|
|
def get_configs(self, include_disabled: bool = False) -> Dict[str, TConf]:
|
|
"""
|
|
获取配置列表
|
|
|
|
:param include_disabled: 是否包含禁用的配置,默认 False(仅返回启用的配置)
|
|
:return: 配置字典
|
|
"""
|
|
configs: List[TConf] = ServiceConfigHelper.get_configs(self.config_key, self.conf_type)
|
|
return {
|
|
config.name: config
|
|
for config in configs
|
|
if (config.name and config.type and config.enabled) or include_disabled
|
|
} if configs else {}
|
|
|
|
def get_config(self, name: str) -> Optional[TConf]:
|
|
"""
|
|
获取指定名称配置
|
|
"""
|
|
if not name:
|
|
return None
|
|
configs = self.get_configs()
|
|
return configs.get(name)
|
|
|
|
def iterate_module_instances(self) -> Iterator[ServiceInfo]:
|
|
"""
|
|
迭代所有模块的实例及其对应的配置,返回 ServiceInfo 实例
|
|
"""
|
|
configs = self.get_configs()
|
|
for module in self.modulemanager.get_running_type_modules(self.module_type):
|
|
if not module:
|
|
continue
|
|
module_instances = module.get_instances()
|
|
if not isinstance(module_instances, dict):
|
|
continue
|
|
for name, instance in module_instances.items():
|
|
if not instance:
|
|
continue
|
|
config = configs.get(name)
|
|
service_info = ServiceInfo(
|
|
name=name,
|
|
instance=instance,
|
|
module=module,
|
|
type=config.type if config else None,
|
|
config=config
|
|
)
|
|
yield service_info
|
|
|
|
def get_services(self, type_filter: Optional[str] = None, name_filters: Optional[List[str]] = None) \
|
|
-> Dict[str, ServiceInfo]:
|
|
"""
|
|
获取服务信息列表,并根据类型和名称列表进行过滤
|
|
|
|
:param type_filter: 需要过滤的服务类型
|
|
:param name_filters: 需要过滤的服务名称列表
|
|
:return: 过滤后的服务信息字典
|
|
"""
|
|
name_filters_set = set(name_filters) if name_filters else None
|
|
|
|
return {
|
|
service_info.name: service_info
|
|
for service_info in self.iterate_module_instances()
|
|
if service_info.config and (
|
|
type_filter is None or service_info.type == type_filter
|
|
) and (
|
|
name_filters_set is None or service_info.name in name_filters_set)
|
|
}
|
|
|
|
def get_service(self, name: str, type_filter: Optional[str] = None) -> Optional[ServiceInfo]:
|
|
"""
|
|
获取指定名称的服务信息,并根据类型过滤
|
|
|
|
:param name: 服务名称
|
|
:param type_filter: 需要过滤的服务类型
|
|
:return: 对应的服务信息,若不存在或类型不匹配则返回 None
|
|
"""
|
|
if not name:
|
|
return None
|
|
for service_info in self.iterate_module_instances():
|
|
if service_info.name == name:
|
|
if service_info.config and (type_filter is None or service_info.type == type_filter):
|
|
return service_info
|
|
return None
|