-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathBrowserEventStream.js
More file actions
294 lines (259 loc) · 7.54 KB
/
BrowserEventStream.js
File metadata and controls
294 lines (259 loc) · 7.54 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
const WebSocket = require('ws');
/**
* BrowserEventStream
*
* WebSocket server for streaming real-time browser events to AI agents.
* Broadcasts console logs, network activity, navigation events, and errors.
*
* Features:
* - Real-time event streaming via WebSocket
* - Per-session event filtering
* - Automatic cleanup on disconnect
* - Support for multiple clients per session
*/
class BrowserEventStream {
/**
* @param {http.Server} httpServer - HTTP server to attach WebSocket to
* @param {BrowserSessionManager} sessionManager - Session manager instance
*/
constructor(httpServer, sessionManager) {
this.sessionManager = sessionManager;
this.clients = new Map(); // sessionId -> Set of WebSocket clients
// Create WebSocket server without path (we'll handle routing manually)
this.wss = new WebSocket.Server({
noServer: true,
clientTracking: true
});
// Handle WebSocket upgrade requests manually to support dynamic paths
// Path pattern: /browser-control/stream/:sessionId
httpServer.on('upgrade', (request, socket, head) => {
const pathname = new URL(request.url, 'http://localhost').pathname;
// Check if this is a browser-control stream request
if (pathname.startsWith('/browser-control/stream/')) {
this.wss.handleUpgrade(request, socket, head, (ws) => {
this.wss.emit('connection', ws, request);
});
}
// Let other upgrade requests pass through (don't destroy socket)
});
// Handle new WebSocket connections
this.wss.on('connection', (ws, req) => {
this.handleConnection(ws, req);
});
// Listen to session manager events
this.attachSessionListeners();
console.log('Browser Event Stream WebSocket server initialized');
}
/**
* Handle new WebSocket connection
* @private
*/
handleConnection(ws, req) {
// Extract session ID from URL path
// Expected format: /browser-control/stream/sess_abc123
const sessionId = this.extractSessionId(req.url);
if (!sessionId) {
ws.close(1008, 'Session ID required in URL path: /browser-control/stream/:sessionId');
return;
}
// Validate session exists
if (!this.sessionManager.hasSession(sessionId)) {
ws.close(1008, `Invalid session ID: ${sessionId}`);
return;
}
// Track client for this session
if (!this.clients.has(sessionId)) {
this.clients.set(sessionId, new Set());
}
this.clients.get(sessionId).add(ws);
console.log(`Client connected to session ${sessionId} stream`);
// Send welcome message
this.sendToClient(ws, {
type: 'connected',
sessionId,
timestamp: Date.now(),
message: 'Connected to browser event stream'
});
// Handle client messages (optional commands)
ws.on('message', (data) => {
this.handleClientMessage(ws, sessionId, data);
});
// Handle disconnect
ws.on('close', () => {
const clients = this.clients.get(sessionId);
if (clients) {
clients.delete(ws);
if (clients.size === 0) {
this.clients.delete(sessionId);
}
}
console.log(`Client disconnected from session ${sessionId} stream`);
});
// Handle errors
ws.on('error', (error) => {
console.error(`WebSocket error for session ${sessionId}:`, error.message);
});
}
/**
* Extract session ID from WebSocket URL
* @private
*/
extractSessionId(url) {
// URL format: /browser-control/stream/sess_abc123?query=params
const match = url.match(/\/browser-control\/stream\/([^?]+)/);
return match ? match[1] : null;
}
/**
* Handle messages from clients
* @private
*/
handleClientMessage(ws, sessionId, data) {
try {
const message = JSON.parse(data.toString());
// Optional: Support simple commands via WebSocket
if (message.action === 'ping') {
this.sendToClient(ws, {
type: 'pong',
timestamp: Date.now()
});
}
} catch (error) {
console.error('Failed to parse client message:', error.message);
}
}
/**
* Attach listeners to session manager events
* @private
*/
attachSessionListeners() {
// Console messages
this.sessionManager.on('console', (sessionId, data) => {
this.broadcast(sessionId, {
type: 'console',
level: data.level,
text: data.text,
timestamp: data.timestamp
});
});
// Page errors
this.sessionManager.on('error', (sessionId, data) => {
this.broadcast(sessionId, {
type: 'error',
message: data.message,
stack: data.stack,
timestamp: data.timestamp
});
});
// Network requests
this.sessionManager.on('network', (sessionId, data) => {
this.broadcast(sessionId, {
type: 'network',
method: data.method,
url: data.url,
status: data.status,
timestamp: data.timestamp
});
});
// Page navigation
this.sessionManager.on('navigation', (sessionId, data) => {
this.broadcast(sessionId, {
type: 'navigation',
url: data.url,
timestamp: data.timestamp
});
});
// Session events
this.sessionManager.on('session-created', ({ sessionId }) => {
this.broadcast(sessionId, {
type: 'session-event',
event: 'created',
sessionId,
timestamp: Date.now()
});
});
this.sessionManager.on('session-cleaned', ({ sessionId }) => {
this.broadcast(sessionId, {
type: 'session-event',
event: 'cleaned',
sessionId,
timestamp: Date.now()
});
// Close all client connections for this session
const clients = this.clients.get(sessionId);
if (clients) {
clients.forEach(ws => {
ws.close(1000, 'Session closed');
});
this.clients.delete(sessionId);
}
});
this.sessionManager.on('session-crashed', ({ sessionId }) => {
this.broadcast(sessionId, {
type: 'session-event',
event: 'crashed',
sessionId,
timestamp: Date.now()
});
});
}
/**
* Broadcast a message to all clients watching a session
* @param {string} sessionId - Session ID
* @param {Object} message - Message to broadcast
*/
broadcast(sessionId, message) {
const clients = this.clients.get(sessionId);
if (!clients || clients.size === 0) {
return;
}
const payload = JSON.stringify(message);
clients.forEach(client => {
if (client.readyState === WebSocket.OPEN) {
client.send(payload);
}
});
}
/**
* Send a message to a specific client
* @private
*/
sendToClient(ws, message) {
if (ws.readyState === WebSocket.OPEN) {
ws.send(JSON.stringify(message));
}
}
/**
* Get count of active connections per session
* @returns {Map} - sessionId -> client count
*/
getConnectionCounts() {
const counts = new Map();
for (const [sessionId, clients] of this.clients.entries()) {
counts.set(sessionId, clients.size);
}
return counts;
}
/**
* Close all WebSocket connections
*/
closeAll() {
this.wss.clients.forEach(client => {
client.close(1000, 'Server shutting down');
});
this.clients.clear();
}
/**
* Shutdown the WebSocket server
* @returns {Promise<void>}
*/
async shutdown() {
return new Promise((resolve) => {
this.closeAll();
this.wss.close(() => {
console.log('Browser Event Stream shut down');
resolve();
});
});
}
}
module.exports = BrowserEventStream;