forked from sylveon/discord-ban-appeals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
59 lines (48 loc) · 1.82 KB
/
build.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
import Eris from "eris";
import fs from "fs";
import path from "path";
import process from "process";
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
function assertSuccess(err) {
if (err) {
console.log(err);
process.exit(1);
}
}
function replaceInFile(file, original, replacement, callback) {
fs.readFile(file, "UTF-8", (err, data) => {
assertSuccess(err);
fs.writeFile(file, data.replace(original, replacement), "UTF-8", err => {
assertSuccess(err);
if (callback) {
callback();
}
});
});
}
async function main() {
const func = path.resolve(__dirname, "func");
const url = process.env.CONTEXT === "production" ? process.env.URL : process.env.DEPLOY_PRIME_URL;
replaceInFile(path.resolve(func, "oauth.js"), /DEPLOY_PRIME_URL/g, `"${url}"`);
replaceInFile(path.resolve(func, "oauth-callback.js"), "DEPLOY_PRIME_URL", `"${url}"`);
replaceInFile(path.resolve(func, "submission-created.js"), "DEPLOY_PRIME_URL", `"${url}"`, () => {
if (!process.env.USE_NETLIFY_FORMS) {
fs.rename(path.resolve(func, "submission-created.js"), path.resolve(func, "submit-appeal.js"), assertSuccess);
replaceInFile(path.resolve(__dirname, "public", "form.html"), "action=\"/success\" netlify", "action=\"/.netlify/functions/submit-appeal\"");
}
});
if (process.env.DISABLE_UNBAN_LINK) {
fs.unlink(path.resolve(func, "unban.js"), assertSuccess);
}
// Make sure the bot connected to the gateway at least once.
const bot = new Eris(process.env.DISCORD_BOT_TOKEN);
bot.on("ready", () => bot.disconnect());
try {
await bot.connect();
} catch (e) {
console.log(e);
process.exit(1);
}
}
main();