jumpserver/apps/assets/tasks/automation.py

21 lines
676 B
Python
Raw Normal View History

2022-10-19 09:05:21 +00:00
from celery import shared_task
2022-11-15 08:29:40 +00:00
from django.utils.translation import gettext_lazy as _
2022-10-19 09:05:21 +00:00
from orgs.utils import tmp_to_root_org, tmp_to_org
from common.utils import get_logger, get_object_or_none
from assets.const import AutomationTypes
2022-10-19 09:05:21 +00:00
logger = get_logger(__file__)
2022-11-15 08:29:40 +00:00
@shared_task(queue='ansible', verbose_name=_('Execute automation'))
def execute_automation(pid, trigger, tp):
model = AutomationTypes.get_type_model(tp)
2022-10-19 09:05:21 +00:00
with tmp_to_root_org():
instance = get_object_or_none(model, pk=pid)
2022-10-19 09:05:21 +00:00
if not instance:
2022-10-25 10:43:34 +00:00
logger.error("No automation task found: {}".format(pid))
2022-10-19 09:05:21 +00:00
return
with tmp_to_org(instance.org):
instance.execute(trigger)