1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

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:
mike12345567 2021-06-18 18:07:51 +01:00
parent aa1d7ad7aa
commit 347b2abf4f
3 changed files with 48 additions and 2 deletions

View file

@ -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
} }
} }

View file

@ -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

View file

@ -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}`)
}