Automation Docs
Automation
Add installationId against node, frontend will pass in body of node
Get trigger definition from mongoDb
Create refCode when saving automation in automation db(when node is of type trigger-webhook).
Create webhook url: https://{{workspaceSlug}}.myeshopbox.com/automation/webhook/{{automationId}}/{{refCode}}
Pass the url in performSubscribe api of the APP trigger.
Bundle objects requuired for mapping
bundle.authData.{{variableKey}} = record(all columns) from ie_appinstall_connection table( it represents connection variable)
bundle.authData.{{variableKey}} exists or not, (represent key related to connection)
bundle.inputdata.{{key}} is inputFields (input designer)
process.env.{{CLIENT_ID}} from ie_environment variables represents environment vairables for the app version
3 if else conditions : inputData, authData or process_env
iterate on authData map and replace the key or value in the entry simultaneously
Problem statement
Mapping with multiple nodes till we get to action node
Validate workspcaeSLug in orchestrator service
Cache token against app credentials
user_token_slug : token
cache for 30 days
on expiry
getAppUserToken(appSlug, forceGenerate){
cacheKey = user_token_{{slug}};
if(cacheKey found and forceGenerate == null)
return token
else
generateToken and return
}
Mapping structure:
Object:
items:[
{
"itemId": "5678",
"quantity": 1
},
{
"itemId": "item2",
"quantity": 21
}]
Object conversion to definition:
36##items[]##itemId : ["5678", "item2"]