mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-02 07:03:40 +00:00
* pref: 修改 activity log * perf: 优化 acitivity * pref: 修改 activity * fix: 修复一些运行问题 * fix: app.py 中添加 tasks import * fix: 添加 activity_callback * fix: 添加 execute_account_backup_plan activity_callback * fix: 添加 activity_callback -> gather_asset_accounts * fix: 对 celery 任务添加 activity_callback 回调 * fix: 修改翻译 --------- Co-authored-by: ibuler <ibuler@qq.com> Co-authored-by: jiangweidong <weidong.jiang@fit2cloud.com> Co-authored-by: Bai <baijiangjie@gmail.com>
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from celery import shared_task
|
|
from django.utils.translation import gettext_noop, gettext_lazy as _
|
|
|
|
from assets.const import AutomationTypes
|
|
from common.utils import get_logger
|
|
from orgs.utils import tmp_to_org, current_org
|
|
from .common import quickstart_automation
|
|
|
|
logger = get_logger(__file__)
|
|
__all__ = [
|
|
'gather_assets_facts_task',
|
|
'update_node_assets_hardware_info_manual',
|
|
'update_assets_hardware_info_manual',
|
|
]
|
|
|
|
|
|
@shared_task(
|
|
queue="ansible", verbose_name=_('Gather assets facts'),
|
|
activity_callback=lambda self, asset_ids, org_id, *args, **kwargs: (asset_ids, org_id)
|
|
)
|
|
def gather_assets_facts_task(asset_ids, org_id, task_name=None):
|
|
from assets.models import GatherFactsAutomation
|
|
if task_name is None:
|
|
task_name = gettext_noop("Gather assets facts")
|
|
task_name = GatherFactsAutomation.generate_unique_name(task_name)
|
|
task_snapshot = {
|
|
'assets': asset_ids,
|
|
}
|
|
tp = AutomationTypes.gather_facts
|
|
|
|
with tmp_to_org(org_id):
|
|
quickstart_automation(task_name, tp, task_snapshot)
|
|
|
|
|
|
def update_assets_hardware_info_manual(assets):
|
|
task_name = gettext_noop("Update assets hardware info: ")
|
|
asset_ids = [str(i.id) for i in assets]
|
|
return gather_assets_facts_task.delay(asset_ids, str(current_org.id), task_name=task_name)
|
|
|
|
|
|
def update_node_assets_hardware_info_manual(node):
|
|
asset_ids = node.get_all_asset_ids()
|
|
asset_ids = [str(i) for i in asset_ids]
|
|
task_name = gettext_noop("Update node asset hardware information: ")
|
|
return gather_assets_facts_task.delay(asset_ids, str(current_org.id), task_name=task_name)
|