Browse Source

fix: message publish_task args,kwargs can json encode (#13797)

* fix: message publish_task args,kwargs can json encode

* perf: Update Dockerfile with new base image tag

---------

Co-authored-by: wangruidong <940853815@qq.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13804/head
fit2bot 4 months ago committed by GitHub
parent
commit
4887b21d35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      Dockerfile
  2. 47
      apps/notifications/notifications.py
  3. 1
      apps/ops/signal_handlers.py

2
Dockerfile

@ -1,4 +1,4 @@
FROM jumpserver/core-base:20240724_024214 AS stage-build
FROM jumpserver/core-base:20240724_070705 AS stage-build
ARG VERSION

47
apps/notifications/notifications.py

@ -44,8 +44,8 @@ class MessageType(type):
@shared_task(verbose_name=_('Publish the station message'))
def publish_task(msg):
msg.publish()
def publish_task(receive_user_ids, backends_msg_mapper):
Message.send_msg(receive_user_ids, backends_msg_mapper)
class Message(metaclass=MessageType):
@ -65,27 +65,35 @@ class Message(metaclass=MessageType):
return cls.__name__
def publish_async(self):
return publish_task.delay(self)
self.publish(is_async=True)
@classmethod
def gen_test_msg(cls):
raise NotImplementedError
def publish(self):
def publish(self, is_async=False):
raise NotImplementedError
def send_msg(self, users: Iterable, backends: Iterable = BACKEND):
def get_backend_msg_mapper(self, backends):
backends = set(backends)
backends.add(BACKEND.SITE_MSG) # 站内信必须发
backends_msg_mapper = {}
for backend in backends:
backend = BACKEND(backend)
if not backend.is_enable:
continue
get_msg_method = getattr(self, f'get_{backend}_msg', self.get_common_msg)
msg = get_msg_method()
backends_msg_mapper[backend] = msg
return backends_msg_mapper
@staticmethod
def send_msg(receive_user_ids, backends_msg_mapper):
for backend, msg in backends_msg_mapper.items():
try:
backend = BACKEND(backend)
if not backend.is_enable:
continue
get_msg_method = getattr(self, f'get_{backend}_msg', self.get_common_msg)
msg = get_msg_method()
client = backend.client()
users = User.objects.filter(id__in=receive_user_ids).all()
client.send_msg(users, **msg)
except NotImplementedError:
continue
@ -238,7 +246,7 @@ class Message(metaclass=MessageType):
class SystemMessage(Message):
def publish(self):
def publish(self, is_async=False):
subscription = SystemMsgSubscription.objects.get(
message_type=self.get_message_type()
)
@ -251,7 +259,13 @@ class SystemMessage(Message):
*subscription.users.all(),
*chain(*[g.users.all() for g in subscription.groups.all()])
]
self.send_msg(users, receive_backends)
receive_user_ids = [u.id for u in users]
backends_msg_mapper = self.get_backend_msg_mapper(receive_backends)
if is_async:
publish_task.delay(receive_user_ids, backends_msg_mapper)
else:
self.send_msg(receive_user_ids, backends_msg_mapper)
@classmethod
def post_insert_to_db(cls, subscription: SystemMsgSubscription):
@ -268,12 +282,17 @@ class UserMessage(Message):
def __init__(self, user):
self.user = user
def publish(self):
def publish(self, is_async=False):
"""
发送消息到每个用户配置的接收方式上
"""
sub = UserMsgSubscription.objects.get(user=self.user)
self.send_msg([self.user], sub.receive_backends)
backends_msg_mapper = self.get_backend_msg_mapper(sub.receive_backends)
receive_user_ids = [self.user.id]
if is_async:
publish_task.delay(receive_user_ids, backends_msg_mapper)
else:
self.send_msg(receive_user_ids, backends_msg_mapper)
@classmethod
def get_test_user(cls):

1
apps/ops/signal_handlers.py

@ -136,6 +136,7 @@ def task_sent_handler(headers=None, body=None, **kwargs):
args = json.loads(json.dumps(list(args), cls=JSONEncoder))
kwargs = json.loads(json.dumps(kwargs, cls=JSONEncoder))
except Exception as e:
logger.warn('Parse task args or kwargs error (Need handle): {}'.format(e))
args = []
kwargs = {}

Loading…
Cancel
Save