Compare commits
No commits in common. "2e27b99dbf4f2e4bb7245844eacdd376fdad2709" and "19d121a572523125ba8cf292c2655e95cdb387d4" have entirely different histories.
2e27b99dbf
...
19d121a572
3 changed files with 11 additions and 82 deletions
|
@ -12,16 +12,11 @@ export function makeBot() {
|
|||
client.on("MESSAGE_CREATE", (message) => {
|
||||
if (message.content.startsWith("$ ")) {
|
||||
const command = message.content.substring(2, message.content.length);
|
||||
const result = handleCommand(command, (_streamName, streamContent) => {
|
||||
handleCommand(command, (_streamName, streamContent) => {
|
||||
client.api("POST", `/channels/${message.channel_id}/messages`, {
|
||||
content: streamContent
|
||||
});
|
||||
});
|
||||
if (result.error) {
|
||||
client.api("POST", `/channels/${message.channel_id}/messages`, {
|
||||
content: `error: ${result.error}`
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -4,65 +4,5 @@ export default {
|
|||
},
|
||||
wine: function(ctx) {
|
||||
return `${ctx.streamInput + " " ?? ""}:wine_glass:`;
|
||||
},
|
||||
slot: function(ctx) {
|
||||
const template = ctx.argv.join(" ");
|
||||
const slot = ctx.streamInput ?? "";
|
||||
return template.replace("%%", slot);
|
||||
},
|
||||
times: function(ctx) {
|
||||
const times = parseInt(ctx.argv[0]);
|
||||
const text = ctx.streamInput;
|
||||
if (!times) {
|
||||
return "times: expected first argument to be the number of times to repeat text";
|
||||
}
|
||||
if (!text) {
|
||||
return "times: expected stream input";
|
||||
}
|
||||
|
||||
let out = "";
|
||||
for (let i = 0; i < times; i++) {
|
||||
out += text;
|
||||
}
|
||||
return out;
|
||||
},
|
||||
djson: function(ctx) {
|
||||
if (ctx.argc > 24) {
|
||||
return "djson: arbitrary nesting limit of 24 reached"
|
||||
}
|
||||
|
||||
if (ctx.argc < 1) {
|
||||
return "djson: expected one or more arguments";
|
||||
}
|
||||
|
||||
if (!ctx.streamInput) {
|
||||
return "djson: expected stream input";
|
||||
}
|
||||
|
||||
let json;
|
||||
try {
|
||||
json = JSON.parse(ctx.streamInput);
|
||||
} catch (e) {
|
||||
return "djson: failed to parse json, is it malformed?";
|
||||
}
|
||||
const fields = ctx.argv;
|
||||
|
||||
let val = json;
|
||||
for (let i = 0; i < fields.length; i++) {
|
||||
const field = fields[i];
|
||||
|
||||
if (field.includes("__")) {
|
||||
return "djson: security violation - field names that contain __ are disallowed";
|
||||
}
|
||||
|
||||
if (typeof val !== "object") {
|
||||
return "null";
|
||||
}
|
||||
val = val[field];
|
||||
}
|
||||
|
||||
val ??= "null";
|
||||
|
||||
return typeof val === "string" ? val : JSON.stringify(val);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -164,7 +164,6 @@ function interpretInstructions(instructions, displayFunc) {
|
|||
if (inst.inStream) {
|
||||
streamInput = streams.get(inst.inStream);
|
||||
}
|
||||
try {
|
||||
let streamOutput = commandFunc({
|
||||
argv: inst.args,
|
||||
argc: inst.args.length,
|
||||
|
@ -173,12 +172,6 @@ function interpretInstructions(instructions, displayFunc) {
|
|||
if (inst.outStream) {
|
||||
streams.set(inst.outStream, streamOutput);
|
||||
}
|
||||
} catch(e) {
|
||||
console.error("unhandled exception while running command", e);
|
||||
if (inst.outStream) {
|
||||
streams.set(inst.outStream, "error: unhandled internal exception");
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case InstructionType.DisplayStream: {
|
||||
|
@ -198,13 +191,14 @@ export function handleCommand(message, displayFunc) {
|
|||
const { error: tokError, tokens } = tokenize(message);
|
||||
if (tokError) {
|
||||
return {
|
||||
error: `tokenize: ${tokError}`
|
||||
error: `error: tokenize: ${tokError}`
|
||||
};
|
||||
}
|
||||
const { error: insError, instructions } = tokensToInstructions(tokens);
|
||||
console.log(instructions);
|
||||
if (insError) {
|
||||
return {
|
||||
error: `tokensToInstructions: ${insError}`
|
||||
error: `error: tokensToInstructions: ${insError}`
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue