2019-11-01 17:10:59 +00:00
|
|
|
import { commands, ExtensionContext, StatusBarAlignment, StatusBarItem, window, workspace, extensions } from 'vscode';
|
2018-11-10 16:39:01 +00:00
|
|
|
import RPCClient from './client/RPCClient';
|
|
|
|
import Logger from './structures/Logger';
|
2019-11-01 16:53:57 +00:00
|
|
|
import { GitExtension } from './git';
|
2017-11-23 13:06:21 +00:00
|
|
|
|
2019-11-01 16:53:57 +00:00
|
|
|
const sleep = (wait: number) => new Promise(resolve => setTimeout(resolve, wait));
|
2019-08-03 12:16:17 +00:00
|
|
|
let loginTimeout: NodeJS.Timer;
|
|
|
|
|
2018-11-10 16:39:01 +00:00
|
|
|
const statusBarIcon: StatusBarItem = window.createStatusBarItem(StatusBarAlignment.Left);
|
2018-11-20 04:26:48 +00:00
|
|
|
statusBarIcon.text = '$(pulse) Connecting to Discord...';
|
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
|
|
|
|
2019-09-13 11:18:12 +00:00
|
|
|
export async function activate(context: ExtensionContext) {
|
2019-11-01 16:53:57 +00:00
|
|
|
try {
|
|
|
|
const ext = extensions.getExtension<GitExtension>('vscode.git')!;
|
|
|
|
await ext.activate();
|
|
|
|
rpc.git = ext.exports.getAPI(1);
|
|
|
|
} catch {
|
|
|
|
// We loaded before the git extension, give it a bit to load
|
|
|
|
// In a perfect world this shouldn't happen
|
|
|
|
await sleep(2000);
|
|
|
|
const ext = extensions.getExtension<GitExtension>('vscode.git')!;
|
|
|
|
await ext.activate();
|
|
|
|
rpc.git = ext.exports.getAPI(1);
|
|
|
|
}
|
2018-11-07 02:53:18 +00:00
|
|
|
Logger.log('Discord Presence activated!');
|
|
|
|
|
2019-04-19 11:00:44 +00:00
|
|
|
let isWorkspaceExcluded = false;
|
|
|
|
const excludePatterns = config.get<string[]>('workspaceExcludePatterns');
|
2019-11-01 17:10:59 +00:00
|
|
|
if (excludePatterns?.length) {
|
2019-04-19 11:00:44 +00:00
|
|
|
for (const pattern of excludePatterns) {
|
|
|
|
const regex = new RegExp(pattern);
|
|
|
|
const folders = workspace.workspaceFolders;
|
|
|
|
if (!folders) break;
|
2019-09-13 11:18:12 +00:00
|
|
|
if (folders.some(folder => regex.test(folder.uri.fsPath))) {
|
2019-04-19 11:00:44 +00:00
|
|
|
isWorkspaceExcluded = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isWorkspaceExcluded && 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}`);
|
2018-11-20 20:32:26 +00:00
|
|
|
await rpc.dispose();
|
2018-11-07 02:53:18 +00:00
|
|
|
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-20 04:26:48 +00:00
|
|
|
rpc.statusBarIcon.text = '$(pulse) Reconnect to Discord';
|
2018-11-10 16:39:01 +00:00
|
|
|
rpc.statusBarIcon.command = 'discord.reconnect';
|
2018-11-07 02:53:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-24 02:16:08 +00:00
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const enabler = commands.registerCommand('discord.enable', async () => {
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
2018-11-13 02:40:24 +00:00
|
|
|
config.update('enabled', true);
|
2018-11-10 16:42:22 +00:00
|
|
|
rpc.config = workspace.getConfiguration('discord');
|
2018-11-20 04:26:48 +00:00
|
|
|
rpc.statusBarIcon.text = '$(pulse) Connecting to Discord...';
|
2018-11-20 20:32:26 +00:00
|
|
|
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.');
|
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const disabler = commands.registerCommand('discord.disable', async () => {
|
2018-11-13 02:40:24 +00:00
|
|
|
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();
|
2018-11-20 20:32:26 +00:00
|
|
|
rpc.statusBarIcon.hide();
|
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
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const reconnecter = commands.registerCommand('discord.reconnect', async () => {
|
|
|
|
if (loginTimeout) clearTimeout(loginTimeout);
|
2018-11-07 02:53:18 +00:00
|
|
|
await rpc.dispose();
|
2019-08-03 12:16:17 +00:00
|
|
|
loginTimeout = setTimeout(async () => {
|
|
|
|
await rpc.login();
|
|
|
|
if (!config.get('silent')) window.showInformationMessage('Reconnecting to Discord RPC...');
|
|
|
|
rpc.statusBarIcon.text = '$(pulse) Reconnecting to Discord...';
|
|
|
|
rpc.statusBarIcon.command = 'discord.reconnect';
|
|
|
|
}, 1000);
|
|
|
|
});
|
|
|
|
|
|
|
|
const disconnect = commands.registerCommand('discord.disconnect', async () => {
|
|
|
|
await rpc.dispose();
|
|
|
|
rpc.statusBarIcon.text = '$(pulse) Reconnect to Discord';
|
|
|
|
rpc.statusBarIcon.command = 'discord.reconnect';
|
2018-01-05 02:17:18 +00:00
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const allowSpectate = commands.registerCommand('discord.allowSpectate', async () => {
|
2018-12-01 04:18:35 +00:00
|
|
|
await rpc.allowSpectate();
|
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const disableSpectate = commands.registerCommand('discord.disableSpectate', async () => {
|
2018-12-01 04:18:35 +00:00
|
|
|
await rpc.disableSpectate();
|
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const allowJoinRequests = commands.registerCommand('discord.allowJoinRequests', async () => {
|
2018-12-01 04:18:35 +00:00
|
|
|
await rpc.allowJoinRequests();
|
|
|
|
});
|
|
|
|
|
2019-08-03 12:16:17 +00:00
|
|
|
const disableJoinRequests = commands.registerCommand('discord.disableJoinRequests', async () => {
|
2018-12-01 04:18:35 +00:00
|
|
|
await rpc.disableJoinRequests();
|
|
|
|
});
|
|
|
|
|
2019-09-22 16:56:19 +00:00
|
|
|
context.subscriptions.push(
|
|
|
|
enabler,
|
|
|
|
disabler,
|
|
|
|
reconnecter,
|
|
|
|
disconnect,
|
|
|
|
allowSpectate,
|
|
|
|
disableSpectate,
|
|
|
|
allowJoinRequests,
|
|
|
|
disableJoinRequests,
|
|
|
|
);
|
2017-11-23 13:06:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 11:18:12 +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
|
|
|
|
2019-09-13 11:18:12 +00:00
|
|
|
process.on('unhandledRejection', err => Logger.log(err as string));
|