-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivepieces-flow.json
91 lines (91 loc) · 3.42 KB
/
activepieces-flow.json
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
{
"name": "faros-vscode-extension-webhook",
"description": "",
"tags": [],
"pieces": [
"@activepieces/piece-webhook",
"@activepieces/piece-faros-advanced"
],
"template": {
"displayName": "Faros VSCode Extension Webhook",
"trigger": {
"name": "trigger",
"valid": true,
"displayName": "Catch Webhook",
"type": "PIECE_TRIGGER",
"settings": {
"pieceName": "@activepieces/piece-webhook",
"pieceVersion": "0.1.10",
"pieceType": "OFFICIAL",
"packageType": "REGISTRY",
"input": {
"authType": "none",
"authFields": {}
},
"inputUiInfo": {
"customizedInputs": {}
},
"triggerName": "catch_webhook"
},
"nextAction": {
"name": "step_2",
"type": "CODE",
"valid": true,
"settings": {
"input": {
"body": "{{trigger['body']}}"
},
"sourceCode": {
"code": "export const code = async (inputs) => {\n const input = inputs.body.query;\n \n // Define the list of permitted mutations\n const permittedMutations = [\n 'insert_vcs_User_one',\n 'insert_vcs_UserTool_one',\n 'insert_vcs_UserToolUsage_one',\n 'update_columns',\n 'insert_vcs_File_one',\n 'insert_vcs_Branch_one',\n 'insert_vcs_Repository_one'\n ];\n\n // Regular expression to match any mutation starting with insert_, update_, or delete_\n const mutationRegex = /\\b(insert_|update_|delete_)\\w+/g;\n\n // Find all mutations in the input string\n const mutations = input.match(mutationRegex);\n\n // If no mutations are found, return true (no unpermitted mutation)\n if (!mutations) {\n return true; // No mutation found, hence no unpermitted mutation\n }\n\n // Check if all mutations found are in the permitted list\n const hasUnpermittedMutation = mutations.some(mutation => !permittedMutations.includes(mutation));\n\n if (hasUnpermittedMutation) {\n throw new Error(\"Unpermitted mutation identified\");\n }\n\n return true;\n};",
"packageJson": "{}"
},
"inputUiInfo": {
"customizedInputs": {}
},
"errorHandlingOptions": {
"retryOnFailure": {
"value": false
},
"continueOnFailure": {
"value": false
}
}
},
"nextAction": {
"name": "step_3",
"skip": false,
"type": "PIECE",
"valid": true,
"settings": {
"input": {
"graph": "default",
"query": "{{trigger['body']['query']}}",
"variables": {}
},
"pieceName": "@activepieces/piece-faros-advanced",
"pieceType": "CUSTOM",
"actionName": "writeMutations",
"inputUiInfo": {
"customizedInputs": {}
},
"packageType": "ARCHIVE",
"pieceVersion": "0.0.2",
"errorHandlingOptions": {
"retryOnFailure": {
"value": false
},
"continueOnFailure": {
"value": false
}
}
},
"displayName": "Write Mutations"
},
"displayName": "Ensure permitted mutations"
}
},
"valid": true,
"schemaVersion": "1"
},
"blogUrl": ""
}