cleanup cleanup cleanup on isle dd (#2792)

* cleanup cleanup cleanup on isle dd

* fix: rest manager import in test
This commit is contained in:
Skillz4Killz
2023-02-25 20:11:15 -06:00
committed by GitHub
parent b82dafd173
commit 3bbb03b8e3
173 changed files with 13719 additions and 9270 deletions
+26 -24
View File
@@ -1,38 +1,40 @@
const handlers: {
[index: string]: any;
} = {};
[index: string]: any
} = {}
const topDirs = ["./handlers"];
const topDirs = ['./handlers']
const readDir = async (dirname: string, onContent: (content: string) => void) => {
const files: Deno.DirEntry[] = [];
const files: Deno.DirEntry[] = []
for (const dirEntry of Deno.readDirSync(dirname)) {
files.push(dirEntry);
files.push(dirEntry)
}
await Promise.all(
files.map(async (file) => {
if (file.isFile) {
const content = await Deno.readTextFile(dirname + "/" + file.name);
onContent(content);
return;
const content = await Deno.readTextFile(dirname + '/' + file.name)
onContent(content)
return
}
if (file.isDirectory) await readDir(`${dirname}/${file.name}`, onContent);
if (file.isDirectory) await readDir(`${dirname}/${file.name}`, onContent)
}),
);
};
)
}
await Promise.all(topDirs.map((topDir) =>
readDir(topDir, (content) => {
const handler = content.match(/export function [A-z]+\(/g);
if (handler === null) return;
const transformers = content.match(/bot.transformers.[A-z]+\(/g);
const event = content.match(/bot.events.[A-z]+\(/);
await Promise.all(
topDirs.map((topDir) =>
readDir(topDir, (content) => {
const handler = content.match(/export function [A-z]+\(/g)
if (handler === null) return
const transformers = content.match(/bot.transformers.[A-z]+\(/g)
const event = content.match(/bot.events.[A-z]+\(/)
handlers[handler.map((handler) => handler.slice(16, -1))[0]] = {
transformers: transformers === null ? [] : transformers.map((result) => result.slice(4, -1)),
event: event === null ? undefined : event.map((result) => result.slice(4, -1))[0],
};
})
));
handlers[handler.map((handler) => handler.slice(16, -1))[0]] = {
transformers: transformers === null ? [] : transformers.map((result) => result.slice(4, -1)),
event: event === null ? undefined : event.map((result) => result.slice(4, -1))[0],
}
}),
),
)
console.log(handlers);
console.log(handlers)