forked from aspectron/kdx
-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.js
287 lines (254 loc) · 7.03 KB
/
app.js
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
const { App : FlowApp } = require('@aspectron/flow-app');
const utils = require('@aspectron/flow-utils');
const util = require('./lib/utils.js');
const crypto = require('crypto');
const bs58 = require('bs58');
const colors = require('colors');
const fs = require('fs');
const fse = require('fs-extra');
const os = require('os');
const path = require('path');
class App extends FlowApp{
constructor(options={}){
Object.assign(options, {
ident: 'karlsen-desktop',
appFolder: process.cwd()
})
super(options);
this.on("init", ()=>{
this.main();
})
}
async initConfig(){
// change of this argument results in the reset of the user data folder
// const currentNetworkType = 'testnet5c';
const currentNetworkType = 'mainnet1a';
const networkTagFile = path.join(this.getConfigFolderPath(), '.network-type');
let reset = false;
if(!fs.existsSync(networkTagFile)) {
reset = true;
}
else
if(fs.existsSync(networkTagFile)) {
let networkType = fs.readFileSync(networkTagFile,'utf8');
if(!networkType.includes(currentNetworkType))
reset = true;
}
if(reset) {
try {
await fse.remove(this.getConfigFolderPath());
} catch(ex) {
alert('Error resetting Karlsen Desktop data folder: '+ex);
}
await fse.ensureDir(this.getConfigFolderPath());
fs.writeFileSync(networkTagFile, currentNetworkType, { encoding : 'utf8'});
}
await super.initConfig();
await this.initDataFolder();
await this.initCerts();
this.setUpnpIfMissing(true);
}
/**
* initlize data folder
*/
async initDataFolder(){
if(typeof this.config.dataDir == 'undefined' && !('init' in this.flags)) // this.flags.init)
return this.dataDirInitError();
let {init} = this.flags;
if(init && init != '.' && typeof init == 'string')
this.config.dataDir = init;
if(this.config.dataDir){
let dataDir = this.config.dataDir.replace('~', os.homedir());
if(!path.isAbsolute(dataDir))
return `config.dataDir (${this.config.dataDir}) is not a absolute path.`;
this.dataFolder = dataDir;
}else{
this.dataFolder = this.getDefaultDataFolderPath();
this.config.dataDir = '';
}
this.log("DataFolder", this.dataFolder)
this.ensureDirSync(this.dataFolder);
if(init)
await this.setConfig(this.config);
this.onDataDirInit();
}
/**
* initlizing data folder error handler
*/
dataDirInitError(){
console.log(`Please start app with --init=/path/to/data/dir or --init for default (~/.karlsen-desktop/data)`);
this.exit();
}
onDataDirInit(){
//placeholder
}
/**
* @return {String} default path to data folder
*/
getDefaultDataFolderPath(){
return path.join(this.getConfigFolderPath(),'data');
}
/**
* set dataDir
* @param {String} dataDir dataDir
*/
async setDataDir(dataDir){
this.config.dataDir = dataDir;
await this.setConfig(this.config);
}
async initCerts() {
if(!this.dataFolder)
return
if(!fs.existsSync(path.join(this.dataFolder,'rpc.cert'))) {
const gencerts = path.join(__dirname,'bin',util.platform,'gencerts'+(util.platform == 'windows-x64'?'.exe':''));
if(fs.existsSync(gencerts)) {
await utils.spawn(gencerts,[],{cwd : this.dataFolder});
} else {
console.log('Error: no RPC certificates available');
}
}
}
async removeDataDir(){
try {
let datadir2path = path.join(this.dataFolder, "karlsend-kd0", "karlsen-mainnet", "datadir2");
console.log("removeDataDir: datadir2path", datadir2path)
if(fs.existsSync(datadir2path)){
await fse.remove(datadir2path);
return !fs.existsSync(datadir2path);
}else{
return true;
}
} catch(err) {
console.log("removeDataDir: error:", err)
}
return false;
}
/**
* @return {String} path to Binaries Folder
*/
getBinaryFolder(){
return path.join(this.appFolder, 'bin', util.platform);
}
randomBytes() {
let bytes = crypto.randomBytes(32);
let text = bs58.encode(bytes).split('');
while(/\d/.test(text[0]))
text.shift();
text = text.join('');
return text;
}
getDefaultConfig(){
let config = super.getDefaultConfig();
if(!process.env['KARLSEN_JSON_RPC'])
return config;
let rpcuser = this.randomBytes();
let rpcpass = this.randomBytes();
Object.entries(config.modules).forEach(([k,v]) => {
const type = k.split(':').shift();
if(['karlsend'].includes(type)) {
v.args.rpcuser = rpcuser;
v.args.rpcpass = rpcpass;
}
});
return config;
}
setInvertTerminals(invertTerminals){
this.config.invertTerminals = !!invertTerminals;
this.setConfig(this.config);
}
setRunInBG(runInBG){
this.config.runInBG = !!runInBG;
this.setConfig(this.config);
}
setSkipUTXOIndex(skipUTXOIndex){
skipUTXOIndex = !!skipUTXOIndex;
return this.setModuleArgs("karlsend:", {}, {"skip-utxoindex":skipUTXOIndex})
}
getSkipUTXOIndex(){
let {args, params} = this.getModuleArgs("karlsend:");
return !!params["skip-utxoindex"];
}
setModuleArgs(search, args={}, params={}){
let modules = this.getModulesConfig();
let updated = false;
Object.keys(modules).forEach(key=>{
if(!key.includes(search))
return
args = {...(modules[key].args || {}), ...args};
modules[key] = {...modules[key], ...params, args};
updated = true;
})
if(updated){
this.config.modules = modules;
this.setConfig(this.config);
return true
}
return false
}
getModuleArgs(search){
let args = {};
let params = {};
let modules = this.getModulesConfig();
Object.keys(modules).find(key=>{
if(!key.includes(search))
return
args = {...(modules[key].args || {}), ...args};
params = {...modules[key], ...params, args};
return true;
})
return {args, params};
}
setEnableMetrics(enableMetrics){
this.config.enableMetrics = !!enableMetrics;
this.setConfig(this.config);
}
setStatsdAddress(statsdAddress){
this.config.statsdAddress = statsdAddress;
this.setConfig(this.config);
}
setStatsdPrefix(statsdPrefix){
this.config.statsdPrefix = statsdPrefix;
this.setConfig(this.config);
}
setBuildType(build) {
this.config.build = build;
this.setConfig(this.config);
}
getModulesConfig(defaults={}){
return this.config.modules || {};
}
saveModulesConfig(modules = {}){
this.config.modules = modules;
this.setConfig(this.config);
}
setModulesConfigTemplate(defaults, network, upnpEnabled) {
let prev = this.config;
if(prev) {
delete prev.modules;
}
this.config = Object.assign({},defaults,prev||{});
this.config.network = network;
this.config.upnpEnabled = upnpEnabled;
this.setUpnpIfMissing(upnpEnabled);
if(network != 'mainnet') {
Object.keys(this.config.modules).forEach((k) =>{
const [type,ident] = k.split(':');
if(/^(karlsen)/.test(type))
this.config.modules[k].args[network] = true;
})
}
this.setConfig(this.config);
// TODO - apply network settings
}
setUpnpIfMissing(upnpEnabled) {
if (this.config?.modules) {
Object.keys(this.config.modules).forEach((k) =>{
if (k.startsWith('karlsend:') && !('upnpEnabled' in this.config.modules[k])) {
console.info(`${upnpEnabled ? 'Enabling' : 'Disabling'} UPNP for ${k}`);
this.config.modules[k].upnpEnabled = upnpEnabled;
};
});
}
}
}
module.exports = App;