1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00
bitwarden-desktop/src/proxy/native-messaging-proxy.ts

24 lines
648 B
TypeScript
Raw Normal View History

import NativeMessage from './nativemessage';
import IPC from './ipc';
2020-10-21 16:48:40 +02:00
// Proxy is a lightweight application which provides bi-directional communication
// between the browser extension and a running desktop application.
//
// Browser extension <-[native messaging]-> proxy <-[ipc]-> desktop
2020-11-23 18:37:04 +01:00
export class NativeMessagingProxy {
2020-10-12 18:03:16 +02:00
private ipc: IPC;
private nativeMessage: NativeMessage;
constructor() {
this.ipc = new IPC();
this.nativeMessage = new NativeMessage(this.ipc);
}
run() {
this.ipc.connect();
this.nativeMessage.listen();
2020-11-30 15:10:57 +01:00
this.ipc.onMessage = this.nativeMessage.send;
}
}