UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

76 lines (75 loc) 2.85 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Logger = void 0; const fs = __importStar(require("fs")); const path_1 = __importDefault(require("path")); const const_1 = require("../config/const"); const instances = []; class Logger { constructor(name) { var _a; this.name = name; this.fileName = name + ".txt"; this.content = ""; this.dir = (_a = process.env.LOG_DIR) !== null && _a !== void 0 ? _a : path_1.default.resolve(const_1.CLI_DIR, "public/logs"); if (!fs.existsSync(this.dir)) fs.mkdirSync(this.dir, { recursive: true }); this.filePath = path_1.default.resolve(this.dir, this.fileName); instances[name] = this; } static find(name) { return instances[name]; } static getLogs(slug) { var _a; const dir = (_a = process.env.LOG_DIR) !== null && _a !== void 0 ? _a : path_1.default.resolve(const_1.CLI_DIR, "public/logs"); if (!fs.existsSync(dir)) return; const filePath = path_1.default.resolve(dir, `${slug}.txt`); if (!fs.existsSync(filePath)) return; return fs.readFileSync(filePath, "utf8"); } read() { if (fs.existsSync(this.filePath)) { return fs.readFileSync(this.filePath, "utf8"); } else { return ""; } } append(str) { this.content += "\n" + str; const content = this.read(); if (fs.existsSync(this.filePath)) { fs.writeFileSync(this.filePath, content + "\n" + str, { flag: "w", encoding: "utf8" }); } } } exports.Logger = Logger;