|
|
|
@ -13,16 +13,24 @@ __all__ = ['add_nodes_assets_to_system_users']
|
|
|
|
|
@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)
|
|
|
|
|