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
|
2022-11-11 08:13:16 +00:00
|
|
|
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'))
|
2022-11-11 08:13:16 +00:00
|
|
|
def execute_automation(pid, trigger, tp):
|
2022-11-11 11:15:43 +00:00
|
|
|
model = AutomationTypes.get_type_model(tp)
|
2022-10-19 09:05:21 +00:00
|
|
|
with tmp_to_root_org():
|
2022-11-08 09:54:51 +00:00
|
|
|
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)
|