Files
parcer/server/src/socket-connection/connection.ts

102 lines
3.4 KiB
TypeScript
Raw Normal View History

2024-06-08 23:12:15 +05:30
import { Namespace, Socket } from 'socket.io';
import { IncomingMessage } from 'http';
import { verify, JwtPayload } from 'jsonwebtoken';
2024-06-01 00:23:12 +05:30
import logger from "../logger";
import registerInputHandlers from '../browser-management/inputHandlers';
interface AuthenticatedIncomingMessage extends IncomingMessage {
user?: JwtPayload | string;
}
interface AuthenticatedSocket extends Socket {
request: AuthenticatedIncomingMessage;
}
/**
* Socket.io middleware for authentication
* This is a socket.io specific auth handler that doesn't rely on Express middleware
*/
const socketAuthMiddleware = (socket: Socket, next: (err?: Error) => void) => {
const cookies = socket.handshake.headers.cookie;
if (!cookies) {
return next(new Error('Authentication required'));
}
const tokenMatch = cookies.split(';').find(c => c.trim().startsWith('token='));
if (!tokenMatch) {
return next(new Error('Authentication required'));
}
const token = tokenMatch.split('=')[1];
if (!token) {
return next(new Error('Authentication required'));
}
const secret = process.env.JWT_SECRET;
if (!secret) {
return next(new Error('Server configuration error'));
}
verify(token, secret, (err: any, user: any) => {
if (err) {
logger.log('warn', 'JWT verification error:', err);
return next(new Error('Authentication failed'));
}
// Normalize payload key
if (user.userId && !user.id) {
user.id = user.userId;
delete user.userId; // temporary: del the old key for clarity
}
// Attach user to socket request
const authSocket = socket as AuthenticatedSocket;
authSocket.request.user = user;
next();
});
};
2024-06-01 00:23:12 +05:30
2024-06-01 00:25:02 +05:30
/**
* Opens a websocket canal for duplex data transfer and registers all handlers for this data for the recording session.
* Uses socket.io dynamic namespaces for multiplexing the traffic from different running remote browser instances.
* @param io dynamic namespace on the socket.io server
* @param callback function called after the connection is created providing the socket resource
* @category BrowserManagement
*/
2024-06-01 00:23:12 +05:30
export const createSocketConnection = (
io: Namespace,
callback: (socket: Socket) => void,
2024-06-08 23:12:15 +05:30
) => {
io.use(socketAuthMiddleware);
2024-06-01 00:23:12 +05:30
const onConnection = async (socket: Socket) => {
2024-06-08 23:12:15 +05:30
logger.log('info', "Client connected " + socket.id);
2024-06-08 23:11:54 +05:30
registerInputHandlers(socket);
2024-06-01 00:23:12 +05:30
socket.on('disconnect', () => logger.log('info', "Client disconnected " + socket.id));
callback(socket);
}
io.on('connection', onConnection);
};
2024-06-01 00:25:02 +05:30
/**
* Opens a websocket canal for duplex data transfer for the recording run.
* Uses socket.io dynamic namespaces for multiplexing the traffic from different running remote browser instances.
* @param io dynamic namespace on the socket.io server
* @param callback function called after the connection is created providing the socket resource
* @category BrowserManagement
*/
export const createSocketConnectionForRun = (
2024-06-08 23:12:15 +05:30
io: Namespace,
callback: (socket: Socket) => void,
) => {
io.use(socketAuthMiddleware);
const onConnection = async (socket: Socket) => {
2024-06-08 23:12:15 +05:30
logger.log('info', "Client connected " + socket.id);
socket.on('disconnect', () => logger.log('info', "Client disconnected " + socket.id));
callback(socket);
}
io.on('connection', onConnection);
};