-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
126 lines (108 loc) · 3.19 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const { createExtension, createNodeDescriptor } = require('@cognigy/extension-tools');
const { execSync } = require('child_process');
const pyPath = `${__dirname}/../bin/python`;
// We give python binary the jackpot, so it can be executed by anyone.
try {
execSync(`chmod 777 ${pyPath}`);
} catch(e) {}
exports.default = createExtension({
nodes: [
createNodeDescriptor({
type: "Execute Python",
summary: 'Execute Python code. Output can be sent to user or stored in context/input as string or buffer.',
fields: [
{
key: 'code',
label: 'Code',
description: 'The Python code. // @ts-nocheck will be stripped off before execution',
type: 'typescript',
defaultValue: '// @ts-nocheck\n\nprint("hello world!")',
params: {
required: true
}
},
{
key: 'outputLocation',
label: 'Output location',
description: 'If location is "say", then output is converted to string before being sent to endpoint.',
type: 'select',
defaultValue: 'say',
params: {
required: true,
options: ['context', 'input', 'say'].map(t => ({
label: t,
value: t
}))
}
},
{
key: 'stringify',
label: 'Cast to String',
description: 'Cast result to String or keep it as Buffer',
type: 'toggle',
defaultValue: true,
params: {
required: true,
},
condition: {
or: [
{
key: 'outputLocation',
value: 'context',
},
{
key: 'outputLocation',
value: 'input'
}
]
}
},
{
key: 'locationPath',
label: 'Location path',
description: 'Location in context',
type: 'cognigyText',
defaultValue: 'python.result',
params: {
required: true
},
condition: {
or: [
{
key: 'outputLocation',
value: 'context',
},
{
key: 'outputLocation',
value: 'input'
}
]
}
}
],
function: async ({ config, cognigy }) => {
const { code, outputLocation, locationPath, stringify } = config;
const { api } = cognigy;
api.log('debug', `executing ${pyPath}...`)
/**
* @type {Buffer}
*/
const result = execSync(`${pyPath} -c "${
code.replaceAll('// @ts-nocheck', '')
.replaceAll(`"`, `\\"`)
}"`);
switch(outputLocation) {
case "say": {
return api.say(result.toString('utf8'));
}
case "input": {
return api.addToInput(locationPath, stringify ? result.toString('utf8') : result);
}
case "context": {
return api.addToContext(locationPath, stringify ? result.toString('utf8') : result, 'simple');
}
}
}
})
]
});