budibase/packages/server/src/threads/automation.js

296 lines
9.6 KiB
JavaScript
Raw Normal View History

require("./utils").threadSetup()
const actions = require("../automations/actions")
const automationUtils = require("../automations/automationUtils")
const AutomationEmitter = require("../events/AutomationEmitter")
const { processObject } = require("@budibase/string-templates")
const { DEFAULT_TENANT_ID } = require("@budibase/backend-core/constants")
2022-03-21 17:08:25 +01:00
const { DocumentTypes } = require("../db/utils")
const { doInTenant } = require("@budibase/backend-core/tenancy")
const { definitions: triggerDefs } = require("../automations/triggerInfo")
const { doInAppContext, getAppDB } = require("@budibase/backend-core/context")
2021-09-14 12:28:39 +02:00
const FILTER_STEP_ID = actions.ACTION_DEFINITIONS.FILTER.stepId
2022-03-25 10:26:55 +01:00
const LOOP_STEP_ID = actions.ACTION_DEFINITIONS.LOOP.stepId
const CRON_STEP_ID = triggerDefs.CRON.stepId
const STOPPED_STATUS = { success: false, status: "STOPPED" }
2022-03-25 11:52:22 +01:00
const { cloneDeep } = require("lodash/fp")
2022-04-12 10:13:01 +02:00
const env = require("../environment")
/**
* The automation orchestrator is a class responsible for executing automations.
* It handles the context of the automation and makes sure each step gets the correct
* inputs and handles any outputs.
*/
class Orchestrator {
2021-05-18 22:03:26 +02:00
constructor(automation, triggerOutput = {}) {
this._metadata = triggerOutput.metadata
this._chainCount = this._metadata ? this._metadata.automationChainCount : 0
this._appId = triggerOutput.appId
this._app = null
const triggerStepId = automation.definition.trigger.stepId
triggerOutput = this.cleanupTriggerOutputs(triggerStepId, triggerOutput)
// remove from context
delete triggerOutput.appId
delete triggerOutput.metadata
// step zero is never used as the template string is zero indexed for customer facing
this._context = { steps: [{}], trigger: triggerOutput }
this._automation = automation
// create an emitter which has the chain count for this automation run in it, so it can block
// excessive chaining if required
this._emitter = new AutomationEmitter(this._chainCount + 1)
this.executionOutput = { trigger: {}, steps: [] }
// setup the execution output
const triggerId = automation.definition.trigger.id
this.updateExecutionOutput(triggerId, triggerStepId, null, triggerOutput)
}
cleanupTriggerOutputs(stepId, triggerOutput) {
if (stepId === CRON_STEP_ID) {
triggerOutput.timestamp = Date.now()
}
return triggerOutput
}
2021-09-14 12:28:39 +02:00
async getStepFunctionality(stepId) {
let step = await actions.getAction(stepId)
if (step == null) {
throw `Cannot find automation step by name ${stepId}`
}
return step
}
async getApp() {
if (this._app) {
return this._app
}
const db = getAppDB()
this._app = await db.get(DocumentTypes.APP_METADATA)
return this._app
}
updateExecutionOutput(id, stepId, inputs, outputs) {
const stepObj = { id, stepId, inputs, outputs }
// first entry is always the trigger (constructor)
if (this.executionOutput.steps.length === 0) {
this.executionOutput.trigger = stepObj
}
this.executionOutput.steps.push(stepObj)
}
2022-04-12 00:10:29 +02:00
updateContextAndOutput(loopStepNumber, step, output, result) {
this.executionOutput.steps.splice(loopStepNumber, 0, {
id: step.id,
stepId: step.stepId,
outputs: {
...output,
success: result.success,
status: result.status,
},
inputs: step.inputs,
})
this._context.steps.splice(loopStepNumber, 0, {
...output,
success: result.success,
status: result.status,
})
}
async execute() {
let automation = this._automation
const app = await this.getApp()
let stopped = false
2022-03-25 10:26:55 +01:00
let loopStep
let stepCount = 0
let loopStepNumber
2022-03-28 11:01:56 +02:00
let loopSteps = []
for (let step of automation.definition.steps) {
2022-03-25 10:26:55 +01:00
stepCount++
2022-04-11 11:26:59 +02:00
let input
2022-03-25 10:26:55 +01:00
if (step.stepId === LOOP_STEP_ID) {
loopStep = step
loopStepNumber = stepCount
continue
}
2022-03-25 10:26:55 +01:00
2022-04-11 11:26:59 +02:00
if (loopStep) {
input = await processObject(loopStep.inputs, this._context)
}
let iterations = loopStep ? input.binding.length : 1
let iterationCount = 0
2022-03-25 10:26:55 +01:00
for (let index = 0; index < iterations; index++) {
2022-03-25 11:52:22 +01:00
let originalStepInput = cloneDeep(step.inputs)
2022-03-28 11:01:56 +02:00
2022-04-11 11:26:59 +02:00
// Handle if the user has set a max iteration count or if it reaches the max limit set by us
if (loopStep) {
// lets first of all handle the input
// if the input is array then use it, if it is a string then split it on every new line
let newInput = await processObject(
loopStep.inputs,
cloneDeep(this._context)
)
newInput = automationUtils.cleanInputValues(
newInput,
loopStep.schema.inputs
)
this._context.steps[loopStepNumber] = {
currentItem: newInput.binding[index],
}
2022-04-12 00:10:29 +02:00
let tempOutput = { items: loopSteps, iterations: iterationCount }
2022-04-11 11:26:59 +02:00
if (
2022-04-12 00:10:29 +02:00
(loopStep.inputs.option === "Array" &&
!Array.isArray(newInput.binding)) ||
(loopStep.inputs.option === "String" &&
typeof newInput.binding !== "string")
2022-04-11 11:26:59 +02:00
) {
2022-04-12 00:10:29 +02:00
this.updateContextAndOutput(loopStepNumber, step, tempOutput, {
2022-04-11 11:26:59 +02:00
status: "INCORRECT_TYPE",
2022-04-12 00:10:29 +02:00
success: false,
2022-04-11 11:26:59 +02:00
})
loopSteps = null
loopStep = null
break
}
// The "Loop" binding in the front end is "fake", so replace it here so the context can understand it
2022-04-12 00:10:29 +02:00
// Pretty hacky because we need to account for the row object
2022-04-11 11:26:59 +02:00
for (let key in originalStepInput) {
if (key === "row") {
2022-04-12 00:10:29 +02:00
for (let val in originalStepInput["row"]) {
originalStepInput["row"][val] = originalStepInput["row"][
val
2022-04-11 11:26:59 +02:00
].replace(/loop/, `steps.${loopStepNumber}`)
}
} else {
originalStepInput[key] = originalStepInput[key].replace(
/loop/,
`steps.${loopStepNumber}`
)
}
}
2022-04-12 10:13:01 +02:00
if (
2022-04-13 11:23:40 +02:00
index === parseInt(env.AUTOMATION_MAX_ITERATIONS) ||
2022-04-12 10:13:01 +02:00
index === loopStep.inputs.iterations
) {
2022-04-12 00:10:29 +02:00
this.updateContextAndOutput(loopStepNumber, step, tempOutput, {
status: "MAX_ITERATIONS_REACHED",
2022-04-11 11:26:59 +02:00
success: true,
})
loopSteps = null
loopStep = null
break
}
if (
this._context.steps[loopStepNumber]?.currentItem ===
loopStep.inputs.failure
) {
2022-04-12 00:10:29 +02:00
this.updateContextAndOutput(loopStepNumber, step, tempOutput, {
2022-04-11 11:26:59 +02:00
status: "FAILURE_CONDITION_MET",
2022-04-12 00:10:29 +02:00
success: false,
2022-04-11 11:26:59 +02:00
})
loopSteps = null
loopStep = null
break
}
2022-03-28 11:01:56 +02:00
}
2022-04-11 11:26:59 +02:00
2022-03-25 10:26:55 +01:00
// execution stopped, record state for that
if (stopped) {
this.updateExecutionOutput(step.id, step.stepId, {}, STOPPED_STATUS)
continue
}
2022-03-25 10:26:55 +01:00
// If it's a loop step, we need to manually add the bindings to the context
let stepFn = await this.getStepFunctionality(step.stepId)
2022-03-25 11:52:22 +01:00
let inputs = await processObject(originalStepInput, this._context)
inputs = automationUtils.cleanInputValues(inputs, step.schema.inputs)
2022-03-25 10:26:55 +01:00
try {
// appId is always passed
let tenantId = app.tenantId || DEFAULT_TENANT_ID
const outputs = await doInTenant(tenantId, () => {
return stepFn({
2022-03-25 11:52:22 +01:00
inputs: inputs,
2022-03-25 10:26:55 +01:00
appId: this._appId,
emitter: this._emitter,
context: this._context,
})
})
this._context.steps[stepCount] = outputs
// if filter causes us to stop execution don't break the loop, set a var
// so that we can finish iterating through the steps and record that it stopped
if (step.stepId === FILTER_STEP_ID && !outputs.success) {
stopped = true
this.updateExecutionOutput(step.id, step.stepId, step.inputs, {
...outputs,
...STOPPED_STATUS,
})
continue
}
2022-03-29 11:29:51 +02:00
if (loopStep && loopSteps) {
loopSteps.push(outputs)
2022-03-28 11:01:56 +02:00
} else {
this.updateExecutionOutput(
step.id,
step.stepId,
step.inputs,
outputs
)
}
2022-03-25 10:26:55 +01:00
} catch (err) {
console.error(`Automation error - ${step.stepId} - ${err}`)
return err
}
2022-04-11 11:26:59 +02:00
if (loopStep) {
iterationCount++
if (index === iterations - 1) {
loopStep = null
this._context.steps.splice(loopStepNumber, 1)
break
}
2022-03-25 10:26:55 +01:00
}
}
2022-03-29 11:29:51 +02:00
if (loopSteps && loopSteps.length) {
2022-04-11 11:26:59 +02:00
let tempOutput = {
success: true,
items: loopSteps,
iterations: iterationCount,
}
this.executionOutput.steps.splice(loopStepNumber + 1, 0, {
id: step.id,
stepId: step.stepId,
2022-03-29 11:29:51 +02:00
outputs: tempOutput,
inputs: step.inputs,
2022-03-28 11:01:56 +02:00
})
2022-04-11 11:26:59 +02:00
this._context.steps.splice(loopStepNumber, 0, tempOutput)
2022-03-28 11:01:56 +02:00
loopSteps = null
}
}
2022-04-11 11:26:59 +02:00
return this.executionOutput
}
}
module.exports = (input, callback) => {
const appId = input.data.event.appId
doInAppContext(appId, () => {
const automationOrchestrator = new Orchestrator(
input.data.automation,
input.data.event
)
automationOrchestrator
.execute()
.then(response => {
callback(null, response)
})
.catch(err => {
callback(err)
})
})
2020-12-08 12:23:06 +01:00
}