forked from samirsilwal/string-man
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
87 lines (64 loc) · 1.79 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
const core = require("@actions/core");
function isValidJSON(str) {
try {
const parsed = JSON.parse(str);
return !!Array.isArray(parsed);
} catch (e) {
return false;
}
}
function manipulateString(operator, ...params) {
// For instance methods
if (typeof String.prototype[operator] === "function") {
const targetString = params[0];
return String.prototype[operator].apply(targetString, params.slice(1));
}
// For instance properties
switch (operator) {
case "equals":
return params[0] === params[1];
case "identity":
return params[0];
case "concat":
return params.join("");
case "length":
return params[0].length;
default:
throw new Error(`Invalid operator: ${operator}`);
}
}
function main() {
try {
const inputString = core.getInput("input");
const operator = core.getInput("func");
const params = core.getInput("params");
let output = "";
if (isValidJSON(operator)) {
core.info("Parsing operator as JSON");
const operatorObj = JSON.parse(operator);
let finalOutput = inputString;
for (const operatorInfo of operatorObj) {
const op = operatorInfo[0];
core.info(`Applying operator: ${op}`);
const strOutput = manipulateString(
op,
finalOutput,
...operatorInfo.slice(1)
);
core.info(`intermediate output: ${strOutput}`);
finalOutput = strOutput;
if (typeof strOutput !== "string") {
break;
}
}
output = finalOutput;
} else {
output = manipulateString(operator, inputString, ...params);
}
core.setOutput("value", output);
} catch (error) {
core.setFailed(error.message);
}
}
main()
module.exports = { isValidJSON, manipulateString, main };