Adding a server logging script for testing and updating automation script functionality so that you can use 'return trigger.row.firstName' and it'll function as expected.
This commit is contained in:
parent
ed59383167
commit
94daa3d4b5
|
@ -3,13 +3,15 @@ const vm = require("vm")
|
||||||
|
|
||||||
class ScriptExecutor {
|
class ScriptExecutor {
|
||||||
constructor(body) {
|
constructor(body) {
|
||||||
this.script = new vm.Script(body.script)
|
const code = `let fn = () => {\n${body.script}\n}; out = fn();`
|
||||||
|
this.script = new vm.Script(code)
|
||||||
this.context = vm.createContext(body.context)
|
this.context = vm.createContext(body.context)
|
||||||
this.context.fetch = fetch
|
this.context.fetch = fetch
|
||||||
}
|
}
|
||||||
|
|
||||||
execute() {
|
execute() {
|
||||||
return this.script.runInContext(this.context)
|
this.script.runInContext(this.context)
|
||||||
|
return this.context.out
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ const executeScript = require("./steps/executeScript")
|
||||||
const bash = require("./steps/bash")
|
const bash = require("./steps/bash")
|
||||||
const executeQuery = require("./steps/executeQuery")
|
const executeQuery = require("./steps/executeQuery")
|
||||||
const outgoingWebhook = require("./steps/outgoingWebhook")
|
const outgoingWebhook = require("./steps/outgoingWebhook")
|
||||||
|
const serverLog = require("./steps/serverLog")
|
||||||
const env = require("../environment")
|
const env = require("../environment")
|
||||||
const Sentry = require("@sentry/node")
|
const Sentry = require("@sentry/node")
|
||||||
const {
|
const {
|
||||||
|
@ -24,6 +25,7 @@ const BUILTIN_ACTIONS = {
|
||||||
EXECUTE_SCRIPT: executeScript.run,
|
EXECUTE_SCRIPT: executeScript.run,
|
||||||
EXECUTE_BASH: bash.run,
|
EXECUTE_BASH: bash.run,
|
||||||
EXECUTE_QUERY: executeQuery.run,
|
EXECUTE_QUERY: executeQuery.run,
|
||||||
|
SERVER_LOG: serverLog.run,
|
||||||
}
|
}
|
||||||
const BUILTIN_DEFINITIONS = {
|
const BUILTIN_DEFINITIONS = {
|
||||||
SEND_EMAIL: sendgridEmail.definition,
|
SEND_EMAIL: sendgridEmail.definition,
|
||||||
|
@ -35,6 +37,7 @@ const BUILTIN_DEFINITIONS = {
|
||||||
EXECUTE_SCRIPT: executeScript.definition,
|
EXECUTE_SCRIPT: executeScript.definition,
|
||||||
EXECUTE_QUERY: executeQuery.definition,
|
EXECUTE_QUERY: executeQuery.definition,
|
||||||
EXECUTE_BASH: bash.definition,
|
EXECUTE_BASH: bash.definition,
|
||||||
|
SERVER_LOG: serverLog.definition,
|
||||||
}
|
}
|
||||||
|
|
||||||
let MANIFEST = null
|
let MANIFEST = null
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
/**
|
||||||
|
* Note, there is some functionality in this that is not currently exposed as it
|
||||||
|
* is complex and maybe better to be opinionated here.
|
||||||
|
* GET/DELETE requests cannot handle body elements so they will not be sent if configured.
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports.definition = {
|
||||||
|
name: "Backend log",
|
||||||
|
tagline: "Console log a value in the backend",
|
||||||
|
icon: "ri-server-line",
|
||||||
|
description: "Logs the given text to the server (using console.log)",
|
||||||
|
type: "ACTION",
|
||||||
|
stepId: "SERVER_LOG",
|
||||||
|
inputs: {
|
||||||
|
text: "",
|
||||||
|
},
|
||||||
|
schema: {
|
||||||
|
inputs: {
|
||||||
|
properties: {
|
||||||
|
text: {
|
||||||
|
type: "string",
|
||||||
|
title: "URL",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
required: ["text"],
|
||||||
|
},
|
||||||
|
outputs: {
|
||||||
|
properties: {
|
||||||
|
success: {
|
||||||
|
type: "boolean",
|
||||||
|
description: "Whether the action was successful",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
required: ["success"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports.run = async function ({ inputs, appId }) {
|
||||||
|
console.log(`App ${appId} - ${inputs.text}`)
|
||||||
|
}
|
Loading…
Reference in New Issue