This commit is contained in:
Ben
2021-12-24 22:49:23 +00:00
parent ff7495adb9
commit 3a48569093
11 changed files with 7387 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

BIN
README.md

Binary file not shown.

8
docs/CONFIGURATION.md Normal file
View File

@@ -0,0 +1,8 @@
# DotEnv
```config
PORT=port
LOGLEVEL=verbose/debug/warn/info
```

7216
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "legolog-webserver-cdn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest src/__test",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"setup": "npm i"
},
"author": "Ben Kyd <benjaminkyd@gmail.com> (https://benkyd.co.uk)",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jest": "^27.4.5"
}
}

4
src/__test/tests.test.js Normal file
View File

@@ -0,0 +1,4 @@
test('Sanity Check', () => {
expect(1 + 1).toBe(2);
});

12
src/config.js Normal file
View File

@@ -0,0 +1,12 @@
const dotenv = require('dotenv');
function load() {
console.log('Loading config...');
dotenv.config();
}
module.exports = {
load
}

11
src/index.js Normal file
View File

@@ -0,0 +1,11 @@
const Config = require('./config.js');
async function main() {
console.log('Pre-Init Loading...');
Config.load();
}
main();

116
src/logger.js Normal file
View File

@@ -0,0 +1,116 @@
// Better than Log4J 2021TM
const colours = require('colors/safe');
const moment = require('moment');
const fs = require('fs');
let LogLevel = 1;
let Dialect;
let logPath = 'logs.log';
let dateFormat = 'DD-MM-YY HH:mm:ss'
module.exports.init = async function(path) {
if (path) logPath = path;
Dialect = process.env.NODE_ENV == 'production' ? 'MARIADB' : 'SQLITE';
if (!fs.existsSync(logPath)) {
fs.writeFileSync(logPath, '');
}
fs.appendFileSync(logPath, '[SYSTEM STARTING UP] \n');
console.log(colours.rainbow('Starting up...'));
}
module.exports.SetLevel = function(level) {
LogLevel = level;
}
module.exports.SetDialect = function(dialect) {
Dialect = dialect;
}
module.exports.SetDateFormat = function(format) {
dateFormat = format;
}
module.exports.VERBOSE_LOGS = 0;
module.exports.DEBUG_LOGS = 1;
module.exports.INFO_LOGS = 2;
module.exports.WARN_LOGS = 3;
module.exports.welcome = function() {
// Unused
}
module.exports.database = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [${Dialect}] ${message} \n`);
if (LogLevel > 0) return;
console.log('[' + d.toLocaleString() + '] ['
+ colours.magenta(Dialect) + '] ' + message);
}
module.exports.game = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [GAME] ${message} \n`);
if (LogLevel > 1) return;
console.log('[' + d.toLocaleString() + '] ['
+ colours.brightBlue('GAME') + '] ' + message);
}
module.exports.middleware = function(origin, message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [MIDDLEWARE: ${origin}] ${message} \n`);
if (LogLevel > 0) return;
console.log('[' + d.toLocaleString() + '] ['
+ colours.yellow(`MIDDLEWARE: ${origin}`) + '] ' + message);
}
module.exports.debug = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [DEBUG] ${message} \n`);
if (LogLevel > 1) return;
console.log('[' + d.toLocaleString() + '] ['
+ colours.cyan('DEBUG') + '] ' + message);
}
module.exports.ready = function() {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [READY] \n`);
console.log('[' + d.toLocaleString() + '] ['
+ colours.rainbow('READY') + ']');
}
module.exports.info = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [INFO] ${message} \n`);
if (LogLevel > 2) return;
console.log('[' + d.toLocaleString() + '] ['
+ colours.green('INFO') + '] ' + message);
}
module.exports.warn = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [WARN] ${message} \n`);
if (LogLevel > 3) return;
console.warn('[' + d.toLocaleString() + '] ['
+ colours.yellow('WARN') + '] ' + message);
}
module.exports.error = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [ERROR] ${message} \n`);
console.error('[' + d.toLocaleString() + '] ['
+ colours.red('ERROR') + '] ' + message);
}
module.exports.panic = function(message) {
let d = moment().format(dateFormat);
fs.appendFileSync(logPath, `[${d.toLocaleString()}] [PANIC] ${message} \n`);
console.error('[' + d.toLocaleString() + '] ['
+ colours.red('PANIC') + '] ' + message);
console.error('[' + d.toLocaleString() + '] ['
+ colours.red('PANIC') + '] ABORTING...');
process.exit();
}

0
src/routes/api.js Normal file
View File