Change and Add some comments to framework

This commit is contained in:
tgpethan 2020-01-04 12:23:30 +00:00
parent a775a4c988
commit ea15b7dcb2
1 changed files with 11 additions and 1 deletions

View File

@ -2,12 +2,14 @@ const express = require("express"),
fs = require("fs"), fs = require("fs"),
chalk = require("chalk"), chalk = require("chalk"),
emoji = require("./misc/emoji_list.json"); emoji = require("./misc/emoji_list.json");
// This is a class that contains the name and status of required modules
class reqMod { class reqMod {
constructor(name, status) { constructor(name, status) {
this.name = name; this.name = name;
this.status = status; this.status = status;
} }
} }
// Array containing a list of required modules and their flags
const requiredModules = [ const requiredModules = [
new reqMod("handle_console", false) new reqMod("handle_console", false)
]; ];
@ -40,11 +42,13 @@ console.clear();
// Read the server header for output // Read the server header for output
fs.readFile('./misc/ascii.txt', function(err, data) { fs.readFile('./misc/ascii.txt', function(err, data) {
// Make sure there are no errors
if (err) throw err; if (err) throw err;
// Generate and Print the banner // Generate and Print the banner
console.log(highlightHeader(data)); console.log(highlightHeader(data));
// Get the modules from the ./modules folder // Get the modules from the ./modules folder
fs.readdir("./modules", (err, files) => { fs.readdir("./modules", (err, files) => {
// Make sure there are no errors
if (err) throw err; if (err) throw err;
for (var i = 0; i < files.length; i++) { for (var i = 0; i < files.length; i++) {
/* /*
@ -59,7 +63,9 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
global.modules[files[i].toString().replace(".js", "")] = require(`./modules/${files[i].toString()}`); global.modules[files[i].toString().replace(".js", "")] = require(`./modules/${files[i].toString()}`);
// Loop through and set the required modules flags // Loop through and set the required modules flags
for (var i1 = 0; i1 < requiredModules.length; i1++) { for (var i1 = 0; i1 < requiredModules.length; i1++) {
// Check if this module is a required module
if (global.modules[files[i].toString().replace(".js", "")].MOD_FUNC == requiredModules[i1].name) { if (global.modules[files[i].toString().replace(".js", "")].MOD_FUNC == requiredModules[i1].name) {
// It is a required module, set the status flag of this one to true
requiredModules[i1].status = true; requiredModules[i1].status = true;
} }
} }
@ -69,7 +75,10 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
reqhandler = global.modules[files[i].toString().replace(".js", "")]; reqhandler = global.modules[files[i].toString().replace(".js", "")];
} }
} else { } else {
// File is not a .js file (module)
// Make sure the file is not a directory
if (files[i].split(".").length < 2) continue; if (files[i].split(".").length < 2) continue;
// Inform user that a file that was found in the modules folder is not a module
console.log(`[Modules] Found file ${files[i]}. It is not a module.`) console.log(`[Modules] Found file ${files[i]}. It is not a module.`)
} }
} catch (err) { } catch (err) {
@ -85,9 +94,10 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
} }
// Make sure all required modules are found // Make sure all required modules are found
if (allRequiredExist.length !== requiredModules.length) { if (allRequiredExist.length !== requiredModules.length) {
// They are not all found, exit framework with code 1. // Inform the user that not all required modules are found.
console.log("[Modules] All required modules could not be found."); console.log("[Modules] All required modules could not be found.");
console.log("[Modules] Server will not start until all required modules are found."); console.log("[Modules] Server will not start until all required modules are found.");
// They are not all found, exit framework with code 1.
process.exit(1); process.exit(1);
} else { } else {
// All required modules are found, start the framework's server. // All required modules are found, start the framework's server.