Merge pull request #413 from Thesourtimes/master

Add colors for some logs + ASCII on startup
This commit is contained in:
Flam3rboy 2021-10-04 22:01:33 +02:00 committed by GitHub
commit 76157a3478
12 changed files with 40 additions and 7 deletions

BIN
api/package-lock.json generated

Binary file not shown.

BIN
bundle/package-lock.json generated

Binary file not shown.

View File

@ -4,7 +4,7 @@
"description": "",
"main": "src/start.js",
"scripts": {
"setup": "cd ../util && npm --production=false i && cd ../api && npm --production=false i && cd ../cdn && npm --production=false i && cd ../gateway && npm --production=false i && npm install",
"setup": "npm install && cd ../util && npm --production=false i && cd ../api && npm --production=false i && cd ../cdn && npm --production=false i && cd ../gateway && npm --production=false i",
"build": "npm run build:util && npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle",
"postinstall": "ts-patch install -s",
"build:bundle": "npx tsc -b .",
@ -38,7 +38,7 @@
"@types/mongoose-autopopulate": "^0.10.1",
"@types/mongoose-lean-virtuals": "^0.5.1",
"@types/multer": "^1.4.5",
"@types/node": "^14.17.9",
"@types/node": "^14.17.20",
"@types/node-fetch": "^2.5.7",
"@types/node-os-utils": "^1.2.0",
"@types/uuid": "^8.3.0",
@ -56,6 +56,7 @@
"async-exit-hook": "^2.0.1",
"express": "^4.17.1",
"missing-native-js-functions": "^1.2.15",
"nanocolors": "^0.2.12",
"node-os-utils": "^1.3.5",
"tsconfig-paths": "^3.11.0"
}

View File

@ -6,6 +6,7 @@ import { FosscordServer as APIServer } from "@fosscord/api";
import { Server as GatewayServer } from "@fosscord/gateway";
import { CDNServer } from "@fosscord/cdn/";
import express from "express";
import { red, green, bold } from "nanocolors";
import { Config, initDatabase } from "@fosscord/util";
const app = express();
@ -58,7 +59,7 @@ async function main() {
} as any);
await Promise.all([api.start(), cdn.start(), gateway.start()]);
console.log(`[Server] listening on port ${port}`);
console.log(`[Server] ${green(`listening on port ${bold(port)}`)}`);
}
main().catch(console.error);

View File

@ -1,11 +1,38 @@
// process.env.MONGOMS_DEBUG = "true";
import cluster from "cluster";
import os from "os";
import { red, bold, yellow, cyan } from "nanocolors";
import { initStats } from "./stats";
import { execSync } from "child_process";
// TODO: add tcp socket event transmission
const cores = 1 || Number(process.env.threads) || os.cpus().length;
export function getCommitOrFail() {
try {
return execSync('git rev-parse HEAD').toString().trim();
} catch(e) {
return null
}
}
const commit = getCommitOrFail()
console.log(bold(`
fosscord-server | ${yellow(`Pre-relase (${commit !== null ? commit.slice(0, 7) : "Unknown (Git cannot be found)"})`)}
Current commit: ${commit !== null ? `${cyan(commit)} (${yellow(commit.slice(0, 7))})` : "Unknown (Git cannot be found)" }
`))
if(commit == null) console.log(yellow(`Warning: Git is not installed or not in PATH.`))
if (cluster.isMaster && !process.env.masterStarted) {
process.env.masterStarted = "true";
@ -24,7 +51,7 @@ if (cluster.isMaster && !process.env.masterStarted) {
cluster.on("exit", (worker: any, code: any, signal: any) => {
console.log(
`[Worker] died with pid: ${worker.process.pid} , restarting ...`
`[Worker] ${red(`died with pid: ${worker.process.pid} , restarting ...`)}`
);
cluster.fork();
});

BIN
cdn/package-lock.json generated

Binary file not shown.

View File

@ -56,6 +56,7 @@
"lambert-server": "^1.2.8",
"missing-native-js-functions": "^1.2.15",
"multer": "^1.4.2",
"nanocolors": "^0.2.12",
"node-fetch": "^2.6.1",
"supertest": "^6.1.6",
"typescript": "^4.1.2",

View File

@ -1,6 +1,7 @@
import { FileStorage } from "./FileStorage";
import path from "path";
import fse from "fs-extra";
import { bgCyan, black } from "nanocolors";
process.cwd();
export interface Storage {
@ -18,7 +19,7 @@ if (process.env.STORAGE_PROVIDER === "file" || !process.env.STORAGE_PROVIDER) {
} else {
location = path.join(process.cwd(), "files");
}
console.log(`[CDN] storage location: ${location}`);
console.log(`[CDN] storage location: ${bgCyan(`${black(location)}`)}`);
fse.ensureDirSync(location);
process.env.STORAGE_LOCATION = location;

Binary file not shown.

BIN
util/package-lock.json generated

Binary file not shown.

View File

@ -46,6 +46,7 @@
"lambert-server": "^1.2.10",
"missing-native-js-functions": "^1.2.15",
"multer": "^1.4.3",
"nanocolors": "^0.2.12",
"node-fetch": "^2.6.1",
"patch-package": "^6.4.7",
"pg": "^8.7.1",

View File

@ -2,6 +2,7 @@ import path from "path";
import "reflect-metadata";
import { Connection, createConnection, ValueTransformer } from "typeorm";
import * as Models from "../entities";
import { yellow, green} from "nanocolors";
// UUID extension option is only supported with postgres
// We want to generate all id's with Snowflakes that's why we have our own BaseEntity class
@ -12,7 +13,7 @@ var dbConnection: Connection | undefined;
export function initDatabase() {
if (promise) return promise; // prevent initalizing multiple times
console.log("[Database] connecting ...");
console.log(`[Database] ${yellow("connecting ...")}`);
// @ts-ignore
promise = createConnection({
type: "sqlite",
@ -32,7 +33,7 @@ export function initDatabase() {
promise.then((connection) => {
dbConnection = connection;
console.log("[Database] connected");
console.log(`[Database] ${green("connected")}`);
});
return promise;