fmi/config.js

246 lines
6.6 KiB
JavaScript
Raw Permalink Normal View History

2021-10-22 21:53:35 +02:00
import fs from "fs";
2022-08-26 20:44:20 +02:00
import fetch from 'node-fetch';
import path from "path";
2021-10-22 21:53:35 +02:00
2022-08-26 20:44:20 +02:00
export default class fmi {
#groups = {};
#pathfile = null;
constructor(struct) {
for (let g in struct) {
this.#groups[g] = new Group(struct[g]);
}
}
connect(file,dir=process.cwd()){
var exists = true;
this.#pathfile = jpath(dir,file);
if (!fs.existsSync(this.#pathfile) || !fs.lstatSync(this.#pathfile).isFile()) {
console.warn("Config does't exists. It will be created: " + this.#pathfile);
exists = false;
}else{
this.fromJUML(fs.readFileSync(this.#pathfile).toString());
}
this.save();
return exists;
}
2021-10-22 21:53:35 +02:00
2022-08-26 20:44:20 +02:00
get(group, name, empty = null){
if ((this.#groups[group] ?? {})[name] == null){
return empty;
}
return this.#groups[group][name].valueOf();
}
set(group, name, value){
if ((this.#groups[group] ?? {})[name] == null) {
return false;
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
this.#groups[group][name].set(value);
2022-09-06 17:46:36 +02:00
return true;
2022-08-26 20:44:20 +02:00
}
save(){
if(this.#pathfile != null) fs.writeFileSync(this.#pathfile, this.toJUML());
}
fromJUML(juml) {
var comment = [];
let nowGroup = null;
juml.split("\n").map(s => s.trim()).forEach(now => {
if (now.startsWith("#")) {
comment.push(now.slice(1));
} else if (now.startsWith("[") && now.endsWith("]")) {
let groupName = now.slice(1, -1);
nowGroup = this.#groups[groupName] || null;
nowGroup.setComment(comment.join("\n"));
comment = [];
} else if (now.includes("=") && nowGroup != null) {
let nows = now.split("=");
let name = nows.splice(0, 1)[0].trim();
let data = nows.join("=").trim();
if (nowGroup[name] != null){
nowGroup[name].set = data;
nowGroup[name].comment = comment.join("\n");
comment = [];
}
}
});
}
toJUML() {
let json = this.#groups;
var out = "";
for (let group in json) {
if (json[group].comment() != "") {
out += "\n";
out += json[group].comment().split("\n").map(d => "#" + d).join("\n");
}
out += `\n[${group}]\n`;
for (let name in json[group]) {
if (json[group][name].comment != "") {
out += json[group][name].comment.split("\n").map(d => "#" + d).join("\n");
out += "\n";
}
out += name + "=" + json[group][name] + "\n";
}
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
return out;
}
readPath (path,dir=process.cwd()){
return new Promise((res,rej)=>{
if (path.startsWith("http")) {
fetch(path)
.then(d=>d.text())
.then(d=>res(d))
.catch(()=>{
rej("Error occurred while fetching: " + path)
})
} else {
const pathf = jpath(dir, path);
2022-09-06 17:46:36 +02:00
if (!fs.existsSync(pathf) || !fs.statSync(pathf).isFile()) {
2022-08-26 20:44:20 +02:00
rej("Coud not find File: " + pathf);
} else {
try {
var content = fs.readFileSync(pathf).toString();
res(content);
} catch (e) {
rej("Error occurred while reading: " + pathf);
}
}
}
});
}
readPathes(...pathes) {
return new Promise(async (res, rej) => {
var out = [];
for (var i = 0; i < pathes.length; i++) {
try {
out[i] = await this.readPath(pathes[i]);
} catch (e) {
rej(e);
}
}
res(out);
2021-10-22 21:53:35 +02:00
});
2022-08-26 20:44:20 +02:00
};
}
class Group extends Object {
#comment = "";
constructor(struct) {
super({});
for (let e in struct) {
let elem = struct[e];
switch (elem.type || "string") {
case "number": {
this[e] = new NField(elem.default ?? 0, elem.comment ?? "", elem.env ?? "");
} break;
case "boolean": {
this[e] = new BField(elem.default ?? false, elem.comment ?? "", elem.env ?? "");
} break;
case "string": {
this[e] = new SField(elem.default ?? "", elem.comment ?? "", elem.env ?? "");
} break;
}
}
}
comment(){
return this.#comment
}
setComment(c){
this.#comment = c;
}
}
class NField {
comment = "";
#value = 0;
constructor(v, comment, env) {
if (env != "" && process.env[env]) {
this.#value = Number(createType(process.env[env]));
} else {
this.#value = Number(createType(v));
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
this.comment = comment;
}
/**
* @param {Number} v
*/
set set(v){
this.#value = Number(createType(v));
}
valueOf() {
return this.#value;
}
}
class BField {
comment = "";
#value = false;
constructor(v, comment, env) {
if (env != "" && process.env[env]) {
this.#value = Boolean(createType(process.env[env]));
} else {
this.#value = Boolean(createType(v));
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
this.comment = comment;
}
/**
* @param {Boolean} v
*/
set set(v) {
this.#value = Boolean(createType(v));
}
valueOf() {
return this.#value;
}
}
class SField {
comment = "";
#value = "";
2021-10-22 21:53:35 +02:00
2022-08-26 20:44:20 +02:00
constructor(v, comment, env) {
if (env != "" && process.env[env]) {
this.#value = String(createType(process.env[env]));
} else {
this.#value = String(createType(v));
}
this.comment = comment;
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
/**
* @param {String} v
*/
set set(v) {
this.#value = String(createType(v));
}
valueOf() {
return this.#value;
}
}
2021-10-22 21:53:35 +02:00
2022-08-26 20:44:20 +02:00
function createType(data) {
2021-10-22 21:53:35 +02:00
if (data == "true") {
2022-08-26 20:44:20 +02:00
return true;
2021-10-22 21:53:35 +02:00
}
if (data == "false") {
2022-08-26 20:44:20 +02:00
return false;
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
if (String(data).toLowerCase() == "infinity") {
return Infinity;
2021-10-22 21:53:35 +02:00
}
2022-08-26 20:44:20 +02:00
if (String(data).toLowerCase() == "-infinity") {
return -Infinity;
2021-10-22 21:53:35 +02:00
}
if (!isNaN(data)) {
2022-08-26 20:44:20 +02:00
return Number(data);
2021-10-22 21:53:35 +02:00
}
return data;
}
2022-08-26 20:44:20 +02:00
function jpath(a, b) {
if (b.startsWith("/")) {
return b;
}
return path.join(a, b);
}