forked from opariffazman/websocket-app
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.js
More file actions
463 lines (389 loc) · 16.7 KB
/
Copy pathapp.js
File metadata and controls
463 lines (389 loc) · 16.7 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
// ============================================================================
// WEBSOCKET APP - Combined Server & Client Application
// ============================================================================
// Startup validation - demonstrates dependency issues
console.log('🔍 Validating system dependencies...');
console.log('');
// Check Node.js version
const nodeVersion = process.versions.node;
const majorVersion = parseInt(nodeVersion.split('.')[0]);
const REQUIRED_VERSION = 25;
if (majorVersion < REQUIRED_VERSION) {
console.error('❌ ERROR: Node.js version 25+ (latest) is required!');
console.error(` Current version: v${nodeVersion} (detected)`);
console.error(` Required version: v${REQUIRED_VERSION}.x or higher`);
console.error('');
process.exit(1);
}
console.log(`✅ Node.js version check passed (v${nodeVersion})`);
console.log('');
// ============================================================================
// SERVER MODE
// ============================================================================
function runServer() {
const express = require('express');
const http = require('http');
const WebSocket = require('ws');
const path = require('path');
const app = express();
const server = http.createServer(app);
const wss = new WebSocket.Server({ server });
// Store connected clients
const clients = new Map();
// Serve static files
app.use(express.static('public'));
// API endpoint to get all clients
app.get('/api/clients', (req, res) => {
const clientList = Array.from(clients.values()).map(client => ({
id: client.id,
name: client.name,
location: client.location,
connectedAt: client.connectedAt,
lastSeen: client.lastSeen,
uptime: Date.now() - client.connectedAt
}));
res.json(clientList);
});
// WebSocket connection handler
wss.on('connection', (ws, req) => {
const clientIp = req.headers['x-forwarded-for'] || req.socket.remoteAddress;
console.log('New connection from:', clientIp);
ws.on('message', (message) => {
try {
const data = JSON.parse(message);
if (data.type === 'register') {
// Register new client
const clientId = data.id || generateId();
const clientInfo = {
id: clientId,
name: data.name || 'Anonymous',
location: data.location || clientIp,
connectedAt: Date.now(),
lastSeen: Date.now(),
ws: ws
};
clients.set(clientId, clientInfo);
// Send confirmation to client
ws.send(JSON.stringify({
type: 'registered',
id: clientId,
totalClients: clients.size
}));
// Broadcast to all clients
broadcastUpdate();
console.log(`Client registered: ${clientInfo.name} (${clientId})`);
}
if (data.type === 'heartbeat') {
// Update last seen
const client = clients.get(data.id);
if (client) {
client.lastSeen = Date.now();
// Send heartbeat response
ws.send(JSON.stringify({
type: 'heartbeat_ack',
timestamp: Date.now()
}));
}
}
} catch (error) {
console.error('Error parsing message:', error);
}
});
ws.on('close', () => {
// Find and remove disconnected client
for (const [id, client] of clients.entries()) {
if (client.ws === ws) {
console.log(`Client disconnected: ${client.name} (${id})`);
clients.delete(id);
broadcastUpdate();
break;
}
}
});
ws.on('error', (error) => {
console.error('WebSocket error:', error);
});
});
// Broadcast updates to all connected dashboard viewers
function broadcastUpdate() {
const clientList = Array.from(clients.values()).map(client => ({
id: client.id,
name: client.name,
location: client.location,
connectedAt: client.connectedAt,
uptime: Date.now() - client.connectedAt
}));
const message = JSON.stringify({
type: 'update',
clients: clientList,
total: clients.size
});
// Send to all WebSocket clients (including dashboard)
wss.clients.forEach(client => {
if (client.readyState === WebSocket.OPEN) {
client.send(message);
}
});
}
// Generate random client ID
function generateId() {
return Math.random().toString(36).substring(2, 15);
}
// Cleanup stale connections (no heartbeat for 30 seconds)
setInterval(() => {
const now = Date.now();
const staleTimeout = 30000; // 30 seconds
for (const [id, client] of clients.entries()) {
if (now - client.lastSeen > staleTimeout) {
console.log(`Removing stale client: ${client.name} (${id})`);
clients.delete(id);
broadcastUpdate();
}
}
}, 10000); // Check every 10 seconds
const PORT = process.env.PORT || 8080;
// Display banner
function displayBanner() {
const os = require('os');
console.clear();
console.log('\x1b[35m%s\x1b[0m', '╔════════════════════════════════════════════════════════╗');
console.log('\x1b[35m%s\x1b[0m', '║ ║');
console.log('\x1b[35m%s\x1b[0m', '║ 🐳 WEBSOCKET APP SERVER 🐳 ║');
console.log('\x1b[35m%s\x1b[0m', '║ ║');
console.log('\x1b[35m%s\x1b[0m', '╚════════════════════════════════════════════════════════╝');
console.log('');
console.log('\x1b[33m%s\x1b[0m', `🌐 Port: ${PORT}`);
console.log('\x1b[33m%s\x1b[0m', `🖥️ Hostname: ${os.hostname()}`);
console.log('\x1b[33m%s\x1b[0m', `📊 Dashboard: http://localhost:${PORT}`);
console.log('\x1b[33m%s\x1b[0m', `🔌 WebSocket: ws://localhost:${PORT}`);
console.log('');
console.log('\x1b[90m%s\x1b[0m', '════════════════════════════════════════════════════════');
console.log('');
console.log('\x1b[32m%s\x1b[0m', '✅ Server is running and ready to accept connections');
console.log('');
}
server.listen(PORT, '0.0.0.0', () => {
displayBanner();
});
}
// ============================================================================
// CLIENT MODE
// ============================================================================
async function runClient() {
const WebSocket = require('ws');
const os = require('os');
const readline = require('readline');
// Function to prompt user for input (only works in interactive terminals)
function promptUser(question) {
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
return new Promise((resolve) => {
rl.question(question, (answer) => {
rl.close();
resolve(answer.trim() || null);
});
});
}
// Configuration from environment variables
const HEARTBEAT_INTERVAL = parseInt(process.env.HEARTBEAT_INTERVAL || '5000');
// Get server URL, name and location - only check explicit env vars for now
let SERVER_URL = process.env.SERVER_URL;
let CLIENT_NAME = process.env.CLIENT_NAME;
let CLIENT_LOCATION = process.env.CLIENT_LOCATION;
// Check if running in interactive terminal (works with 'node app.js' or 'docker run -it')
if (process.stdin.isTTY && (!SERVER_URL || !CLIENT_NAME || !CLIENT_LOCATION)) {
console.log('\x1b[36m%s\x1b[0m', '╔════════════════════════════════════════════════════════╗');
console.log('\x1b[36m%s\x1b[0m', '║ ║');
console.log('\x1b[36m%s\x1b[0m', '║ 🐳 WEBSOCKET APP CLIENT 🐳 ║');
console.log('\x1b[36m%s\x1b[0m', '║ ║');
console.log('\x1b[36m%s\x1b[0m', '╚════════════════════════════════════════════════════════╝');
console.log('');
if (!SERVER_URL) {
const serverIp = await promptUser('🌐 IP Server: ');
if (serverIp) {
// Add ws:// protocol if not already present
SERVER_URL = serverIp.startsWith('ws://') || serverIp.startsWith('wss://')
? serverIp
: `ws://${serverIp}`;
} else {
SERVER_URL = 'ws://localhost:8080';
}
}
if (!CLIENT_NAME) {
CLIENT_NAME = await promptUser('📝 Nama Anda: ');
if (!CLIENT_NAME) {
CLIENT_NAME = 'Anonymous';
}
}
if (!CLIENT_LOCATION) {
CLIENT_LOCATION = await promptUser('📍 Lokasi Anda: ');
if (!CLIENT_LOCATION) {
CLIENT_LOCATION = '';
}
}
console.log('');
}
// Fall back to defaults if still not set
SERVER_URL = SERVER_URL || 'ws://localhost:8080';
CLIENT_NAME = CLIENT_NAME || process.env.NAME || 'Anonymous';
CLIENT_LOCATION = CLIENT_LOCATION || process.env.LOCATION || '';
let clientId = null;
let ws = null;
let heartbeatTimer = null;
let reconnectTimer = null;
let isConnected = false;
// Display banner
function displayBanner() {
console.clear();
console.log('\x1b[36m%s\x1b[0m', '╔════════════════════════════════════════════════════════╗');
console.log('\x1b[36m%s\x1b[0m', '║ ║');
console.log('\x1b[36m%s\x1b[0m', '║ 🐳 WEBSOCKET APP CLIENT 🐳 ║');
console.log('\x1b[36m%s\x1b[0m', '║ ║');
console.log('\x1b[36m%s\x1b[0m', '╚════════════════════════════════════════════════════════╝');
console.log('');
console.log('\x1b[33m%s\x1b[0m', `📝 Name: ${CLIENT_NAME}`);
console.log('\x1b[33m%s\x1b[0m', `📍 Location: ${CLIENT_LOCATION}`);
console.log('\x1b[33m%s\x1b[0m', `🖥️ Hostname: ${os.hostname()}`);
console.log('\x1b[33m%s\x1b[0m', `🌐 Server: ${SERVER_URL}`);
console.log('');
console.log('\x1b[90m%s\x1b[0m', '════════════════════════════════════════════════════════');
console.log('');
}
// Log with timestamp
function log(emoji, message, color = '\x1b[0m') {
const timestamp = new Date().toLocaleTimeString();
console.log(`${color}[${timestamp}] ${emoji} ${message}\x1b[0m`);
}
// Connect to server
function connect() {
log('🔌', 'Connecting to server...', '\x1b[33m');
ws = new WebSocket(SERVER_URL);
ws.on('open', () => {
isConnected = true;
log('✅', 'Connected to server!', '\x1b[32m');
// Register with server
const registrationData = {
type: 'register',
name: CLIENT_NAME,
location: CLIENT_LOCATION,
hostname: os.hostname(),
platform: os.platform(),
arch: os.arch()
};
ws.send(JSON.stringify(registrationData));
// Start heartbeat
startHeartbeat();
});
ws.on('message', (data) => {
try {
const message = JSON.parse(data);
if (message.type === 'registered') {
clientId = message.id;
log('🎉', `Registered successfully! ID: ${clientId}`, '\x1b[32m');
log('👥', `Total clients connected: ${message.totalClients}`, '\x1b[36m');
}
if (message.type === 'heartbeat_ack') {
log('💓', 'Heartbeat acknowledged', '\x1b[90m');
}
if (message.type === 'update') {
log('📊', `Network update: ${message.total} clients online`, '\x1b[36m');
}
} catch (error) {
log('⚠️', `Error parsing message: ${error.message}`, '\x1b[31m');
}
});
ws.on('close', () => {
isConnected = false;
log('❌', 'Disconnected from server', '\x1b[31m');
stopHeartbeat();
scheduleReconnect();
});
ws.on('error', (error) => {
log('⚠️', `WebSocket error: ${error.message}`, '\x1b[31m');
});
}
// Send heartbeat to server
function sendHeartbeat() {
if (!isConnected || !ws || ws.readyState !== WebSocket.OPEN) {
return;
}
const heartbeat = {
type: 'heartbeat',
id: clientId,
timestamp: Date.now()
};
ws.send(JSON.stringify(heartbeat));
}
// Start heartbeat timer
function startHeartbeat() {
stopHeartbeat();
heartbeatTimer = setInterval(sendHeartbeat, HEARTBEAT_INTERVAL);
log('💓', `Heartbeat started (every ${HEARTBEAT_INTERVAL / 1000}s)`, '\x1b[90m');
}
// Stop heartbeat timer
function stopHeartbeat() {
if (heartbeatTimer) {
clearInterval(heartbeatTimer);
heartbeatTimer = null;
}
}
// Schedule reconnection
function scheduleReconnect() {
if (reconnectTimer) {
return;
}
const delay = 5000; // 5 seconds
log('🔄', `Reconnecting in ${delay / 1000} seconds...`, '\x1b[33m');
reconnectTimer = setTimeout(() => {
reconnectTimer = null;
connect();
}, delay);
}
// Graceful shutdown
function shutdown() {
log('👋', 'Shutting down gracefully...', '\x1b[33m');
stopHeartbeat();
if (reconnectTimer) {
clearTimeout(reconnectTimer);
}
if (ws) {
ws.close();
}
setTimeout(() => {
log('✅', 'Goodbye!', '\x1b[32m');
process.exit(0);
}, 1000);
}
// Handle shutdown signals
process.on('SIGTERM', shutdown);
process.on('SIGINT', shutdown);
// Start application
displayBanner();
connect();
// Keep alive
setInterval(() => {
if (isConnected) {
log('⏱️', `Uptime: ${Math.floor(process.uptime())}s | Status: Connected`, '\x1b[32m');
} else {
log('⏱️', `Uptime: ${Math.floor(process.uptime())}s | Status: Disconnected`, '\x1b[31m');
}
}, 30000); // Log status every 30 seconds
}
// ============================================================================
// START APPLICATION BASED ON MODE
// ============================================================================
const MODE = (process.env.MODE || 'server').toLowerCase();
if (MODE === 'server') {
console.log('🚀 Starting in SERVER mode...');
console.log('');
runServer();
} else if (MODE === 'client') {
console.log('🚀 Starting in CLIENT mode...');
console.log('');
runClient();
} else {
console.error(`❌ ERROR: Invalid MODE '${MODE}'. Must be 'server' or 'client'.`);
process.exit(1);
}