forked from tagyoureit/nodejs-poolController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.ts
executable file
·155 lines (150 loc) · 6.78 KB
/
Config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* nodejs-poolController. An application to control pool equipment.
Copyright (C) 2016, 2017, 2018, 2019, 2020. Russell Goldin, tagyoureit. [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import * as path from "path";
import * as fs from "fs";
import { EventEmitter } from 'events';
//import { conn } from "../controller/comms/Comms";
const extend = require("extend");
import { logger } from "../logger/Logger";
class Config {
private cfgPath: string;
private _cfg: any;
private _isInitialized: boolean=false;
private _fileTime: Date = new Date(0);
private _isLoading: boolean = false;
public emitter: EventEmitter;
constructor() {
let self=this;
this.cfgPath = path.posix.join(process.cwd(), "/config.json");
this.emitter = new EventEmitter();
// RKS 05-18-20: This originally had multiple points of failure where it was not in the try/catch.
try {
this._isLoading = true;
this._cfg = fs.existsSync(this.cfgPath) ? JSON.parse(fs.readFileSync(this.cfgPath, "utf8")) : {};
const def = JSON.parse(fs.readFileSync(path.join(process.cwd(), "/defaultConfig.json"), "utf8").trim());
const packageJson = JSON.parse(fs.readFileSync(path.join(process.cwd(), "/package.json"), "utf8").trim());
this._cfg = extend(true, {}, def, this._cfg, { appVersion: packageJson.version });
this._isInitialized = true;
this.update((err) => {
if (typeof err === 'undefined') {
fs.watch(this.cfgPath, (event, fileName) => {
if (fileName && event === 'change') {
if (self._isLoading) return; // Need a debounce here. We will use a semaphore to cause it not to load more than once.
console.log('Updating config file');
const stats = fs.statSync(self.cfgPath);
if (stats.mtime.valueOf() === self._fileTime.valueOf()) return;
this._cfg = fs.existsSync(this.cfgPath) ? JSON.parse(fs.readFileSync(this.cfgPath, "utf8")) : {};
this._cfg = extend(true, {}, def, this._cfg, { appVersion: packageJson.version });
logger.init(); // only reload logger for now; possibly expand to other areas of app
logger.info(`Reloading app config: ${fileName}`);
this.emitter.emit('reloaded', this._cfg);
}
});
}
else throw err;
});
this._isLoading = false;
} catch (err) {
console.log(`Error reading configuration information. Aborting startup: ${ err }`);
// Rethrow this error so we exit the app with the appropriate pause in the console.
throw err;
}
}
public update(callback?: (err?) => void) {
// Don't overwrite the configuration if we failed during the initialization.
try {
if (!this._isInitialized) {
if (typeof callback === 'function') callback(new Error('njsPC has not been initialized.'));
return;
}
this._isLoading = true;
fs.writeFileSync(
this.cfgPath,
JSON.stringify(this._cfg, undefined, 2)
);
if (typeof callback === 'function') callback();
setTimeout(()=>{this._isLoading = false;}, 2000);
}
catch (err) {
logger.error("Error writing configuration file %s", err);
if (typeof callback === 'function') callback(err);
}
}
public setSection(section: string, val) {
let c = this._cfg;
if (section.indexOf('.') !== -1) {
let arr = section.split('.');
for (let i = 0; i < arr.length - 1; i++) {
if (typeof c[arr[i]] === 'undefined')
c[arr[i]] = {};
c = c[arr[i]];
}
section = arr[arr.length - 1];
}
c[section] = val;
this.update();
}
// RKS: 09-21-21 - We are counting on the return from this being immutable. A copy of the data
// should always be returned here.
public getSection(section?: string, opts?: any): any {
if (typeof section === 'undefined') return this._cfg;
let c: any = this._cfg;
if (section.indexOf('.') !== -1) {
const arr = section.split('.');
for (let i = 0; i < arr.length; i++) {
if (typeof c[arr[i]] === "undefined") {
c = null;
break;
} else c = c[arr[i]];
}
} else c = c[section];
return extend(true, {}, opts || {}, c || {});
}
public init() {
let baseDir = process.cwd();
this.ensurePath(baseDir + '/logs/');
this.ensurePath(baseDir + '/data/');
this.ensurePath(baseDir + '/backups/');
// this.ensurePath(baseDir + '/replay/');
//setTimeout(() => { config.update(); }, 100);
}
private ensurePath(dir: string) {
if (!fs.existsSync(dir)) {
fs.mkdir(dir, (err) => {
// Logger will not be initialized by the time we reach here so we must
// simply log these to the console.
if (err) console.log(`Error creating directory: ${ dir } - ${ err.message }`);
});
}
}
public setInterface(obj: any){
let interfaces: any = this._cfg.web.interfaces;
for (var i in interfaces) {
if (interfaces[i].uuid === obj.uuid) {
interfaces[i] = obj;
this.update();
return {[i]: interfaces[i]};
}
}
}
public getInterfaceByUuid(uuid: string){
let interfaces = this._cfg.web.interfaces
for (var i in interfaces) {
if (interfaces[i].uuid === uuid) {
return interfaces[i];
}
}
}
}
export const config: Config = new Config();