feat: 拆分 feishu lark

This commit is contained in:
feng
2024-03-22 18:05:43 +08:00
committed by Bryan
parent ccd4f3ada4
commit 470a088a9f
34 changed files with 329 additions and 75 deletions

View File

@@ -0,0 +1,23 @@
from django.conf import settings
from common.sdk.im.lark import Lark as Client
from .base import BackendBase
class Lark(BackendBase):
account_field = 'lark_id'
is_enable_field_in_settings = 'AUTH_LARK'
def __init__(self):
self.client = Client(
app_id=settings.LARK_APP_ID,
app_secret=settings.LARK_APP_SECRET
)
def send_msg(self, users, message, subject=None):
accounts, __, __ = self.get_accounts(users)
print('lark', message)
return self.client.send_text(accounts, message)
backend = Lark