BetterDiscordApp-v2/core/src/main.js

196 lines
6.2 KiB
JavaScript
Raw Normal View History

2018-01-10 20:19:34 +01:00
/**
* BetterDiscord Core Entry
* Copyright (c) 2015-present JsSucks - https://github.com/JsSucks
* All rights reserved.
* https://github.com/JsSucks - https://betterdiscord.net
*
* This source code is licensed under the MIT license found in the
2018-02-03 00:42:12 +01:00
* LICENSE file in the root directory of this source tree.
2018-01-10 20:19:34 +01:00
*/
const path = require('path');
2018-02-11 15:59:55 +01:00
const sass = require('node-sass');
2018-01-10 23:15:31 +01:00
const { FileUtils, BDIpc, Config, WindowUtils, CSSEditor, Database } = require('./modules');
2018-02-03 00:42:12 +01:00
const { BrowserWindow, dialog } = require('electron');
2018-01-10 17:02:29 +01:00
const tests = true;
const _clientScript = tests
? path.resolve(__dirname, '..', '..', 'client', 'dist', 'betterdiscord.client.js')
: path.resolve(__dirname, 'betterdiscord.client.js');
const _dataPath = tests
? path.resolve(__dirname, '..', '..', 'tests', 'data')
: path.resolve(__dirname, 'data');
const _extPath = tests
? path.resolve(__dirname, '..', '..', 'tests', 'ext')
: path.resolve(__dirname, 'ext');
const _pluginPath = path.resolve(_extPath, 'plugins');
const _themePath = path.resolve(_extPath, 'themes');
const _modulePath = path.resolve(_extPath, 'modules');
2018-03-19 22:26:13 +01:00
const _cssEditorPath = tests
2018-03-20 00:02:40 +01:00
? path.resolve(__dirname, '..', '..', 'csseditor', 'dist')
2018-03-19 22:26:13 +01:00
: path.resolve(__dirname, 'csseditor');
const paths = [
{ id: 'cs', path: _clientScript.replace(/\\/g, '/') },
{ id: 'data', path: _dataPath.replace(/\\/g, '/') },
{ id: 'ext', path: _extPath.replace(/\\/g, '/') },
{ id: 'plugins', path: _pluginPath.replace(/\\/g, '/') },
{ id: 'themes', path: _themePath.replace(/\\/g, '/') },
2018-03-19 22:26:13 +01:00
{ id: 'modules', path: _modulePath.replace(/\\/g, '/') },
{ id: 'csseditor', path: _cssEditorPath.replace(/\\/g, '/') }
];
const sparkplug = path.resolve(__dirname, 'sparkplug.js').replace(/\\/g, '/');
2018-01-10 17:02:29 +01:00
const Common = {};
const globals = {
version: '2.0.0a',
paths
}
2018-01-11 13:37:52 +01:00
const dbInstance = new Database(paths.find(path => path.id === 'data').path);
2018-01-11 13:37:52 +01:00
2018-01-10 17:02:29 +01:00
class Comms {
constructor(bd) {
2018-02-15 18:09:06 +01:00
this.bd = bd;
2018-01-10 17:02:29 +01:00
this.initListeners();
}
initListeners() {
BDIpc.on('bd-getConfig', o => {
o.reply(Common.Config.config);
});
BDIpc.on('bd-sendToDiscord', event => this.bd.windowUtils.send(event.args.channel, event.args.message));
BDIpc.on('bd-openCssEditor', o => this.bd.csseditor.openEditor(o));
// BDIpc.on('bd-setScss', o => this.bd.csseditor.setSCSS(o.args.scss));
BDIpc.on('bd-sendToCssEditor', o => this.bd.csseditor.send(o.args.channel, o.args.data));
2018-01-17 12:28:52 +01:00
2018-01-10 17:02:29 +01:00
BDIpc.on('bd-readFile', this.readFile);
BDIpc.on('bd-readJson', o => this.readFile(o, true));
2018-02-03 00:42:12 +01:00
BDIpc.on('bd-native-open', o => {
dialog.showOpenDialog(BrowserWindow.fromWebContents(o.ipcEvent.sender), o.args, filenames => {
o.reply(filenames);
});
});
2018-02-11 15:59:55 +01:00
BDIpc.on('bd-compileSass', o => {
if (!o.args.path && !o.args.data) return o.reply('');
2018-02-15 20:14:08 +01:00
if (typeof o.args.path === 'string' && typeof o.args.data === 'string') {
2018-03-05 17:19:09 +01:00
o.args.data = `${o.args.data} @import '${o.args.path.replace(/\\/g, '\\\\').replace(/'/g, '\\\'')}';`;
2018-02-13 20:56:01 +01:00
o.args.path = undefined;
}
2018-02-11 15:59:55 +01:00
2018-02-13 20:56:01 +01:00
sass.render(o.args, (err, result) => {
2018-02-11 15:59:55 +01:00
if (err) {
o.reply({ err });
return;
}
o.reply(result);
2018-02-11 15:59:55 +01:00
});
});
2018-03-07 09:12:44 +01:00
BDIpc.on('bd-dba', o => {
(async () => {
try {
const ret = await dbInstance.exec(o.args);
o.reply(ret);
} catch (err) {
2018-03-07 09:36:18 +01:00
o.reply({err});
2018-03-07 09:12:44 +01:00
}
})();
});
2018-01-10 17:02:29 +01:00
}
async readFile(o, json) {
const { path } = o.args;
try {
const readFile = json ? await FileUtils.readJsonFromFile(path) : await FileUtils.readFile(path);
o.reply(readFile);
} catch (err) {
o.reply(err);
}
}
2018-01-14 07:00:21 +01:00
async send(channel, message) {
BDIpc.send(channel, message);
}
2018-01-10 17:02:29 +01:00
}
class BetterDiscord {
constructor(args) {
if (BetterDiscord.loaded) {
console.log('Creating two BetterDiscord objects???');
return null;
}
BetterDiscord.loaded = true;
2018-01-10 23:41:57 +01:00
this.injectScripts = this.injectScripts.bind(this);
2018-01-12 02:06:43 +01:00
this.ignite = this.ignite.bind(this);
Common.Config = new Config(globals);
this.comms = new Comms(this);
2018-01-10 23:15:31 +01:00
this.init();
}
async init() {
const window = await this.waitForWindow();
this.windowUtils = new WindowUtils({ window });
2018-01-10 23:41:57 +01:00
2018-03-19 22:26:13 +01:00
this.csseditor = new CSSEditor(this, paths.find(path => path.id === 'csseditor').path);
2018-01-14 07:00:21 +01:00
this.windowUtils.events('did-get-response-details', () => this.ignite(this.windowUtils.window));
this.windowUtils.events('did-finish-load', e => this.injectScripts(true));
this.windowUtils.events('did-navigate-in-page', (event, url, isMainFrame) => {
this.windowUtils.send('did-navigate-in-page', { event, url, isMainFrame });
});
2018-01-10 23:15:31 +01:00
setTimeout(() => {
this.injectScripts();
2018-01-10 23:15:31 +01:00
}, 500);
}
async waitForWindow() {
2018-01-12 02:06:43 +01:00
const self = this;
return new Promise(resolve => {
2018-01-10 23:15:31 +01:00
const defer = setInterval(() => {
const windows = BrowserWindow.getAllWindows();
2018-01-12 02:06:43 +01:00
if (windows.length > 0) {
windows.forEach(window => {
self.ignite(window);
});
}
if (windows.length === 1 && windows[0].webContents.getURL().includes('discordapp.com')) {
2018-01-10 23:15:31 +01:00
resolve(windows[0]);
clearInterval(defer);
}
2018-01-12 02:06:43 +01:00
}, 10);
2018-01-10 23:15:31 +01:00
});
2018-01-10 17:02:29 +01:00
}
2018-01-12 02:06:43 +01:00
ignite(window) {
//Hook things that Discord removes from global. These will be removed again in the client script
window.webContents.executeJavaScript(`require("${sparkplug}");`);
2018-01-12 02:06:43 +01:00
}
2018-01-11 13:37:52 +01:00
injectScripts(reload = false) {
2018-01-12 02:06:43 +01:00
console.log(`RELOAD? ${reload}`);
this.windowUtils.injectScript(paths.find(path => path.id === 'cs').path);
2018-01-10 23:41:57 +01:00
}
2018-01-10 17:02:29 +01:00
get fileUtils() { return FileUtils; }
}
module.exports = {
BetterDiscord
2018-02-13 20:56:01 +01:00
};