mirror of https://github.com/jumpserver/jumpserver
perf: Feishu lark support attributes settings
parent
e93227a53c
commit
836adab5d0
|
@ -1,5 +1,6 @@
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
from rest_framework.exceptions import APIException
|
from rest_framework.exceptions import APIException
|
||||||
|
|
||||||
from common.sdk.im.mixin import RequestMixin, BaseRequest
|
from common.sdk.im.mixin import RequestMixin, BaseRequest
|
||||||
|
@ -53,6 +54,7 @@ class FeishuRequests(BaseRequest):
|
||||||
)
|
)
|
||||||
code_key = 'code'
|
code_key = 'code'
|
||||||
msg_key = 'msg'
|
msg_key = 'msg'
|
||||||
|
url_instance = URL()
|
||||||
|
|
||||||
def __init__(self, app_id, app_secret, timeout=None):
|
def __init__(self, app_id, app_secret, timeout=None):
|
||||||
self._app_id = app_id
|
self._app_id = app_id
|
||||||
|
@ -65,7 +67,7 @@ class FeishuRequests(BaseRequest):
|
||||||
|
|
||||||
def request_access_token(self):
|
def request_access_token(self):
|
||||||
data = {'app_id': self._app_id, 'app_secret': self._app_secret}
|
data = {'app_id': self._app_id, 'app_secret': self._app_secret}
|
||||||
response = self.raw_request('post', url=URL().get_token, data=data)
|
response = self.raw_request('post', url=self.url_instance.get_token, data=data)
|
||||||
self.check_errcode_is_0(response)
|
self.check_errcode_is_0(response)
|
||||||
|
|
||||||
access_token = response['tenant_access_token']
|
access_token = response['tenant_access_token']
|
||||||
|
@ -82,6 +84,7 @@ class FeiShu(RequestMixin):
|
||||||
非业务数据导致的错误直接抛异常,说明是系统配置错误,业务代码不用理会
|
非业务数据导致的错误直接抛异常,说明是系统配置错误,业务代码不用理会
|
||||||
"""
|
"""
|
||||||
requests_cls = FeishuRequests
|
requests_cls = FeishuRequests
|
||||||
|
attributes = settings.LARK_RENAME_ATTRIBUTES
|
||||||
|
|
||||||
def __init__(self, app_id, app_secret, timeout=None):
|
def __init__(self, app_id, app_secret, timeout=None):
|
||||||
self._app_id = app_id or ''
|
self._app_id = app_id or ''
|
||||||
|
@ -92,6 +95,7 @@ class FeiShu(RequestMixin):
|
||||||
app_secret=app_secret,
|
app_secret=app_secret,
|
||||||
timeout=timeout
|
timeout=timeout
|
||||||
)
|
)
|
||||||
|
self.url_instance = self._requests.url_instance
|
||||||
|
|
||||||
def get_user_id_by_code(self, code):
|
def get_user_id_by_code(self, code):
|
||||||
# https://open.feishu.cn/document/ukTMukTMukTM/uEDO4UjLxgDO14SM4gTN
|
# https://open.feishu.cn/document/ukTMukTMukTM/uEDO4UjLxgDO14SM4gTN
|
||||||
|
@ -101,7 +105,7 @@ class FeiShu(RequestMixin):
|
||||||
'code': code
|
'code': code
|
||||||
}
|
}
|
||||||
|
|
||||||
data = self._requests.post(URL().get_user_info_by_code, json=body, check_errcode_is_0=False)
|
data = self._requests.post(self.url_instance.get_user_info_by_code, json=body, check_errcode_is_0=False)
|
||||||
|
|
||||||
self._requests.check_errcode_is_0(data)
|
self._requests.check_errcode_is_0(data)
|
||||||
return data['data']['user_id'], data['data']
|
return data['data']['user_id'], data['data']
|
||||||
|
@ -126,7 +130,7 @@ class FeiShu(RequestMixin):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
logger.info(f'{self.__class__.__name__} send text: user_ids={user_ids} msg={msg}')
|
logger.info(f'{self.__class__.__name__} send text: user_ids={user_ids} msg={msg}')
|
||||||
self._requests.post(URL().send_message, params=params, json=body)
|
self._requests.post(self.url_instance.send_message, params=params, json=body)
|
||||||
except APIException as e:
|
except APIException as e:
|
||||||
# 只处理可预知的错误
|
# 只处理可预知的错误
|
||||||
logger.exception(e)
|
logger.exception(e)
|
||||||
|
@ -134,13 +138,24 @@ class FeiShu(RequestMixin):
|
||||||
return invalid_users
|
return invalid_users
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_user_detail(user_id, **kwargs):
|
def default_user_detail(data):
|
||||||
# get_user_id_by_code 已经返回个人信息,这里直接解析
|
username = data['user_id']
|
||||||
data = kwargs['other_info']
|
|
||||||
username = user_id
|
|
||||||
name = data.get('name', username)
|
name = data.get('name', username)
|
||||||
email = data.get('email') or data.get('enterprise_email')
|
email = data.get('email') or data.get('enterprise_email')
|
||||||
email = construct_user_email(username, email)
|
email = construct_user_email(username, email)
|
||||||
return {
|
return {
|
||||||
'username': username, 'name': name, 'email': email
|
'username': username, 'name': name, 'email': email
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def get_user_detail(self, user_id, **kwargs):
|
||||||
|
# get_user_id_by_code 已经返回个人信息,这里直接解析
|
||||||
|
data = kwargs['other_info']
|
||||||
|
data['user_id'] = user_id
|
||||||
|
detail = self.default_user_detail(data)
|
||||||
|
|
||||||
|
for local_name, remote_name in self.attributes.items():
|
||||||
|
value = data.get(remote_name)
|
||||||
|
if not value:
|
||||||
|
continue
|
||||||
|
detail[local_name] = value
|
||||||
|
return detail
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
from django.conf import settings
|
||||||
|
|
||||||
from common.utils.common import get_logger
|
from common.utils.common import get_logger
|
||||||
from ..feishu import URL as FeiShuURL, FeishuRequests, FeiShu
|
from ..feishu import URL as FeiShuURL, FeishuRequests, FeiShu
|
||||||
|
|
||||||
|
@ -9,8 +11,9 @@ class URL(FeiShuURL):
|
||||||
|
|
||||||
|
|
||||||
class LarkRequests(FeishuRequests):
|
class LarkRequests(FeishuRequests):
|
||||||
pass
|
url_instance = URL()
|
||||||
|
|
||||||
|
|
||||||
class Lark(FeiShu):
|
class Lark(FeiShu):
|
||||||
requests_cls = LarkRequests
|
requests_cls = LarkRequests
|
||||||
|
attributes = settings.LARK_RENAME_ATTRIBUTES
|
||||||
|
|
|
@ -408,11 +408,21 @@ class Config(dict):
|
||||||
'AUTH_FEISHU': False,
|
'AUTH_FEISHU': False,
|
||||||
'FEISHU_APP_ID': '',
|
'FEISHU_APP_ID': '',
|
||||||
'FEISHU_APP_SECRET': '',
|
'FEISHU_APP_SECRET': '',
|
||||||
|
'FEISHU_RENAME_ATTRIBUTES': {
|
||||||
|
'name': 'name',
|
||||||
|
'username': 'user_id',
|
||||||
|
'email': 'enterprise_email'
|
||||||
|
},
|
||||||
|
|
||||||
# Lark
|
# Lark
|
||||||
'AUTH_LARK': False,
|
'AUTH_LARK': False,
|
||||||
'LARK_APP_ID': '',
|
'LARK_APP_ID': '',
|
||||||
'LARK_APP_SECRET': '',
|
'LARK_APP_SECRET': '',
|
||||||
|
'LARK_RENAME_ATTRIBUTES': {
|
||||||
|
'name': 'en_name',
|
||||||
|
'username': 'user_id',
|
||||||
|
'email': 'enterprise_email'
|
||||||
|
},
|
||||||
|
|
||||||
# Slack
|
# Slack
|
||||||
'AUTH_SLACK': False,
|
'AUTH_SLACK': False,
|
||||||
|
|
|
@ -141,10 +141,12 @@ DINGTALK_APPSECRET = CONFIG.DINGTALK_APPSECRET
|
||||||
AUTH_FEISHU = CONFIG.AUTH_FEISHU
|
AUTH_FEISHU = CONFIG.AUTH_FEISHU
|
||||||
FEISHU_APP_ID = CONFIG.FEISHU_APP_ID
|
FEISHU_APP_ID = CONFIG.FEISHU_APP_ID
|
||||||
FEISHU_APP_SECRET = CONFIG.FEISHU_APP_SECRET
|
FEISHU_APP_SECRET = CONFIG.FEISHU_APP_SECRET
|
||||||
|
FEISHU_RENAME_ATTRIBUTES = CONFIG.FEISHU_RENAME_ATTRIBUTES
|
||||||
|
|
||||||
AUTH_LARK = CONFIG.AUTH_LARK
|
AUTH_LARK = CONFIG.AUTH_LARK
|
||||||
LARK_APP_ID = CONFIG.LARK_APP_ID
|
LARK_APP_ID = CONFIG.LARK_APP_ID
|
||||||
LARK_APP_SECRET = CONFIG.LARK_APP_SECRET
|
LARK_APP_SECRET = CONFIG.LARK_APP_SECRET
|
||||||
|
LARK_RENAME_ATTRIBUTES = CONFIG.LARK_RENAME_ATTRIBUTES
|
||||||
|
|
||||||
# Slack auth
|
# Slack auth
|
||||||
AUTH_SLACK = CONFIG.AUTH_SLACK
|
AUTH_SLACK = CONFIG.AUTH_SLACK
|
||||||
|
|
|
@ -5,6 +5,7 @@ from rest_framework.generics import GenericAPIView
|
||||||
from rest_framework.views import Response
|
from rest_framework.views import Response
|
||||||
|
|
||||||
from common.sdk.im.feishu import FeiShu
|
from common.sdk.im.feishu import FeiShu
|
||||||
|
from common.sdk.im.lark import Lark
|
||||||
from settings.models import Setting
|
from settings.models import Setting
|
||||||
from .. import serializers
|
from .. import serializers
|
||||||
|
|
||||||
|
@ -30,8 +31,10 @@ class FeiShuTestingAPI(GenericAPIView):
|
||||||
|
|
||||||
app_secret = app_secret or ''
|
app_secret = app_secret or ''
|
||||||
|
|
||||||
|
auth_cls = FeiShu if self.category == 'FEISHU' else Lark
|
||||||
|
|
||||||
try:
|
try:
|
||||||
feishu = FeiShu(app_id=app_id, app_secret=app_secret)
|
feishu = auth_cls(app_id=app_id, app_secret=app_secret)
|
||||||
feishu.send_text(['test'], 'test')
|
feishu.send_text(['test'], 'test')
|
||||||
return Response(status=status.HTTP_200_OK, data={'msg': _('Test success')})
|
return Response(status=status.HTTP_200_OK, data={'msg': _('Test success')})
|
||||||
except APIException as e:
|
except APIException as e:
|
||||||
|
@ -40,8 +43,3 @@ class FeiShuTestingAPI(GenericAPIView):
|
||||||
except:
|
except:
|
||||||
error = e.detail
|
error = e.detail
|
||||||
return Response(status=status.HTTP_400_BAD_REQUEST, data={'error': error})
|
return Response(status=status.HTTP_400_BAD_REQUEST, data={'error': error})
|
||||||
|
|
||||||
|
|
||||||
class LarkTestingAPI(FeiShuTestingAPI):
|
|
||||||
category = 'LARK'
|
|
||||||
serializer_class = serializers.LarkSettingSerializer
|
|
||||||
|
|
|
@ -12,3 +12,10 @@ class FeiShuSettingSerializer(serializers.Serializer):
|
||||||
AUTH_FEISHU = serializers.BooleanField(default=False, label=_('FeiShu'))
|
AUTH_FEISHU = serializers.BooleanField(default=False, label=_('FeiShu'))
|
||||||
FEISHU_APP_ID = serializers.CharField(max_length=256, required=True, label='App ID')
|
FEISHU_APP_ID = serializers.CharField(max_length=256, required=True, label='App ID')
|
||||||
FEISHU_APP_SECRET = EncryptedField(max_length=256, required=False, label='App Secret')
|
FEISHU_APP_SECRET = EncryptedField(max_length=256, required=False, label='App Secret')
|
||||||
|
FEISHU_RENAME_ATTRIBUTES = serializers.JSONField(
|
||||||
|
required=False, label=_('User attribute'),
|
||||||
|
help_text=_(
|
||||||
|
"User attribute mapping, where the `key` is the CAS service user attribute name "
|
||||||
|
"and the `value` is the JumpServer user attribute name"
|
||||||
|
)
|
||||||
|
)
|
|
@ -12,3 +12,10 @@ class LarkSettingSerializer(serializers.Serializer):
|
||||||
AUTH_LARK = serializers.BooleanField(default=False, label=_('Lark'))
|
AUTH_LARK = serializers.BooleanField(default=False, label=_('Lark'))
|
||||||
LARK_APP_ID = serializers.CharField(max_length=256, required=True, label='App ID')
|
LARK_APP_ID = serializers.CharField(max_length=256, required=True, label='App ID')
|
||||||
LARK_APP_SECRET = EncryptedField(max_length=256, required=False, label='App Secret')
|
LARK_APP_SECRET = EncryptedField(max_length=256, required=False, label='App Secret')
|
||||||
|
LARK_RENAME_ATTRIBUTES = serializers.JSONField(
|
||||||
|
required=False, label=_('User attribute'),
|
||||||
|
help_text=_(
|
||||||
|
"User attribute mapping, where the `key` is the CAS service user attribute name "
|
||||||
|
"and the `value` is the JumpServer user attribute name"
|
||||||
|
)
|
||||||
|
)
|
Loading…
Reference in New Issue