forked from ethereum/mist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
400 lines (309 loc) · 12.5 KB
/
main.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
global._ = require('./modules/utils/underscore');
const { app, dialog, ipcMain, shell, protocol } = require('electron');
const timesync = require('os-timesync');
const dbSync = require('./modules/dbSync.js');
const i18n = require('./modules/i18n.js');
const logger = require('./modules/utils/logger');
const Sockets = require('./modules/socketManager');
const Windows = require('./modules/windows');
const ClientBinaryManager = require('./modules/clientBinaryManager');
const UpdateChecker = require('./modules/updateChecker');
const Q = require('bluebird');
const windowStateKeeper = require('electron-window-state');
const log = logger.create('main');
const Settings = require('./modules/settings');
import configureReduxStore from './modules/core/store';
import { quitApp } from './modules/core/ui/actions';
import { setLanguageOnMain, toggleSwarm } from './modules/core/settings/actions';
import { SwarmState } from './modules/core/settings/reducer';
import swarmNode from './modules/swarmNode.js';
Q.config({
cancellation: true,
});
global.store = configureReduxStore();
Settings.init();
const db = global.db = require('./modules/db');
require('./modules/ipcCommunicator.js');
const appMenu = require('./modules/menuItems');
const ipcProviderBackend = require('./modules/ipc/ipcProviderBackend.js');
const ethereumNode = require('./modules/ethereumNode.js');
const nodeSync = require('./modules/nodeSync.js');
// Define global vars; The preloader makes some globals available to the client.
global.webviews = [];
global.mining = false;
global.mode = store.getState().settings.uiMode;
global.icon = `${__dirname}/icons/${global.mode}/icon.png`;
global.dirname = __dirname;
global.i18n = i18n;
// INTERFACE PATHS
// - WALLET
if (global.mode === 'wallet') {
log.info('Starting in Wallet mode');
global.interfaceAppUrl = (Settings.inProductionMode)
? `file://${__dirname}/interface/wallet/index.html`
: 'http://localhost:3050';
global.interfacePopupsUrl = (Settings.inProductionMode)
? `file://${__dirname}/interface/index.html`
: 'http://localhost:3000';
// - MIST
} else {
log.info('Starting in Mist mode');
let url = (Settings.inProductionMode)
? `file://${__dirname}/interface/index.html`
: 'http://localhost:3000';
if (Settings.cli.resetTabs) {
url += '?reset-tabs=true';
}
global.interfaceAppUrl = global.interfacePopupsUrl = url;
}
// prevent crashes and close gracefully
process.on('uncaughtException', (error) => {
log.error('UNCAUGHT EXCEPTION', error);
store.dispatch(quitApp());
});
// Quit when all windows are closed.
app.on('window-all-closed', () => store.dispatch(quitApp()));
// Listen to custom protocol incoming messages, needs registering of URL schemes
app.on('open-url', (e, url) => log.info('Open URL', url));
let killedSocketsAndNodes = false;
app.on('before-quit', async (event) => {
if (!killedSocketsAndNodes) {
log.info('Defer quitting until sockets and node are shut down');
event.preventDefault();
// sockets manager
try {
await Sockets.destroyAll();
store.dispatch({ type: '[MAIN]:SOCKETS:DESTROY' });
} catch (e) {
log.error('Error shutting down sockets');
}
// delay quit, so the sockets can close
setTimeout(async () => {
await ethereumNode.stop();
store.dispatch({ type: '[MAIN]:ETH_NODE:STOP' });
killedSocketsAndNodes = true;
await db.close();
store.dispatch({ type: '[MAIN]:DB:CLOSE' });
store.dispatch(quitApp());
}, 500);
} else {
log.info('About to quit...');
}
});
let mainWindow;
let splashWindow;
// This method will be called when Electron has done everything
// initialization and ready for creating browser windows.
app.on('ready', async () => {
// if using HTTP RPC then inform user
if (Settings.rpcMode === 'http') {
dialog.showErrorBox('Insecure RPC connection', `
WARNING: You are connecting to an Ethereum node via: ${Settings.rpcHttpPath}
This is less secure than using local IPC - your passwords will be sent over the wire in plaintext.
Only do this if you have secured your HTTP connection or you know what you are doing.
`);
}
// initialise the db
try {
await global.db.init();
store.dispatch({ type: '[MAIN]:DB:INIT' });
onReady();
} catch (e) {
log.error(e);
store.dispatch(quitApp());
}
});
protocol.registerStandardSchemes(['bzz']);
store.dispatch({ type: '[MAIN]:PROTOCOL:REGISTER', payload: { protocol: 'bzz' } });
async function onReady() {
global.config = db.getCollection('SYS_config');
dbSync.initializeListeners();
Windows.init();
enableSwarmProtocol();
if (!Settings.inAutoTestMode) { await UpdateChecker.run(); }
ipcProviderBackend.init();
// TODO: Settings.language relies on global.config object being set
store.dispatch(setLanguageOnMain(Settings.language));
appMenu();
createCoreWindows();
checkTimeSync();
splashWindow ? splashWindow.on('ready', kickStart) : kickStart();
}
function enableSwarmProtocol() {
protocol.registerHttpProtocol('bzz', (request, callback) => {
if ([SwarmState.Disabling, SwarmState.Disabled].includes(store.getState().settings.swarmState)) {
const error = global.i18n.t('mist.errors.swarm.notEnabled');
dialog.showErrorBox('Note', error);
callback({ error });
store.dispatch({ type: '[MAIN]:PROTOCOL:ERROR', payload: { protocol: 'bzz', error } });
return;
}
const redirectPath = `${Settings.swarmURL}/${request.url.replace('bzz:/', 'bzz://')}`;
if (store.getState().settings.swarmState === SwarmState.Enabling) {
swarmNode.on('started', () => {
callback({ method: request.method, referrer: request.referrer, url: redirectPath });
});
} else { // Swarm enabled
callback({ method: request.method, referrer: request.referrer, url: redirectPath });
}
store.dispatch({ type: '[MAIN]:PROTOCOL:REQUEST', payload: { protocol: 'bzz' } });
}, (error) => {
if (error) {
log.error(error);
}
});
}
function createCoreWindows() {
global.defaultWindow = windowStateKeeper({ defaultWidth: 1024 + 208, defaultHeight: 720 });
// Create the browser window.
mainWindow = Windows.create('main');
// Delegating events to save window bounds on windowStateKeeper
global.defaultWindow.manage(mainWindow.window);
if (!Settings.inAutoTestMode) { splashWindow = Windows.create('splash'); }
}
function checkTimeSync() {
if (!Settings.skiptimesynccheck) {
timesync.checkEnabled((err, enabled) => {
if (err) {
log.error('Couldn\'t infer if computer automatically syncs time.', err);
return;
}
if (!enabled) {
dialog.showMessageBox({
type: 'warning',
buttons: ['OK'],
message: global.i18n.t('mist.errors.timeSync.title'),
detail: `${global.i18n.t('mist.errors.timeSync.description')}\n\n${global.i18n.t(`mist.errors.timeSync.${process.platform}`)}`,
}, () => {
});
}
});
}
}
async function kickStart() {
initializeKickStartListeners();
checkForLegacyChain();
await ClientBinaryManager.init();
await ethereumNode.init();
if (Settings.enableSwarmOnStart) { store.dispatch(toggleSwarm()); }
if (!ethereumNode.isIpcConnected) { throw new Error('Either the node didn\'t start or IPC socket failed to connect.'); }
log.info('Connected via IPC to node.');
// Update menu, to show node switching possibilities
appMenu();
await handleOnboarding();
if (splashWindow) { splashWindow.show(); }
if (!Settings.inAutoTestMode) { await handleNodeSync(); }
await startMainWindow();
}
function checkForLegacyChain() {
if ((Settings.loadUserData('daoFork') || '').trim() === 'false') {
dialog.showMessageBox({
type: 'warning',
buttons: ['OK'],
message: global.i18n.t('mist.errors.legacyChain.title'),
detail: global.i18n.t('mist.errors.legacyChain.description')
}, () => {
shell.openExternal('https://github.com/ethereum/mist/releases');
store.dispatch(quitApp());
});
throw new Error('Cant start client due to legacy non-Fork setting.');
}
}
function initializeKickStartListeners() {
ClientBinaryManager.on('status', (status, data) => {
Windows.broadcast('uiAction_clientBinaryStatus', status, data);
});
ethereumNode.on('nodeConnectionTimeout', () => {
Windows.broadcast('uiAction_nodeStatus', 'connectionTimeout');
});
ethereumNode.on('nodeLog', (data) => {
Windows.broadcast('uiAction_nodeLogText', data.replace(/^.*[0-9]]/, ''));
});
ethereumNode.on('state', (state, stateAsText) => {
Windows.broadcast('uiAction_nodeStatus', stateAsText,
ethereumNode.STATES.ERROR === state ? ethereumNode.lastError : null
);
});
}
async function handleOnboarding() {
// Fetch accounts; if none, show the onboarding process
const resultData = await ethereumNode.send('eth_accounts', []);
if (ethereumNode.isGeth && (resultData.result === null || (_.isArray(resultData.result) && resultData.result.length === 0))) {
log.info('No accounts setup yet, lets do onboarding first.');
await new Q((resolve, reject) => {
const onboardingWindow = Windows.createPopup('onboardingScreen');
onboardingWindow.on('closed', () => store.dispatch(quitApp()));
// Handle changing network types (mainnet, testnet)
ipcMain.on('onBoarding_changeNet', (e, testnet) => {
const newType = ethereumNode.type;
const newNetwork = testnet ? 'rinkeby' : 'main';
log.debug('Onboarding change network', newType, newNetwork);
ethereumNode.restart(newType, newNetwork)
.then(function nodeRestarted() {
appMenu();
})
.catch((err) => {
log.error('Error restarting node', err);
reject(err);
});
});
ipcMain.on('onBoarding_launchApp', () => {
onboardingWindow.removeAllListeners('closed');
onboardingWindow.close();
ipcMain.removeAllListeners('onBoarding_changeNet');
ipcMain.removeAllListeners('onBoarding_launchApp');
resolve();
});
if (splashWindow) { splashWindow.hide(); }
});
}
}
function handleNodeSync() {
return new Q((resolve, reject) => {
nodeSync.on('nodeSyncing', (result) => {
Windows.broadcast('uiAction_nodeSyncStatus', 'inProgress', result);
});
nodeSync.on('stopped', () => {
Windows.broadcast('uiAction_nodeSyncStatus', 'stopped');
});
nodeSync.on('error', (err) => {
log.error('Error syncing node', err);
reject(err);
});
nodeSync.on('finished', () => {
nodeSync.removeAllListeners('error');
nodeSync.removeAllListeners('finished');
resolve();
});
});
}
function startMainWindow() {
log.info(`Loading Interface at ${global.interfaceAppUrl}`);
initializeMainWindowListeners();
initializeTabs();
}
function initializeMainWindowListeners() {
mainWindow.on('ready', () => {
if (splashWindow) { splashWindow.close(); }
mainWindow.show();
});
mainWindow.load(global.interfaceAppUrl);
mainWindow.on('closed', () => store.dispatch(quitApp()));
}
function initializeTabs() {
const Tabs = global.db.getCollection('UI_tabs');
const sortedTabs = Tabs.getDynamicView('sorted_tabs') || Tabs.addDynamicView('sorted_tabs');
sortedTabs.applySimpleSort('position', false);
const refreshMenu = () => {
clearTimeout(global._refreshMenuFromTabsTimer);
global._refreshMenuFromTabsTimer = setTimeout(() => {
log.debug('Refresh menu with tabs');
global.webviews = sortedTabs.data();
appMenu(global.webviews);
store.dispatch({ type: '[MAIN]:MENU:REFRESH' });
}, 1000);
};
Tabs.on('insert', refreshMenu);
Tabs.on('update', refreshMenu);
Tabs.on('delete', refreshMenu);
}