+ beautifier

* version info
This commit is contained in:
Taegus
2019-03-03 10:37:19 +01:00
parent de73afd5cd
commit b0cd7d517a
19 changed files with 1648 additions and 1697 deletions

View File

@@ -1,47 +1,44 @@
const {app, dialog, ipcMain} = require('electron');
const child_process = require('child_process');
const appRoot = require('app-root-path');
const path = require('path');
const fs = require('fs');
const os = require('os');
const {app, dialog, ipcMain} = require("electron");
const child_process = require("child_process");
const appRoot = require("app-root-path");
const path = require("path");
const fs = require("fs");
const os = require("os");
class Geth {
constructor() {
this.gethProcess = null;
this.logGethEvents = false;
// create the user data dir (needed for MacOS)
if (!fs.existsSync(app.getPath('userData'))) {
fs.mkdirSync(app.getPath('userData'));
}
if (this.logGethEvents) {
this.logStream = fs.createWriteStream(path.join(app.getPath('userData'), 'gethlog.txt'), { flags: 'a' });
if (!fs.existsSync(app.getPath("userData"))) {
fs.mkdirSync(app.getPath("userData"));
}
if (appRoot.path.indexOf('app.asar') > -1) {
if (this.logGethEvents) {
this.logStream = fs.createWriteStream(path.join(app.getPath("userData"), "gethlog.txt"), {flags: "a"});
}
if (appRoot.path.indexOf("app.asar") > -1) {
this.rootPath = path.dirname(appRoot.path);
} else {
this.rootPath = appRoot.path;
}
switch(os.type()) {
switch (os.type()) {
case "Linux":
this.binaries = path.join(this.rootPath, 'bin', 'linux');
this.binaries = path.join(this.rootPath, "bin", "linux");
break;
case "Darwin":
this.binaries = path.join(this.rootPath, 'bin', 'macos');
this.binaries = path.join(this.rootPath, "bin", "macos");
break;
case "Windows_NT":
this.binaries = path.join(this.rootPath, 'bin', 'win');
this.binaries = path.join(this.rootPath, "bin", "win");
break;
default:
this.binaries = path.join(this.rootPath, 'bin', 'win');
}
this.binaries = path.join(this.rootPath, "bin", "win");
}
}
_writeLog(text) {
if (this.logGethEvents) {
this.logStream.write(text);
@@ -51,23 +48,33 @@ class Geth {
startGeth() {
// get the path of get and execute the child process
try {
const gethPath = path.join(this.binaries, 'geth');
this.gethProcess = child_process.spawn(gethPath, ['--ws', '--wsorigins', '*', '--wsaddr', '127.0.0.1', '--wsport', '8546', '--wsapi', 'admin,db,eth,net,miner,personal,web3']);
const gethPath = path.join(this.binaries, "geth");
this.gethProcess = child_process.spawn(gethPath, [
"--ws",
"--wsorigins",
"*",
"--wsaddr",
"127.0.0.1",
"--wsport",
"8546",
"--wsapi",
"admin,db,eth,net,miner,personal,web3"
]);
if (!this.gethProcess) {
dialog.showErrorBox("Error starting application", "Geth failed to start!");
app.quit();
} else {
this.gethProcess.on('error', function(err) {
this.gethProcess.on("error", function (err) {
dialog.showErrorBox("Error starting application", "Geth failed to start!");
app.quit();
});
this.gethProcess.stderr.on('data', function(data) {
EthoGeth._writeLog(data.toString() + '\n');
this.gethProcess.stderr.on("data", function (data) {
EthoGeth._writeLog(data.toString() + "\n");
});
this.gethProcess.stdout.on("data", function (data) {
EthoGeth._writeLog(data.toString() + "\n");
});
this.gethProcess.stdout.on('data', function(data) {
EthoGeth._writeLog(data.toString() + '\n');
});
}
} catch (err) {
dialog.showErrorBox("Error starting application", err.message);
@@ -75,18 +82,18 @@ class Geth {
}
}
stopGeth() {
stopGeth() {
if (os.type() == "Windows_NT") {
const gethWrapePath = path.join(this.binaries, 'WrapGeth.exe');
child_process.spawnSync(gethWrapePath, [this.gethProcess.pid]);
const gethWrapePath = path.join(this.binaries, "WrapGeth.exe");
child_process.spawnSync(gethWrapePath, [this.gethProcess.pid]);
} else {
this.gethProcess.kill('SIGTERM');
this.gethProcess.kill("SIGTERM");
}
}
}
ipcMain.on('stopGeth', (event, arg) => {
ipcMain.on("stopGeth", (event, arg) => {
EthoGeth.stopGeth();
});
});
EthoGeth = new Geth();