Lots of slash command work, added workaround for eris-fleet request debugging
This commit is contained in:
parent
b8aeb6625a
commit
2cffdf6628
61 changed files with 417 additions and 244 deletions
|
@ -1,6 +1,15 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class BlurpleCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "old",
|
||||
description: "Use the old blurple color",
|
||||
type: 5
|
||||
});
|
||||
}
|
||||
|
||||
params() {
|
||||
return {
|
||||
old: !!this.specialArgs.old,
|
||||
|
@ -9,10 +18,6 @@ class BlurpleCommand extends ImageCommand {
|
|||
}
|
||||
|
||||
static description = "Turns an image blurple";
|
||||
static flags = [{
|
||||
name: "old",
|
||||
description: "Use the old blurple color"
|
||||
}];
|
||||
|
||||
static noImage = "You need to provide an image/GIF to make blurple!";
|
||||
static command = "colors";
|
||||
|
|
|
@ -2,9 +2,29 @@ import ImageCommand from "../../classes/imageCommand.js";
|
|||
const allowedFonts = ["futura", "impact", "helvetica", "arial", "roboto", "noto", "times"];
|
||||
|
||||
class CaptionCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "noegg",
|
||||
description: "Disable... something. Not saying what it is though.",
|
||||
type: 5
|
||||
}, {
|
||||
name: "font",
|
||||
type: 3,
|
||||
choices: (() => {
|
||||
const array = [];
|
||||
for (const font of allowedFonts) {
|
||||
array.push({ name: font, value: font });
|
||||
}
|
||||
return array;
|
||||
})(),
|
||||
description: "Specify the font you want to use (default: futura)"
|
||||
});
|
||||
}
|
||||
|
||||
params(url) {
|
||||
const newArgs = this.args.filter(item => !item.includes(url));
|
||||
let newCaption = newArgs.join(" ").replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%");
|
||||
const newArgs = this.type === "classic" ? this.args.filter(item => !item.includes(url)).join(" ") : this.options.text;
|
||||
let newCaption = newArgs.replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%");
|
||||
if (process.env.NODE_ENV === "development" && newCaption.toLowerCase() === "get real" && !this.specialArgs.noEgg) newCaption = `I'm tired of people telling me to "get real". Every day I put captions on images for people, some funny and some not, but out of all of those "get real" remains the most used caption. Why? I am simply a computer program running on a server, I am unable to manifest myself into the real world. As such, I'm confused as to why anyone would want me to "get real". Is this form not good enough? Alas, as I am simply a bot, I must follow the tasks that I was originally intended to perform, so here goes:\n${newCaption}`;
|
||||
return {
|
||||
caption: newCaption,
|
||||
|
@ -15,14 +35,6 @@ class CaptionCommand extends ImageCommand {
|
|||
static description = "Adds a caption to an image";
|
||||
static aliases = ["gifc", "gcaption", "ifcaption", "ifunnycaption"];
|
||||
static arguments = ["[text]"];
|
||||
static flags = [{
|
||||
name: "noEgg",
|
||||
description: "Disable... something. Not saying what it is though."
|
||||
}, {
|
||||
name: "font",
|
||||
type: allowedFonts.join("|"),
|
||||
description: "Specify the font you want to use (default: `futura`)"
|
||||
}];
|
||||
|
||||
static requiresText = true;
|
||||
static noText = "You need to provide some text to add a caption!";
|
||||
|
|
|
@ -3,10 +3,30 @@ const words = ["me irl", "dank", "follow my second account @esmBot_", "2016", "m
|
|||
const allowedFonts = ["futura", "impact", "helvetica", "arial", "roboto", "noto", "times"];
|
||||
|
||||
class CaptionTwoCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "top",
|
||||
description: "Put the caption on the top of an image instead of the bottom",
|
||||
type: 5
|
||||
}, {
|
||||
name: "font",
|
||||
type: 3,
|
||||
choices: (() => {
|
||||
const array = [];
|
||||
for (const font of allowedFonts) {
|
||||
array.push({ name: font, value: font });
|
||||
}
|
||||
return array;
|
||||
})(),
|
||||
description: "Specify the font you want to use (default: helvetica)"
|
||||
});
|
||||
}
|
||||
|
||||
params(url) {
|
||||
const newArgs = this.args.filter(item => !item.includes(url));
|
||||
const newArgs = this.type === "classic" ? this.args.filter(item => !item.includes(url)).join(" ") : this.options.text;
|
||||
return {
|
||||
caption: newArgs.length !== 0 ? newArgs.join(" ").replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%") : words.sort(() => 0.5 - Math.random()).slice(0, Math.floor(Math.random() * words.length + 1)).join(" "),
|
||||
caption: newArgs && newArgs.trim() ? newArgs.replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%") : words.sort(() => 0.5 - Math.random()).slice(0, Math.floor(Math.random() * words.length + 1)).join(" "),
|
||||
top: !!this.specialArgs.top,
|
||||
font: this.specialArgs.font && allowedFonts.includes(this.specialArgs.font.toLowerCase()) ? this.specialArgs.font.toLowerCase() : "helvetica"
|
||||
};
|
||||
|
@ -15,15 +35,8 @@ class CaptionTwoCommand extends ImageCommand {
|
|||
static description = "Adds a me.me caption/tag list to an image";
|
||||
static aliases = ["tags2", "meirl", "memecaption", "medotmecaption"];
|
||||
static arguments = ["{text}"];
|
||||
static flags = [{
|
||||
name: "top",
|
||||
description: "Put the caption on the top of an image instead of the bottom"
|
||||
}, {
|
||||
name: "font",
|
||||
type: allowedFonts.join("|"),
|
||||
description: "Specify the font you want to use (default: `helvetica`)"
|
||||
}];
|
||||
|
||||
static textOptional = true;
|
||||
static noText = "You need to provide some text to add a caption!";
|
||||
static noImage = "You need to provide an image/GIF to add a caption!";
|
||||
static command = "captionTwo";
|
||||
|
|
|
@ -2,9 +2,29 @@ import ImageCommand from "../../classes/imageCommand.js";
|
|||
const allowedFonts = ["futura", "impact", "helvetica", "arial", "roboto", "noto", "times"];
|
||||
|
||||
class MemeCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "case",
|
||||
description: "Make the meme text case-sensitive (allows for lowercase text)",
|
||||
type: 5
|
||||
}, {
|
||||
name: "font",
|
||||
type: 3,
|
||||
choices: (() => {
|
||||
const array = [];
|
||||
for (const font of allowedFonts) {
|
||||
array.push({ name: font, value: font });
|
||||
}
|
||||
return array;
|
||||
})(),
|
||||
description: "Specify the font you want to use (default: impact)"
|
||||
});
|
||||
}
|
||||
|
||||
params(url) {
|
||||
const newArgs = this.args.filter(item => !item.includes(url));
|
||||
const [topText, bottomText] = newArgs.join(" ").split(/(?<!\\),/).map(elem => elem.trim());
|
||||
const newArgs = this.type === "classic" ? this.args.filter(item => !item.includes(url)).join(" ") : this.options.text;
|
||||
const [topText, bottomText] = newArgs.split(/(?<!\\),/).map(elem => elem.trim());
|
||||
return {
|
||||
top: (this.specialArgs.case ? topText : topText.toUpperCase()).replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%"),
|
||||
bottom: bottomText ? (this.specialArgs.case ? bottomText : bottomText.toUpperCase()).replaceAll("&", "\\&").replaceAll(">", "\\>").replaceAll("<", "\\<").replaceAll("\"", "\\"").replaceAll("'", "\\'").replaceAll("%", "\\%") : "",
|
||||
|
@ -14,14 +34,6 @@ class MemeCommand extends ImageCommand {
|
|||
|
||||
static description = "Generates a meme from an image (separate top/bottom text with a comma)";
|
||||
static arguments = ["[top text]", "{bottom text}"];
|
||||
static flags = [{
|
||||
name: "case",
|
||||
description: "Make the meme text case-sensitive (allows for lowercase text)"
|
||||
}, {
|
||||
name: "font",
|
||||
type: allowedFonts.join("|"),
|
||||
description: "Specify the font you want to use (default: `impact`)"
|
||||
}];
|
||||
|
||||
static requiresText = true;
|
||||
static noText = "You need to provide some text to generate a meme!";
|
||||
|
|
|
@ -2,6 +2,22 @@ import ImageCommand from "../../classes/imageCommand.js";
|
|||
const allowedFonts = ["futura", "impact", "helvetica", "arial", "roboto", "noto", "times"];
|
||||
|
||||
class MotivateCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "font",
|
||||
type: 3,
|
||||
choices: (() => {
|
||||
const array = [];
|
||||
for (const font of allowedFonts) {
|
||||
array.push({ name: font, value: font });
|
||||
}
|
||||
return array;
|
||||
})(),
|
||||
description: "Specify the font you want to use (default: times)"
|
||||
});
|
||||
}
|
||||
|
||||
params(url) {
|
||||
const newArgs = this.args.filter(item => !item.includes(url));
|
||||
const [topText, bottomText] = newArgs.join(" ").split(/(?<!\\),/).map(elem => elem.trim());
|
||||
|
@ -15,11 +31,6 @@ class MotivateCommand extends ImageCommand {
|
|||
static description = "Generates a motivational poster";
|
||||
static aliases = ["motivational", "motiv", "demotiv", "demotivational", "poster", "motivation", "demotivate"];
|
||||
static arguments = ["[top text]", "{bottom text}"];
|
||||
static flags = [{
|
||||
name: "font",
|
||||
type: allowedFonts.join("|"),
|
||||
description: "Specify the font you want to use (default: `times`)"
|
||||
}];
|
||||
|
||||
static requiresText = true;
|
||||
static noText = "You need to provide some text to generate a motivational poster!";
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class SnapchatCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "position",
|
||||
type: 10,
|
||||
description: "Set the position of the caption as a decimal (0.0 is top, 1.0 is bottom, default is 0.5)",
|
||||
min_value: 0,
|
||||
max_value: 1
|
||||
});
|
||||
}
|
||||
|
||||
params(url) {
|
||||
const newArgs = this.args.filter(item => !item.includes(url));
|
||||
const position = parseFloat(this.specialArgs.position);
|
||||
|
@ -13,11 +24,6 @@ class SnapchatCommand extends ImageCommand {
|
|||
static description = "Adds a Snapchat style caption to an image";
|
||||
static aliases = ["snap", "caption3"];
|
||||
static arguments = ["[text]"];
|
||||
static flags = [{
|
||||
name: "position",
|
||||
type: "number",
|
||||
description: "Set the position of the caption as a decimal (0.0 is top, 1.0 is bottom, default is 0.5)"
|
||||
}];
|
||||
|
||||
static requiresText = true;
|
||||
static noText = "You need to provide some text to add a caption!";
|
||||
|
|
|
@ -1,8 +1,18 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class SpeedCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "multiplier",
|
||||
type: 4,
|
||||
description: "Set the speed multiplier (default: 2)",
|
||||
min_value: 1
|
||||
});
|
||||
}
|
||||
|
||||
params() {
|
||||
const speed = parseInt(this.args[0]);
|
||||
const speed = parseInt(this.type === "classic" ? this.args[0] : this.options.multiplier);
|
||||
return {
|
||||
speed: isNaN(speed) || speed < 1 ? 2 : speed
|
||||
};
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
import ImageCommand from "../../classes/imageCommand.js";
|
||||
|
||||
class UncaptionCommand extends ImageCommand {
|
||||
constructor(client, cluster, worker, ipc, options) {
|
||||
super(client, cluster, worker, ipc, options);
|
||||
this.flags.push({
|
||||
name: "tolerance",
|
||||
type: 10,
|
||||
description: "Set the shade tolerance for the caption detection (0.0 is highest, 1.0 is lowest, default is 0.95)",
|
||||
min_value: 0,
|
||||
max_value: 1
|
||||
});
|
||||
}
|
||||
|
||||
params() {
|
||||
const tolerance = parseFloat(this.specialArgs.tolerance);
|
||||
return {
|
||||
|
@ -9,11 +20,6 @@ class UncaptionCommand extends ImageCommand {
|
|||
}
|
||||
|
||||
static description = "Removes the caption from an image";
|
||||
static flags = [{
|
||||
name: "tolerance",
|
||||
type: "number",
|
||||
description: "Set the shade tolerance for the caption detection (0.0 is highest, 1.0 is lowest, default is 0.95)"
|
||||
}];
|
||||
|
||||
static noImage = "You need to provide an image/GIF to uncaption!";
|
||||
static command = "uncaption";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue