This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 334
/
BetterEval.plugin.js
270 lines (269 loc) · 9.68 KB
/
BetterEval.plugin.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/**
* @name BetterEval
* @author Ahlawat
* @authorId 1025214794766221384
* @version 1.2.0
* @invite SgKSKyh9gY
* @description Adds a slash command to evaluate JavaScript code locally.
* @website https://tharki-god.github.io/
* @source https://github.com/Tharki-God/BetterDiscordPlugins
* @updateUrl https://tharki-god.github.io/BetterDiscordPlugins/BetterEval.plugin.js
*/
/*@cc_on
@if (@_jscript)
var shell = WScript.CreateObject("WScript.Shell");
var fs = new ActiveXObject("Scripting.FileSystemObject");
var pathPlugins = shell.ExpandEnvironmentStrings("%APPDATA%\\BetterDiscord\\plugins");
var pathSelf = WScript.ScriptFullName;
shell.Popup("It looks like you've mistakenly tried to run me directly. \n(Don't do that!)", 0, "I'm a plugin for BetterDiscord", 0x30);
if (fs.GetParentFolderName(pathSelf) === fs.GetAbsolutePathName(pathPlugins)) {
shell.Popup("I'm in the correct folder already.", 0, "I'm already installed", 0x40);
} else if (!fs.FolderExists(pathPlugins)) {
shell.Popup("I can't find the BetterDiscord plugins folder.\nAre you sure it's even installed?", 0, "Can't install myself", 0x10);
} else if (shell.Popup("Should I move myself to BetterDiscord's plugins folder for you?", 0, "Do you need some help?", 0x34) === 6) {
fs.MoveFile(pathSelf, fs.BuildPath(pathPlugins, fs.GetFileName(pathSelf)));
shell.Exec("explorer " + pathPlugins);
shell.Popup("I'm installed!", 0, "Successfully installed", 0x40);
}
WScript.Quit();
@else@*/
module.exports = (() => {
const config = {
info: {
name: "BetterEval",
authors: [
{
name: "Ahlawat",
discord_id: "1025214794766221384",
github_username: "Tharki-God",
},
],
version: "1.2.0",
description: "Adds a slash command to evaluate JavaScript code locally.",
github: "https://github.com/Tharki-God/BetterDiscordPlugins",
github_raw:
"https://tharki-god.github.io/BetterDiscordPlugins/BetterEval.plugin.js",
},
changelog: [
{
title: "v0.0.1",
items: ["Idea in mind"],
},
{
title: "v0.0.5",
items: ["Base Model"],
},
{
title: "Initial Release v1.0.0",
items: [
"This is the initial release of the plugin :)",
"[DANGEROUS] DO NOT USE THIS COMMAND WITH CODE YOU DO NOT UNDERSTAND.",
"...( _ _)ノ|",
],
},
{
title: "v1.1.1",
items: ["Corrected text."],
},
],
main: "BetterEval.plugin.js",
};
const RequiredLibs = [{
window: "ZeresPluginLibrary",
filename: "0PluginLibrary.plugin.js",
external: "https://rauenzi.github.io/BDPluginLibrary/release/0PluginLibrary.plugin.js",
downloadUrl: "https://rauenzi.github.io/BDPluginLibrary/release/0PluginLibrary.plugin.js"
},
{
window: "BunnyLib",
filename: "1BunnyLib.plugin.js",
external: "https://github.com/Tharki-God/BetterDiscordPlugins",
downloadUrl: "https://tharki-god.github.io/BetterDiscordPlugins/1BunnyLib.plugin.js"
},
];
class handleMissingLibrarys {
load() {
for (const Lib of RequiredLibs.filter(lib => !window.hasOwnProperty(lib.window)))
BdApi.showConfirmationModal(
"Library Missing",
`The library plugin (${Lib.window}) needed for ${config.info.name} is missing. Please click Download Now to install it.`,
{
confirmText: "Download Now",
cancelText: "Cancel",
onConfirm: () => this.downloadLib(Lib),
}
);
}
async downloadLib(Lib) {
const fs = require("fs");
const path = require("path");
const { Plugins } = BdApi;
const LibFetch = await fetch(
Lib.downloadUrl
);
if (!LibFetch.ok) return this.errorDownloadLib(Lib);
const LibContent = await LibFetch.text();
try {
await fs.writeFile(
path.join(Plugins.folder, Lib.filename),
LibContent,
(err) => {
if (err) return this.errorDownloadLib(Lib);
}
);
} catch (err) {
return this.errorDownloadLib(Lib);
}
}
errorDownloadZLib(Lib) {
const { shell } = require("electron");
BdApi.showConfirmationModal(
"Error Downloading",
[
`${Lib.window} download failed. Manually install plugin library from the link below.`,
],
{
confirmText: "Download",
cancelText: "Cancel",
onConfirm: () => {
shell.openExternal(
Lib.external
);
},
}
);
}
start() { }
stop() { }
}
return RequiredLibs.some(m => !window.hasOwnProperty(m.window))
? handleMissingLibrarys
: (([Plugin, ZLibrary]) => {
const {
WebpackModules,
Modals,
Logger,
PluginUpdater,
Utilities,
Patcher,
DiscordModules: { MessageActions },
} = ZLibrary;
const { LibraryUtils, ApplicationCommandAPI } = BunnyLib.build(config);
return class BetterEval extends Plugin {
constructor() {
super();
this.firstRun = Utilities.loadData(
config.info.name,
"firstRun",
true
);
}
showDisclaimer() {
Modals.showAlertModal("DISCLAIMER: THIS PLUGIN IS DANGEROUS", [
"```DO NOT, UNDER ANY CIRCUMSTANCES, RUN CODE YOU DO NOT UNDERSTAND. IF SOMEBODY TELLS YOU TO RUN CODE, THEY ARE MOST LIKELY TRYING TO STEAL YOUR ACCOUNT OR INSTALL MALWARE ON YOUR DEVICE. UNLESS YOU FULLY UNDERSTAND WHAT A PIECE OF CODE DOES, DO NOT RUN SAID PIECE OF CODE.```\n\n\n\n\nI, the author of BetterEval, am not responsible for any harm/damage caused by using this plugin. Use the plugin at your own risk.",
]);
Utilities.saveData(config.info.name, "firstRun", false);
}
checkForUpdates() {
try {
PluginUpdater.checkForUpdate(
config.info.name,
config.info.version,
config.info.github_raw
);
} catch (err) {
Logger.err("Plugin Updater could not be reached.", err);
}
}
onStart() {
this.checkForUpdates();
if (this.firstRun) this.showDisclaimer();
this.addEval();
}
addEval() {
ApplicationCommandAPI.register(config.info.name, {
name: "eval",
displayName: "eval",
displayDescription: "Evaluate JavaScript code locally.",
description: "Evaluate JavaScript code locally.",
type: 1,
target: 1,
execute: async ([code, isAsync], { channel }) => {
const Embed = await this.evaluate(code.value, isAsync.value);
MessageActions.receiveMessage(
channel.id,
LibraryUtils.FakeMessage(channel.id, "", [Embed])
);
},
options: [
{
description: "JavaScript code you want to evaluate.",
displayDescription: "JavaScript code you want to evaluate.",
displayName: "Code",
name: "Code",
required: true,
type: 3,
},
{
description: "Evaluate asynchronously.",
displayDescription: "Evaluate asynchronously.",
displayName: "Async",
name: "Async",
required: true,
type: 5,
},
],
});
}
async evaluate(code, isAsync) {
var result = undefined;
var errored = false;
if (isAsync) {
if (
code.includes(";") &&
(!code.endsWith(";") ||
code.includes("\n") ||
code.split(";").length > 2)
) {
code = "(async () => {" + code + "})()";
} else {
code = "(async () => { return " + code + "})()";
}
}
var start = process.hrtime();
try {
result = eval(code);
if (result instanceof Promise) {
result = await result;
}
} catch (e) {
result = e;
errored = true;
}
var elapsed = process.hrtime(start);
var elapsed_ms = elapsed[0] * 1e3 + elapsed[1] / 1e6;
var elapsed_str = elapsed_ms + " ms";
if (errored) Logger.err(result);
result = JSON.stringify(result, null, 2);
return {
type: "rich",
title: (errored ? "Error" : "Success") + " " + elapsed_str,
thumbnail: {
url: "https://tharki-god.github.io/files-random-host/372108630_DISCORD_LOGO_400.gif",
proxyURL:
"https://tharki-god.github.io/files-random-host/372108630_DISCORD_LOGO_400.gif",
width: 400,
height: 400,
},
color: "6577E6",
description: "```js\n" + result + "\n```",
timestamp: Date.now(),
};
}
onStop() {
ApplicationCommandAPI.unregister(config.info.name);
}
};
})(ZLibrary.buildPlugin(config));
})();
/*@end@*/