mirror of https://github.com/jumpserver/jumpserver
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.
37 lines
1.4 KiB
37 lines
1.4 KiB
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from celery import shared_task
|
|
|
|
from orgs.utils import tmp_to_root_org
|
|
from assets.models import AuthBook
|
|
|
|
__all__ = ['add_nodes_assets_to_system_users']
|
|
|
|
|
|
@shared_task
|
|
@tmp_to_root_org()
|
|
def add_nodes_assets_to_system_users(nodes_keys, system_users):
|
|
from ..models import Node
|
|
from assets.tasks import push_system_user_to_assets
|
|
|
|
nodes = Node.objects.filter(key__in=nodes_keys)
|
|
assets = Node.get_nodes_all_assets(*nodes)
|
|
for system_user in system_users:
|
|
""" 解决资产和节点进行关联时,已经关联过的节点不会触发 authbook post_save 信号,
|
|
无法更新节点下所有资产的管理用户的问题 """
|
|
need_push_asset_ids = []
|
|
for asset in assets:
|
|
defaults = {'asset': asset, 'systemuser': system_user, 'org_id': asset.org_id}
|
|
instance, created = AuthBook.objects.update_or_create(
|
|
defaults=defaults, asset=asset, systemuser=system_user
|
|
)
|
|
if created:
|
|
need_push_asset_ids.append(asset.id)
|
|
# # 不再自动更新资产管理用户,只允许用户手动指定。
|
|
# 只要关联都需要更新资产的管理用户
|
|
# instance.update_asset_admin_user_if_need()
|
|
|
|
if need_push_asset_ids:
|
|
push_system_user_to_assets.delay(system_user.id, need_push_asset_ids)
|