2023-12-05 20:32:05 -08:00
import socketIOClient from 'socket.io-client' ;
2021-12-29 18:08:41 -05:00
import { Logger } from '../../utils/logger.js' ;
import { Common } from '../../utils/common.js' ;
import { WSServer } from '../../utils/webSocketServer.js' ;
export class CLWebSocketClient {
constructor ( ) {
this . logger = Logger ;
this . common = Common ;
this . wsServer = WSServer ;
this . webSocketClients = [ ] ;
this . reconnectTimeOut = null ;
this . waitTime = 0.5 ;
2023-12-05 20:32:05 -08:00
this . reconnect = ( clWsClt ) => {
2021-12-29 18:08:41 -05:00
if ( this . reconnectTimeOut ) {
return ;
}
this . waitTime = ( this . waitTime >= 64 ) ? 64 : ( this . waitTime * 2 ) ;
this . reconnectTimeOut = setTimeout ( ( ) => {
if ( clWsClt . selectedNode ) {
2022-05-01 13:35:20 -04:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'INFO' , fileName : 'CLWebSocket' , msg : 'Reconnecting to the Core Lightning\'s Websocket Server..' } ) ;
2021-12-29 18:08:41 -05:00
this . connect ( clWsClt . selectedNode ) ;
}
this . reconnectTimeOut = null ;
} , this . waitTime * 1000 ) ;
} ;
this . connect = ( selectedNode ) => {
try {
const clientExists = this . webSocketClients . find ( ( wsc ) => wsc . selectedNode . index === selectedNode . index ) ;
if ( ! clientExists ) {
2024-06-10 12:40:37 -07:00
if ( selectedNode . settings . lnServerUrl ) {
2021-12-29 18:08:41 -05:00
const newWebSocketClient = { selectedNode : selectedNode , reConnect : true , webSocketClient : null } ;
this . connectWithClient ( newWebSocketClient ) ;
this . webSocketClients . push ( newWebSocketClient ) ;
}
}
else {
2024-06-10 12:40:37 -07:00
if ( ( ! clientExists . webSocketClient || ! clientExists . webSocketClient . connected ) && selectedNode . settings . lnServerUrl ) {
2021-12-29 18:08:41 -05:00
clientExists . reConnect = true ;
this . connectWithClient ( clientExists ) ;
}
}
}
catch ( err ) {
throw new Error ( err ) ;
}
} ;
this . connectWithClient = ( clWsClt ) => {
2022-05-01 13:35:20 -04:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'INFO' , fileName : 'CLWebSocket' , msg : 'Connecting to the Core Lightning\'s Websocket Server..' } ) ;
2023-12-05 20:32:05 -08:00
try {
2024-06-10 12:40:37 -07:00
if ( ! clWsClt . selectedNode . authentication . runeValue ) {
clWsClt . selectedNode . authentication . runeValue = this . common . getRuneValue ( clWsClt . selectedNode . authentication . runePath ) ;
2023-12-05 20:32:05 -08:00
}
2024-06-10 12:40:37 -07:00
clWsClt . webSocketClient = socketIOClient ( clWsClt . selectedNode . settings . lnServerUrl , {
extraHeaders : { rune : clWsClt . selectedNode . authentication . runeValue } ,
2023-12-05 20:32:05 -08:00
transports : [ 'websocket' ] ,
secure : true ,
rejectUnauthorized : false
} ) ;
}
catch ( err ) {
throw new Error ( err ) ;
}
clWsClt . webSocketClient . on ( 'connect' , ( ) => {
2022-05-01 13:35:20 -04:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'INFO' , fileName : 'CLWebSocket' , msg : 'Connected to the Core Lightning\'s Websocket Server..' } ) ;
2021-12-29 18:08:41 -05:00
this . waitTime = 0.5 ;
2023-12-05 20:32:05 -08:00
} ) ;
clWsClt . webSocketClient . on ( 'disconnect' , ( reason ) => {
2024-06-10 12:40:37 -07:00
if ( clWsClt && clWsClt . selectedNode && clWsClt . selectedNode . lnImplementation === 'CLN' ) {
2023-12-05 20:32:05 -08:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'INFO' , fileName : 'CLWebSocket' , msg : 'Web socket disconnected, will reconnect again...' , data : reason } ) ;
2021-12-29 18:08:41 -05:00
clWsClt . webSocketClient . close ( ) ;
if ( clWsClt . reConnect ) {
2023-12-05 20:32:05 -08:00
this . reconnect ( clWsClt ) ;
2021-12-29 18:08:41 -05:00
}
}
2023-12-05 20:32:05 -08:00
} ) ;
clWsClt . webSocketClient . on ( 'message' , ( msg ) => {
2022-01-16 15:55:50 -05:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'DEBUG' , fileName : 'CLWebSocket' , msg : 'Received message from the server..' , data : msg . data } ) ;
2023-12-05 20:32:05 -08:00
this . wsServer . sendEventsToAllLNClients ( JSON . stringify ( { source : 'CLN' , data : msg } ) , clWsClt . selectedNode ) ;
} ) ;
clWsClt . webSocketClient . on ( 'error' , ( err ) => {
2023-05-29 12:27:28 -07:00
this . logger . log ( { selectedNode : clWsClt . selectedNode , level : 'ERROR' , fileName : 'CLWebSocket' , msg : 'Web socket error' , error : err } ) ;
const errStr = ( ( typeof err === 'object' && err . message ) ? JSON . stringify ( { error : err . message } ) : ( typeof err === 'object' ) ? JSON . stringify ( { error : err } ) : ( '{ "error": ' + err + ' }' ) ) ;
this . wsServer . sendErrorToAllLNClients ( errStr , clWsClt . selectedNode ) ;
clWsClt . webSocketClient . close ( ) ;
if ( clWsClt . reConnect ) {
2023-12-05 20:32:05 -08:00
this . reconnect ( clWsClt ) ;
2021-12-29 18:08:41 -05:00
}
2023-12-05 20:32:05 -08:00
} ) ;
2021-12-29 18:08:41 -05:00
} ;
this . disconnect = ( selectedNode ) => {
const clientExists = this . webSocketClients . find ( ( wsc ) => wsc . selectedNode . index === selectedNode . index ) ;
2023-12-05 20:32:05 -08:00
if ( clientExists && clientExists . webSocketClient && clientExists . webSocketClient . connected ) {
2022-05-01 13:35:20 -04:00
this . logger . log ( { selectedNode : clientExists . selectedNode , level : 'INFO' , fileName : 'CLWebSocket' , msg : 'Disconnecting from the Core Lightning\'s Websocket Server..' } ) ;
2021-12-29 18:08:41 -05:00
clientExists . reConnect = false ;
clientExists . webSocketClient . close ( ) ;
const clientIdx = this . webSocketClients . findIndex ( ( wsc ) => wsc . selectedNode . index === selectedNode . index ) ;
this . webSocketClients . splice ( clientIdx , 1 ) ;
}
} ;
this . updateSelectedNode = ( newSelectedNode ) => {
const clientIdx = this . webSocketClients . findIndex ( ( wsc ) => + wsc . selectedNode . index === + newSelectedNode . index ) ;
2022-01-16 15:55:50 -05:00
let newClient = this . webSocketClients [ clientIdx ] ;
if ( ! newClient ) {
newClient = { selectedNode : null , reConnect : true , webSocketClient : null } ;
}
2021-12-29 18:08:41 -05:00
newClient . selectedNode = JSON . parse ( JSON . stringify ( newSelectedNode ) ) ;
this . webSocketClients [ clientIdx ] = newClient ;
} ;
2022-05-01 13:35:20 -04:00
this . wsServer . eventEmitterCLN . on ( 'CONNECT' , ( nodeIndex ) => {
2021-12-29 18:08:41 -05:00
this . connect ( this . common . findNode ( + nodeIndex ) ) ;
} ) ;
2022-05-01 13:35:20 -04:00
this . wsServer . eventEmitterCLN . on ( 'DISCONNECT' , ( nodeIndex ) => {
2021-12-29 18:08:41 -05:00
this . disconnect ( this . common . findNode ( + nodeIndex ) ) ;
} ) ;
}
}
export const CLWSClient = new CLWebSocketClient ( ) ;