mirror of https://github.com/jumpserver/jumpserver
20 lines
593 B
Python
20 lines
593 B
Python
![]() |
from django.conf import settings
|
||
|
from common.message.backends.dingtalk import DingTalk as Client
|
||
|
from .base import BackendBase
|
||
|
|
||
|
|
||
|
class DingTalk(BackendBase):
|
||
|
account_field = 'dingtalk_id'
|
||
|
is_enable_field_in_settings = 'AUTH_DINGTALK'
|
||
|
|
||
|
def __init__(self):
|
||
|
self.dingtalk = Client(
|
||
|
appid=settings.DINGTALK_APPKEY,
|
||
|
appsecret=settings.DINGTALK_APPSECRET,
|
||
|
agentid=settings.DINGTALK_AGENTID
|
||
|
)
|
||
|
|
||
|
def send_msg(self, users, msg):
|
||
|
accounts, __, __ = self.get_accounts(users)
|
||
|
return self.dingtalk.send_text(accounts, msg)
|