2017-11-24 02:16:08 +00:00
|
|
|
import {
|
2017-11-27 01:14:12 +00:00
|
|
|
commands,
|
2017-11-24 02:16:08 +00:00
|
|
|
ExtensionContext,
|
2018-01-05 02:17:18 +00:00
|
|
|
StatusBarAlignment,
|
2018-11-10 16:39:01 +00:00
|
|
|
StatusBarItem,
|
2017-11-27 01:14:12 +00:00
|
|
|
window,
|
2018-11-07 02:53:18 +00:00
|
|
|
workspace
|
2017-11-24 02:16:08 +00:00
|
|
|
} from 'vscode';
|
2018-11-10 16:39:01 +00:00
|
|
|
import RPCClient from './client/RPCClient';
|
|
|
|
import Logger from './structures/Logger';
|
2017-11-23 13:06:21 +00:00
|
|
|
|
2018-11-10 16:39:01 +00:00
|
|
|
const statusBarIcon: StatusBarItem = window.createStatusBarItem(StatusBarAlignment.Left);
|
|
|
|
statusBarIcon.text = '$(pulse) Connecting...';
|
|
|
|
statusBarIcon.command = 'discord.reconnect';
|
2017-11-23 21:14:16 +00:00
|
|
|
|
2018-11-07 02:53:18 +00:00
|
|
|
const config = workspace.getConfiguration('discord');
|
2018-11-10 16:39:01 +00:00
|
|
|
const rpc = new RPCClient(config.get<string>('clientID')!, statusBarIcon);
|
2018-11-07 02:53:18 +00:00
|
|
|
|
|
|
|
export async function activate(context: ExtensionContext) {
|
|
|
|
Logger.log('Discord Presence activated!');
|
|
|
|
|
|
|
|
if (config.get<boolean>('enabled')) {
|
2018-11-10 16:39:01 +00:00
|
|
|
statusBarIcon.show();
|
2018-11-07 02:53:18 +00:00
|
|
|
try {
|
|
|
|
await rpc.login();
|
|
|
|
} catch (error) {
|
|
|
|
Logger.log(`Encountered following error after trying to login:\n${error}`);
|
|
|
|
if (!config.get('silent')) {
|
|
|
|
if (error.message.includes('ENOENT')) window.showErrorMessage('No Discord Client detected!');
|
|
|
|
else window.showErrorMessage(`Couldn't connect to Discord via RPC: ${error.toString()}`);
|
2018-11-07 03:02:31 +00:00
|
|
|
}
|
2018-11-10 16:39:01 +00:00
|
|
|
rpc.statusBarIcon.text = '$(pulse) Reconnect';
|
|
|
|
rpc.statusBarIcon.command = 'discord.reconnect';
|
|
|
|
rpc.statusBarIcon.show();
|
2018-11-07 02:53:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-24 02:16:08 +00:00
|
|
|
|
2017-12-20 05:25:37 +00:00
|
|
|
const enabler = commands.registerCommand('discord.enable', async () => {
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
2018-02-04 16:13:19 +00:00
|
|
|
await config.update('enabled', true);
|
2018-11-10 16:42:22 +00:00
|
|
|
rpc.config = workspace.getConfiguration('discord');
|
2018-11-10 16:39:01 +00:00
|
|
|
rpc.statusBarIcon.text = '$(pulse) Connecting...';
|
|
|
|
rpc.statusBarIcon.show();
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.login();
|
2017-11-24 03:42:51 +00:00
|
|
|
window.showInformationMessage('Enabled Discord Rich Presence for this workspace.');
|
|
|
|
});
|
|
|
|
|
2017-12-20 05:25:37 +00:00
|
|
|
const disabler = commands.registerCommand('discord.disable', async () => {
|
2018-02-04 16:13:19 +00:00
|
|
|
await config.update('enabled', false);
|
2018-11-10 16:39:01 +00:00
|
|
|
rpc.config = workspace.getConfiguration('discord');
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
2017-11-24 03:42:51 +00:00
|
|
|
window.showInformationMessage('Disabled Discord Rich Presence for this workspace.');
|
2017-11-23 23:53:16 +00:00
|
|
|
});
|
|
|
|
|
2018-01-05 02:17:18 +00:00
|
|
|
const reconnecter = commands.registerCommand('discord.reconnect', async () => {
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
|
|
|
await rpc.login();
|
|
|
|
if (!config.get('silent')) window.showInformationMessage('Reconnecting to Discord RPC...');
|
2018-11-10 16:39:01 +00:00
|
|
|
rpc.statusBarIcon.text = '$(pulse) Reconnecting...';
|
|
|
|
rpc.statusBarIcon.command = undefined;
|
2018-01-05 02:17:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
context.subscriptions.push(enabler, disabler, reconnecter);
|
2017-11-23 13:06:21 +00:00
|
|
|
}
|
|
|
|
|
2017-12-20 05:25:37 +00:00
|
|
|
export async function deactivate() {
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
2018-04-30 09:28:20 +00:00
|
|
|
}
|
2018-11-02 14:33:14 +00:00
|
|
|
|
2018-11-07 03:02:31 +00:00
|
|
|
process.on('unhandledRejection', err => Logger.log(err));
|