You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/apps/notifications/backends/feishu.py

25 lines
607 B

from django.conf import settings
from common.sdk.im.feishu import FeiShu as Client
from .base import BackendBase
class FeiShu(BackendBase):
account_field = 'feishu_id'
is_enable_field_in_settings = 'AUTH_FEISHU'
def __init__(self):
self.client = Client(
app_id=settings.FEISHU_APP_ID,
app_secret=settings.FEISHU_APP_SECRET
)
def send_msg(self, users, message, subject=None):
accounts, __, __ = self.get_accounts(users)
if not accounts:
return
return self.client.send_text(accounts, message)
backend = FeiShu