forked from JoinColony/node-metamask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MetaMaskConnector.js
113 lines (100 loc) · 2.77 KB
/
MetaMaskConnector.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
const path = require('path');
const WebSocket = require('ws');
const express = require('express');
const RemoteMetaMaskProvider = require('./RemoteMetaMaskProvider');
const DEFAULT_PORT = 3333;
class MetaMaskConnector {
constructor(options) {
this.config = Object.assign({}, { port: DEFAULT_PORT }, options);
}
async start() {
this._app = express();
this._app.use(express.static(path.resolve(__dirname, 'client')));
this._wss = await this._runServer();
await this._initialize();
}
stop() {
return new Promise(resolve => {
this._wss.close(() => {
this._server.close(() => {
resolve(true);
});
});
});
}
_runServer() {
return new Promise((resolve, reject) => {
this._server = this._app.listen(this.config.port, 'localhost', err => {
if (err) return reject(err);
return resolve(new WebSocket.Server({ server: this._server }));
});
});
}
_initialize() {
return new Promise(resolve => {
this._wss.on('connection', ws => {
// Only allow one conection at a time
if (this.ready()) {
return ws.close();
}
ws.on('close', () => {
delete this._ws;
});
this._ws = ws;
if (this.config.onConnect) this.config.onConnect();
return resolve();
});
});
}
ready() {
return this._ws && this._ws.readyState === WebSocket.OPEN;
}
static handleMessage(msg) {
let message;
try {
message = JSON.parse(msg);
} catch (e) {
throw new Error('Could not parse message from socket. Is it valid JSON?');
}
const { action, requestId, payload } = message;
return this.handleAction(action, requestId, payload);
}
static handleAction(action, requestId, payload) {
if (action === 'error') {
throw new Error(payload);
}
return {
responseAction: action,
responseRequestId: requestId,
responsePayload: payload,
};
}
send(action, requestId, payload, requiredAction) {
return new Promise(resolve => {
const onMsg = msg => {
const {
responseAction,
responseRequestId,
responsePayload,
} = this.constructor.handleMessage(msg.data);
if (
requiredAction === responseAction &&
requestId === responseRequestId
) {
this._ws.removeEventListener('message', onMsg);
resolve({
requestId: responseRequestId,
result: responsePayload,
});
}
};
this._ws.addEventListener('message', onMsg);
const msg = JSON.stringify({ action, requestId, payload });
this._ws.send(msg);
});
}
getProvider() {
return new RemoteMetaMaskProvider(this);
}
}
module.exports = MetaMaskConnector;