BetterDiscordApp-v2/core/src/main.js

183 lines
6.1 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
/**
* DEVELOPMENT VARIABLES
*/
2018-01-11 13:49:19 +01:00
const clientScriptPath = path.resolve(__dirname, '..', '..', 'client', 'dist').replace(/\\/g, '/');
2018-01-10 23:15:31 +01:00
const __DEV = {
2018-01-10 23:41:57 +01:00
TESTING: false,
clientScriptPath: `${clientScriptPath}/betterdiscord.client.js`
2018-01-10 23:15:31 +01:00
}
2018-02-12 16:19:11 +01:00
const __dataPath = path.resolve(__dirname, '..', '..', 'tests', 'data');
2018-01-11 13:37:52 +01:00
const __pluginPath = path.resolve(__dirname, '..', '..', 'tests', 'plugins');
const __themePath = path.resolve(__dirname, '..', '..', 'tests', 'themes');
2018-01-17 12:28:52 +01:00
const { Utils, FileUtils, BDIpc, Config, WindowUtils, CSSEditor } = require('./modules');
2018-02-03 00:42:12 +01:00
const { BrowserWindow, dialog } = require('electron');
2018-01-10 17:02:29 +01:00
const Common = {};
const dummyArgs = {
'version': '0.3.1',
'paths': [
2018-01-16 06:00:39 +01:00
{ 'id': 'base', 'path': 'basePath' },
2018-02-12 16:19:11 +01:00
{ 'id': 'data', 'path': __dataPath },
2018-01-16 06:00:39 +01:00
{ 'id': 'plugins', 'path': __pluginPath },
{ 'id': 'themes', 'path': __themePath }
2018-01-10 17:02:29 +01:00
]
};
2018-01-11 13:37:52 +01:00
console.log(dummyArgs);
2018-01-10 17:02:29 +01:00
class Comms {
constructor() {
this.initListeners();
}
initListeners() {
BDIpc.on('bd-getConfig', o => {
o.reply(Common.Config.config);
});
BDIpc.on('bd-openCssEditor', o => CSSEditor.openEditor(o));
BDIpc.on('bd-setCss', o => CSSEditor.setCSS(o.args));
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 => {
const { scss, path } = o.args;
if (!scss && !path) return;
2018-02-11 17:28:47 +01:00
const data = scss ? `${scss} @import '${path}';` : `@import '${path}';`;
2018-02-11 15:59:55 +01:00
2018-02-11 17:28:47 +01:00
sass.render({ data }, (err, result) => {
2018-02-11 15:59:55 +01:00
if (err) {
o.reply({ err });
return;
}
o.reply(result.css.toString());
});
});
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) {
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);
2018-01-10 17:02:29 +01:00
Common.Config = new Config(args || dummyArgs);
this.comms = new Comms();
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-01-12 02:06:43 +01:00
//Log some events for now
2018-01-14 07:00:21 +01:00
//this.windowUtils.webContents.on('did-start-loading', e => this.windowUtils.executeJavascript(`console.info('did-start-loading');`));
//this.windowUtils.webContents.on('did-stop-loading', e => this.windowUtils.executeJavascript(`console.info('did-stop-loading');`));
//this.windowUtils.webContents.on('did-get-response-details', e => this.ignite(this.windowUtils.window));
//this.windowUtils.webContents.on('page-favicon-updated', e => this.windowUtils.executeJavascript(`console.info('page-favicon-updated');`));
//this.windowUtils.webContents.on('will-navigate', e => this.windowUtils.executeJavascript(`console.info('will-navigate');`));
//this.windowUtils.webContents.on('did-navigate', e => this.windowUtils.executeJavascript(`console.info('did-navigate');`));
//this.windowUtils.webContents.on('did-navigate-in-page', e => this.windowUtils.executeJavascript(`console.info('did-navigate-in-page');`));
//this.windowUtils.webContents.on('did-finish-load', e => this.injectScripts(true));
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 });
});
BDIpc.on('bd-sendToDiscord', event => this.windowUtils.send(event.args.channel, event.args.message))
2018-01-10 23:41:57 +01:00
2018-01-10 23:15:31 +01:00
setTimeout(() => {
2018-01-12 02:06:43 +01:00
if (__DEV) { this.injectScripts(); }
2018-01-10 23:15:31 +01:00
}, 500);
}
async waitForWindow() {
2018-01-12 02:06:43 +01:00
const self = this;
2018-01-10 23:15:31 +01:00
return new Promise((resolve, reject) => {
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);
});
}
2018-01-10 23:15:31 +01:00
if (__DEV && __DEV.TESTING && windows.length > 0) {
resolve(windows[0]);
clearInterval(defer);
return;
2018-01-10 23:41:57 +01:00
}
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
const sp = path.resolve(__dirname, 'sparkplug.js').replace(/\\/g, '/');
window.webContents.executeJavaScript(`require("${sp}");`);
}
2018-01-11 13:37:52 +01:00
injectScripts(reload = false) {
2018-01-12 02:06:43 +01:00
console.log(`RELOAD? ${reload}`);
2018-01-10 23:41:57 +01:00
if (__DEV) {
this.windowUtils.injectScript(__DEV.clientScriptPath);
}
}
2018-01-10 17:02:29 +01:00
get fileUtils() { return FileUtils; }
}
module.exports = {
BetterDiscord
}