2021-02-10 03:24:42 +00:00
|
|
|
const { Client } = require('discord-rpc'); // eslint-disable-line
|
|
|
|
import {
|
|
|
|
commands,
|
|
|
|
ExtensionContext,
|
|
|
|
StatusBarAlignment,
|
|
|
|
StatusBarItem,
|
|
|
|
window,
|
|
|
|
workspace,
|
|
|
|
extensions,
|
|
|
|
debug,
|
|
|
|
} from 'vscode';
|
2021-02-10 15:54:44 +00:00
|
|
|
import throttle from 'lodash-es/throttle';
|
2017-11-23 13:06:21 +00:00
|
|
|
|
2021-02-10 15:54:44 +00:00
|
|
|
import { activity } from './activity';
|
2021-02-10 03:24:42 +00:00
|
|
|
import { CLIENT_ID, CONFIG_KEYS } from './constants';
|
|
|
|
import { GitExtension } from './git';
|
|
|
|
import { log, LogLevel } from './logger';
|
|
|
|
import { getConfig } from './util';
|
2019-08-03 12:16:17 +00:00
|
|
|
|
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
|
|
|
|
2021-02-16 20:49:53 +00:00
|
|
|
let rpc = new Client({ transport: 'ipc' });
|
2021-02-10 03:24:42 +00:00
|
|
|
const config = getConfig();
|
|
|
|
|
2021-02-10 15:54:44 +00:00
|
|
|
let state = {};
|
2021-02-10 19:14:27 +00:00
|
|
|
let interval: NodeJS.Timeout;
|
|
|
|
let listeners: { dispose(): any }[] = [];
|
|
|
|
|
|
|
|
export function cleanUp() {
|
|
|
|
listeners.forEach((listener) => listener.dispose());
|
|
|
|
listeners = [];
|
|
|
|
clearInterval(interval);
|
|
|
|
}
|
2021-02-10 15:54:44 +00:00
|
|
|
|
2021-02-10 03:24:42 +00:00
|
|
|
async function sendActivity() {
|
2021-02-10 15:54:44 +00:00
|
|
|
state = {
|
|
|
|
...(await activity(state)),
|
|
|
|
};
|
|
|
|
rpc.setActivity(state);
|
2021-02-10 03:24:42 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
async function login() {
|
2021-02-16 20:49:53 +00:00
|
|
|
rpc = new Client({ transport: 'ipc' });
|
|
|
|
|
2021-02-10 03:24:42 +00:00
|
|
|
rpc.once('ready', () => {
|
|
|
|
log(LogLevel.Info, 'Successfully connected to Discord');
|
2021-02-16 20:49:53 +00:00
|
|
|
cleanUp();
|
2021-02-10 03:24:42 +00:00
|
|
|
|
|
|
|
statusBarIcon.text = '$(globe) Connected to Discord';
|
|
|
|
statusBarIcon.tooltip = 'Connected to Discord';
|
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
void sendActivity();
|
|
|
|
interval = setInterval(() => void sendActivity(), 5000);
|
2021-02-10 03:24:42 +00:00
|
|
|
const onChangeActiveTextEditor = window.onDidChangeActiveTextEditor(() => sendActivity());
|
2021-02-10 15:54:44 +00:00
|
|
|
const onChangeTextDocument = workspace.onDidChangeTextDocument(throttle(() => sendActivity(), 1000));
|
2021-02-10 03:24:42 +00:00
|
|
|
const onStartDebugSession = debug.onDidStartDebugSession(() => sendActivity());
|
|
|
|
const onTerminateDebugSession = debug.onDidTerminateDebugSession(() => sendActivity());
|
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
listeners.push(onChangeActiveTextEditor, onChangeTextDocument, onStartDebugSession, onTerminateDebugSession);
|
2021-02-10 03:24:42 +00:00
|
|
|
});
|
|
|
|
|
2021-02-16 20:49:53 +00:00
|
|
|
rpc.once('disconnected', async () => {
|
|
|
|
cleanUp();
|
|
|
|
await rpc.destroy();
|
|
|
|
statusBarIcon.text = '$(pulse) Reconnect to Discord';
|
|
|
|
statusBarIcon.command = 'discord.reconnect';
|
|
|
|
});
|
|
|
|
|
2021-02-10 03:24:42 +00:00
|
|
|
try {
|
|
|
|
await rpc.login({ clientId: CLIENT_ID });
|
|
|
|
} catch (error) {
|
|
|
|
log(LogLevel.Error, `Encountered following error while trying to login:\n${error as string}`);
|
2021-02-10 19:14:27 +00:00
|
|
|
cleanUp();
|
|
|
|
await rpc.destroy();
|
2021-02-10 03:24:42 +00:00
|
|
|
if (!config[CONFIG_KEYS.SuppressNotifications]) {
|
|
|
|
if (error?.message?.includes('ENOENT')) void window.showErrorMessage('No Discord client detected');
|
|
|
|
else void window.showErrorMessage(`Couldn't connect to Discord via RPC: ${error as string}`);
|
|
|
|
}
|
2021-02-10 19:14:27 +00:00
|
|
|
statusBarIcon.text = '$(pulse) Reconnect to Discord';
|
|
|
|
statusBarIcon.command = 'discord.reconnect';
|
2021-02-10 03:24:42 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-07 02:53:18 +00:00
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
export async function activate(context: ExtensionContext) {
|
2021-02-10 03:24:42 +00:00
|
|
|
log(LogLevel.Info, 'Discord Presence activated');
|
2018-11-07 02:53:18 +00:00
|
|
|
|
2019-04-19 11:00:44 +00:00
|
|
|
let isWorkspaceExcluded = false;
|
2021-02-10 03:24:42 +00:00
|
|
|
for (const pattern of config[CONFIG_KEYS.WorkspaceExcludePatterns]) {
|
|
|
|
const regex = new RegExp(pattern);
|
|
|
|
const folders = workspace.workspaceFolders;
|
|
|
|
if (!folders) break;
|
|
|
|
if (folders.some((folder) => regex.test(folder.uri.fsPath))) {
|
|
|
|
isWorkspaceExcluded = true;
|
|
|
|
break;
|
2019-04-19 11:00:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
const enable = async (update = true) => {
|
|
|
|
if (update) {
|
|
|
|
void config.update('enabled', true);
|
|
|
|
}
|
|
|
|
cleanUp();
|
2021-02-10 03:24:42 +00:00
|
|
|
statusBarIcon.text = '$(pulse) Connecting to Discord...';
|
|
|
|
statusBarIcon.show();
|
2021-02-10 19:14:27 +00:00
|
|
|
await login();
|
|
|
|
};
|
|
|
|
|
|
|
|
const disable = async (update = true) => {
|
|
|
|
if (update) {
|
|
|
|
void config.update('enabled', false);
|
|
|
|
}
|
|
|
|
cleanUp();
|
|
|
|
await rpc.destroy();
|
|
|
|
statusBarIcon.hide();
|
|
|
|
};
|
|
|
|
|
|
|
|
const enabler = commands.registerCommand('discord.enable', async () => {
|
|
|
|
await enable();
|
2021-02-10 03:24:42 +00:00
|
|
|
void window.showInformationMessage('Enabled Discord Presence for this workspace');
|
2017-11-24 03:42:51 +00:00
|
|
|
});
|
2021-02-10 03:24:42 +00:00
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
const disabler = commands.registerCommand('discord.disable', async () => {
|
|
|
|
await disable();
|
2021-02-10 03:24:42 +00:00
|
|
|
void window.showInformationMessage('Disabled Discord Presence for this workspace');
|
2017-11-23 23:53:16 +00:00
|
|
|
});
|
2021-02-10 03:24:42 +00:00
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
const reconnecter = commands.registerCommand('discord.reconnect', async () => {
|
|
|
|
await disable(false);
|
|
|
|
await enable(false);
|
2019-08-03 12:16:17 +00:00
|
|
|
});
|
2021-02-10 03:24:42 +00:00
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
const disconnect = commands.registerCommand('discord.disconnect', async () => {
|
|
|
|
await disable(false);
|
|
|
|
statusBarIcon.text = '$(pulse) Reconnect to Discord';
|
|
|
|
statusBarIcon.command = 'discord.reconnect';
|
2018-01-05 02:17:18 +00:00
|
|
|
});
|
2021-02-10 03:24:42 +00:00
|
|
|
|
|
|
|
context.subscriptions.push(enabler, disabler, reconnecter, disconnect);
|
|
|
|
|
|
|
|
if (!isWorkspaceExcluded && config[CONFIG_KEYS.Enabled]) {
|
2019-11-02 16:55:43 +00:00
|
|
|
statusBarIcon.show();
|
2021-02-10 19:14:27 +00:00
|
|
|
await login();
|
2019-11-02 16:55:43 +00:00
|
|
|
}
|
2020-07-16 16:25:05 +00:00
|
|
|
|
2021-02-11 00:18:04 +00:00
|
|
|
try {
|
|
|
|
const gitExtension = extensions.getExtension<GitExtension>('vscode.git');
|
|
|
|
if (!gitExtension?.isActive) {
|
|
|
|
await gitExtension?.activate();
|
|
|
|
}
|
|
|
|
} catch {}
|
2017-11-23 13:06:21 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 19:14:27 +00:00
|
|
|
export async function deactivate() {
|
|
|
|
cleanUp();
|
|
|
|
await rpc.destroy();
|
2018-04-30 09:28:20 +00:00
|
|
|
}
|