Merge pull request #18 from tgpethan/code-order

Code order fix
This commit is contained in:
Ethan Stubbs 2020-01-04 15:13:11 +00:00 committed by GitHub
commit 9bd0eda811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -50,17 +50,19 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
if (files[i].includes(".js")) {
console.log(`[Modules] Found module ${files[i].toString()}`);
global.modules[files[i].toString().replace(".js", "")] = require(`./modules/${files[i].toString()}`);
// We want to find out what the request handler module is
if (global.modules[files[i].toString().replace(".js", "")].MOD_FUNC == "handle_requests") {
// Set reqhandler to the request handler for easy getting
reqhandler = global.modules[files[i].toString().replace(".js", "")];
}
// Loop through and set the required modules flags
for (var i1 = 0; i1 < requiredModules.length; i1++) {
if (global.modules[files[i].toString().replace(".js", "")].MOD_FUNC == requiredModules[i1].name) {
requiredModules[i1].status = true;
}
}
// We want to find out what the request handler module is
if (global.modules[files[i].toString().replace(".js", "")].MOD_FUNC == "handle_requests") {
// Set reqhandler to the request handler for easy getting
reqhandler = global.modules[files[i].toString().replace(".js", "")];
}
} else {
if (files[i].split(".").length < 2) continue;
console.log(`[Modules] Found file ${files[i]}. It is not a module.`)
@ -82,12 +84,12 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
process.exit(1);
} else {
global.modules.consoleHelper.printInfo(emoji.wave, "Starting Revolution...");
server();
frameworkServer();
}
});
});
function server() {
function frameworkServer() {
reqhandler.extras();
app.get('*', (req, res) => reqhandler.get(req, res));
app.post('*', (req, res) => reqhandler.post(req, res));