2020-10-05 15:11:37 +02:00
|
|
|
/* tslint:disable:no-console */
|
|
|
|
import * as ipc from 'node-ipc';
|
|
|
|
|
|
|
|
ipc.config.id = 'proxy';
|
|
|
|
ipc.config.retry = 1500;
|
|
|
|
ipc.config.logger = console.warn; // Stdout is used for native messaging
|
|
|
|
|
|
|
|
export default class IPC {
|
|
|
|
private connected = false;
|
|
|
|
|
|
|
|
connect() {
|
|
|
|
ipc.connectTo('bitwarden', () => {
|
|
|
|
ipc.of.bitwarden.on('connect', () => {
|
|
|
|
this.connected = true;
|
|
|
|
console.error(
|
|
|
|
'## connected to bitwarden desktop ##',
|
|
|
|
ipc.config.delay
|
|
|
|
);
|
|
|
|
ipc.of.bitwarden.emit('message', 'hello');
|
|
|
|
});
|
|
|
|
|
|
|
|
ipc.of.bitwarden.on('disconnect', () => {
|
|
|
|
this.connected = false;
|
|
|
|
console.error('disconnected from world');
|
|
|
|
});
|
|
|
|
|
|
|
|
ipc.of.bitwarden.on('message', (data: any) => {
|
|
|
|
console.error('got a message from world : ', data);
|
|
|
|
});
|
|
|
|
|
2020-10-05 19:48:51 +02:00
|
|
|
/*
|
2020-10-05 15:11:37 +02:00
|
|
|
ipc.of.bitwarden.on('error', (err: any) => {
|
|
|
|
console.error('error', err);
|
|
|
|
});
|
2020-10-05 19:48:51 +02:00
|
|
|
*/
|
2020-10-05 15:11:37 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-10-05 19:48:51 +02:00
|
|
|
isConnected(): boolean {
|
2020-10-05 15:11:37 +02:00
|
|
|
return this.connected;
|
|
|
|
}
|
|
|
|
|
|
|
|
send(json: object) {
|
|
|
|
ipc.of.bitwarden.emit('message', json);
|
|
|
|
}
|
|
|
|
}
|