feat(notification): add Feishu notification channel support

This commit is contained in:
jxxghp
2026-05-12 21:40:55 +08:00
parent b172a6d08f
commit 624862dfc6
10 changed files with 756 additions and 1 deletions

View File

@@ -0,0 +1,178 @@
import asyncio
import json
import threading
from typing import Any, Dict, List, Optional, Tuple, Union
from app.core.context import Context, MediaInfo
from app.log import logger
from app.modules import _ModuleBase, _MessageBase
from app.modules.feishu.feishu import Feishu
from app.schemas import CommingMessage, MessageChannel, MessageResponse, Notification
from app.schemas.types import ModuleType
class FeishuModule(_ModuleBase, _MessageBase[Feishu]):
def init_module(self) -> None:
self.stop()
super().init_service(service_name=Feishu.__name__.lower(), service_type=Feishu)
self._channel = MessageChannel.Feishu
@staticmethod
def get_name() -> str:
return "飞书"
@staticmethod
def get_type() -> ModuleType:
return ModuleType.Notification
@staticmethod
def get_subtype() -> MessageChannel:
return MessageChannel.Feishu
@staticmethod
def get_priority() -> int:
return 2
def stop(self):
for client in self.get_instances().values():
if hasattr(client, "stop"):
try:
client.stop()
except Exception as err:
logger.error(f"停止飞书模块实例失败:{err}")
def test(self) -> Optional[Tuple[bool, str]]:
if not self.get_instances():
return None
for name, client in self.get_instances().items():
state = client.get_state()
if not state:
return False, f"飞书 {name} 未就绪"
return True, ""
def init_setting(self) -> Tuple[str, Union[str, bool]]:
"""通知模块通过系统通知配置控制实例化,这里不额外设置环境开关。"""
return None
def message_parser(
self, source: str, body: Any, form: Any, args: Any
) -> Optional[CommingMessage]:
client_config = self.get_config(source)
if not client_config:
return None
client: Feishu = self.get_instance(client_config.name)
if not client:
return None
return client.parse_message(body)
def post_message(self, message: Notification, **kwargs) -> None:
for conf in self.get_configs().values():
if not self.check_message(message, conf.name):
continue
targets = message.targets
userid = message.userid
chat_id = None
if not userid and targets is not None:
userid = targets.get("feishu_userid") or targets.get("feishu_openid")
chat_id = targets.get("feishu_chat_id")
client: Feishu = self.get_instance(conf.name)
if client:
client.send_notification(
message=message,
userid=str(userid).strip() if userid else None,
chat_id=str(chat_id).strip() if chat_id else None,
)
def post_medias_message(self, message: Notification, medias: List[MediaInfo]) -> None:
for conf in self.get_configs().values():
if not self.check_message(message, conf.name):
continue
client: Feishu = self.get_instance(conf.name)
if client:
client.send_medias_message(message=message, medias=medias)
def post_torrents_message(self, message: Notification, torrents: List[Context]) -> None:
for conf in self.get_configs().values():
if not self.check_message(message, conf.name):
continue
client: Feishu = self.get_instance(conf.name)
if client:
client.send_torrents_message(message=message, torrents=torrents)
def edit_message(
self,
channel: MessageChannel,
source: str,
message_id: Union[str, int],
chat_id: Union[str, int],
text: str,
title: Optional[str] = None,
buttons: Optional[List[List[dict]]] = None,
) -> bool:
if channel != self._channel:
return False
for conf in self.get_configs().values():
if source != conf.name:
continue
client: Feishu = self.get_instance(conf.name)
if client and client.edit_message(
message_id=str(message_id),
title=title,
text=text,
buttons=buttons,
):
return True
return False
def send_direct_message(self, message: Notification) -> Optional[MessageResponse]:
for conf in self.get_configs().values():
if not self.check_message(message, conf.name):
continue
targets = message.targets
userid = message.userid
chat_id = None
if not userid and targets is not None:
userid = targets.get("feishu_userid") or targets.get("feishu_openid")
chat_id = targets.get("feishu_chat_id")
client: Feishu = self.get_instance(conf.name)
if not client:
continue
result = client.send_notification(
message=message,
userid=str(userid).strip() if userid else None,
chat_id=str(chat_id).strip() if chat_id else None,
)
if result and result.get("success"):
return MessageResponse(
message_id=result.get("message_id"),
chat_id=result.get("chat_id"),
channel=MessageChannel.Feishu,
source=conf.name,
success=True,
)
return None
def run_async(coro):
try:
loop = asyncio.get_running_loop()
except RuntimeError:
return asyncio.run(coro)
result: Dict[str, Any] = {}
error: Dict[str, BaseException] = {}
done = threading.Event()
def runner():
try:
result["value"] = asyncio.run(coro)
except BaseException as err:
error["value"] = err
finally:
done.set()
threading.Thread(target=runner, daemon=True).start()
done.wait()
if error.get("value"):
raise error["value"]
return result.get("value")