2021-01-31 05:44:08 -05:00
/ * *
* @ description MeshCentral Firebase communication module
* @ author Ylian Saint - Hilaire
* @ copyright Intel Corporation 2018 - 2021
* @ license Apache - 2.0
* @ version v0 . 0.1
* /
/*xjslint node: true */
/*xjslint plusplus: true */
/*xjslint maxlen: 256 */
/*jshint node: true */
/*jshint strict: false */
/*jshint esversion: 6 */
"use strict" ;
// Construct the Firebase object
module . exports . CreateFirebase = function ( parent , senderid , serverkey ) {
var obj = { } ;
2021-01-31 07:31:32 -05:00
obj . messageId = 0 ;
2021-02-04 00:48:54 -05:00
obj . relays = { } ;
2021-02-03 02:31:44 -05:00
obj . stats = {
mode : "Real" ,
sent : 0 ,
sendError : 0 ,
received : 0 ,
receivedNoRoute : 0 ,
receivedBadArgs : 0
}
2021-01-31 05:44:08 -05:00
const Sender = require ( 'node-xcs' ) . Sender ;
const Message = require ( 'node-xcs' ) . Message ;
const Notification = require ( 'node-xcs' ) . Notification ;
const xcs = new Sender ( senderid , serverkey ) ;
2021-01-31 07:31:32 -05:00
var tokenToNodeMap = { } // Token --> { nid: nodeid, mid: meshid }
2021-01-31 05:44:08 -05:00
// Messages received from client (excluding receipts)
xcs . on ( 'message' , function ( messageId , from , data , category ) {
2021-02-04 00:48:54 -05:00
parent . debug ( 'email' , 'Firebase-Message: ' + JSON . stringify ( data ) ) ;
2021-01-31 07:31:32 -05:00
2021-02-04 00:48:54 -05:00
if ( typeof data . r == 'string' ) {
// Lookup push relay server
parent . debug ( 'email' , 'Firebase-RelayRoute: ' + data . r ) ;
const wsrelay = obj . relays [ data . r ] ;
if ( wsrelay != null ) {
delete data . r ;
try { wsrelay . send ( JSON . stringify ( { from : from , data : data , category : category } ) ) ; } catch ( ex ) { }
}
2021-02-03 02:31:44 -05:00
} else {
2021-02-04 00:48:54 -05:00
// Lookup node information from the cache
var ninfo = tokenToNodeMap [ from ] ;
if ( ninfo == null ) { obj . stats . receivedNoRoute ++ ; return ; }
if ( ( data != null ) && ( data . con != null ) && ( data . s != null ) ) { // Console command
obj . stats . received ++ ;
parent . webserver . routeAgentCommand ( { action : 'msg' , type : 'console' , value : data . con , sessionid : data . s } , ninfo . did , ninfo . nid , ninfo . mid ) ;
} else {
obj . stats . receivedBadArgs ++ ;
}
2021-01-31 07:31:32 -05:00
}
2021-01-31 05:44:08 -05:00
} ) ;
// Only fired for messages where options.delivery_receipt_requested = true
/ *
xcs . on ( 'receipt' , function ( messageId , from , data , category ) { console . log ( 'Firebase-Receipt' , messageId , from , data , category ) ; } ) ;
xcs . on ( 'connected' , function ( ) { console . log ( 'Connected' ) ; } ) ;
xcs . on ( 'disconnected' , function ( ) { console . log ( 'disconnected' ) ; } ) ;
xcs . on ( 'online' , function ( ) { console . log ( 'online' ) ; } ) ;
xcs . on ( 'error' , function ( e ) { console . log ( 'error' , e ) ; } ) ;
xcs . on ( 'message-error' , function ( e ) { console . log ( 'message-error' , e ) ; } ) ;
* /
xcs . start ( ) ;
2021-02-03 02:31:44 -05:00
parent . debug ( 'email' , 'CreateFirebase-Setup' ) ;
2021-01-31 07:31:32 -05:00
// EXAMPLE
2021-01-31 05:44:08 -05:00
//var payload = { notification: { title: command.title, body: command.msg }, data: { url: obj.msgurl } };
//var options = { priority: 'High', timeToLive: 5 * 60 }; // TTL: 5 minutes, priority 'Normal' or 'High'
// Send an outbound push notification
2021-01-31 07:31:32 -05:00
obj . sendToDevice = function ( node , payload , options , func ) {
2021-02-03 02:31:44 -05:00
parent . debug ( 'email' , 'Firebase-sendToDevice' ) ;
2021-01-31 07:31:32 -05:00
if ( ( node == null ) || ( typeof node . pmt != 'string' ) ) return ;
// Fill in our lookup table
2021-02-03 02:31:44 -05:00
if ( node . _id != null ) { tokenToNodeMap [ node . pmt ] = { nid : node . _id , mid : node . meshid , did : node . domain } }
2021-01-31 07:31:32 -05:00
2021-01-31 05:44:08 -05:00
// Built the on-screen notification
var notification = null ;
if ( payload . notification ) {
var notification = new Notification ( 'ic_launcher' )
. title ( payload . notification . title )
. body ( payload . notification . body )
. build ( ) ;
}
// Build the message
var message = new Message ( 'msg_' + ( ++ obj . messageId ) ) ;
if ( options . priority ) { message . priority ( options . priority ) ; }
if ( payload . data ) { for ( var i in payload . data ) { message . addData ( i , payload . data [ i ] ) ; } }
2021-02-22 02:23:15 -05:00
if ( ( payload . data == null ) || ( payload . data . shash == null ) ) { message . addData ( 'shash' , parent . webserver . agentCertificateHashBase64 ) ; } // Add the server agent hash, new Android agents will reject notifications that don't have this.
2021-01-31 05:44:08 -05:00
if ( notification ) { message . notification ( notification ) }
message . build ( ) ;
// Send the message
2021-02-03 02:31:44 -05:00
function callback ( result ) {
if ( result . getError ( ) == null ) { obj . stats . sent ++ ; } else { obj . stats . sendError ++ ; }
callback . func ( result . getMessageId ( ) , result . getError ( ) , result . getErrorDescription ( ) )
}
2021-01-31 05:44:08 -05:00
callback . func = func ;
2021-02-03 02:31:44 -05:00
parent . debug ( 'email' , 'Firebase-sending' ) ;
2021-01-31 07:31:32 -05:00
xcs . sendNoRetry ( message , node . pmt , callback ) ;
2021-01-31 05:44:08 -05:00
}
2021-02-04 00:48:54 -05:00
// Setup a two way relay
obj . setupRelay = function ( ws ) {
// Select and set a relay identifier
ws . relayId = getRandomPassword ( ) ;
while ( obj . relays [ ws . relayId ] != null ) { ws . relayId = getRandomPassword ( ) ; }
obj . relays [ ws . relayId ] = ws ;
// On message, parse it
ws . on ( 'message' , function ( msg ) {
parent . debug ( 'email' , 'FBWS-Data(' + this . relayId + '): ' + msg ) ;
if ( typeof msg == 'string' ) {
// Parse the incoming push request
var data = null ;
try { data = JSON . parse ( msg ) } catch ( ex ) { return ; }
if ( typeof data != 'object' ) return ;
if ( typeof data . pmt != 'string' ) return ;
if ( typeof data . payload != 'object' ) return ;
if ( typeof data . payload . notification == 'object' ) {
if ( typeof data . payload . notification . title != 'string' ) return ;
if ( typeof data . payload . notification . body != 'string' ) return ;
}
if ( typeof data . options != 'object' ) return ;
if ( ( data . options . priority != 'Normal' ) && ( data . options . priority != 'High' ) ) return ;
if ( ( typeof data . options . timeToLive != 'number' ) || ( data . options . timeToLive < 1 ) ) return ;
if ( typeof data . payload . data != 'object' ) { data . payload . data = { } ; }
data . payload . data . r = ws . relayId ; // Set the relay id.
// Send the push notification
obj . sendToDevice ( { pmt : data . pmt } , data . payload , data . options , function ( id , err , errdesc ) {
if ( err == null ) {
try { wsrelay . send ( JSON . stringify ( { sent : true } ) ) ; } catch ( ex ) { }
} else {
try { wsrelay . send ( JSON . stringify ( { sent : false } ) ) ; } catch ( ex ) { }
}
} ) ;
}
} ) ;
// If error, close the relay
ws . on ( 'error' , function ( err ) {
parent . debug ( 'email' , 'FBWS-Error(' + this . relayId + '): ' + err ) ;
delete obj . relays [ this . relayId ] ;
} ) ;
// Close the relay
ws . on ( 'close' , function ( ) {
parent . debug ( 'email' , 'FBWS-Close(' + this . relayId + ')' ) ;
delete obj . relays [ this . relayId ] ;
} ) ;
}
function getRandomPassword ( ) { return Buffer . from ( parent . crypto . randomBytes ( 9 ) , 'binary' ) . toString ( 'base64' ) . split ( '/' ) . join ( '@' ) ; }
2021-02-03 02:31:44 -05:00
return obj ;
} ;
// Construct the Firebase object
module . exports . CreateFirebaseRelay = function ( parent , url , key ) {
var obj = { } ;
obj . messageId = 0 ;
obj . stats = {
mode : "Relay" ,
sent : 0 ,
sendError : 0 ,
received : 0 ,
receivedNoRoute : 0 ,
receivedBadArgs : 0
}
2021-02-04 00:48:54 -05:00
const WebSocket = require ( 'ws' ) ;
2021-02-03 02:31:44 -05:00
const https = require ( 'https' ) ;
const querystring = require ( 'querystring' ) ;
const relayUrl = require ( 'url' ) . parse ( url ) ;
parent . debug ( 'email' , 'CreateFirebaseRelay-Setup' ) ;
2021-02-04 00:48:54 -05:00
if ( relayUrl . protocol == 'wss:' ) {
// Setup two-way push notification channel
obj . wsopen = false ;
obj . tokenToNodeMap = { } // Token --> { nid: nodeid, mid: meshid }
obj . connectWebSocket = function ( ) {
if ( obj . wsclient != null ) return ;
obj . wsclient = new WebSocket ( relayUrl . href + ( key ? ( '?key=' + key ) : '' ) , { rejectUnauthorized : false } )
2021-02-04 21:37:38 -05:00
obj . wsclient . on ( 'open' , function ( ) {
parent . debug ( 'email' , 'FBWS-Connected' ) ;
obj . wsopen = true ;
} ) ;
2021-02-04 00:48:54 -05:00
obj . wsclient . on ( 'message' , function ( msg ) {
parent . debug ( 'email' , 'FBWS-Data(' + msg . length + '): ' + msg ) ;
var data = null ;
try { data = JSON . parse ( msg ) } catch ( ex ) { }
if ( typeof data != 'object' ) return ;
if ( typeof data . from != 'string' ) return ;
if ( typeof data . data != 'object' ) return ;
if ( typeof data . category != 'string' ) return ;
processMessage ( data . messageId , data . from , data . data , data . category ) ;
} ) ;
obj . wsclient . on ( 'error' , function ( err ) {
obj . wsclient = null ;
obj . wsopen = false ;
setTimeout ( obj . connectWebSocket , 2000 ) ;
} ) ;
obj . wsclient . on ( 'close' , function ( ) {
2021-02-04 21:37:38 -05:00
parent . debug ( 'email' , 'FBWS-Disconnected' ) ;
2021-02-04 00:48:54 -05:00
obj . wsclient = null ;
obj . wsopen = false ;
setTimeout ( obj . connectWebSocket , 2000 ) ;
} ) ;
}
2021-02-03 02:31:44 -05:00
2021-02-04 00:48:54 -05:00
function processMessage ( messageId , from , data , category ) {
// Lookup node information from the cache
var ninfo = obj . tokenToNodeMap [ from ] ;
if ( ninfo == null ) { obj . stats . receivedNoRoute ++ ; return ; }
if ( ( data != null ) && ( data . con != null ) && ( data . s != null ) ) { // Console command
obj . stats . received ++ ;
parent . webserver . routeAgentCommand ( { action : 'msg' , type : 'console' , value : data . con , sessionid : data . s } , ninfo . did , ninfo . nid , ninfo . mid ) ;
} else {
obj . stats . receivedBadArgs ++ ;
2021-02-03 02:31:44 -05:00
}
}
2021-02-04 00:48:54 -05:00
obj . sendToDevice = function ( node , payload , options , func ) {
parent . debug ( 'email' , 'Firebase-sendToDevice-webSocket' ) ;
if ( ( node == null ) || ( typeof node . pmt != 'string' ) ) { func ( 0 , 'error' ) ; return ; }
// Fill in our lookup table
if ( node . _id != null ) { obj . tokenToNodeMap [ node . pmt ] = { nid : node . _id , mid : node . meshid , did : node . domain } }
2021-02-22 02:23:15 -05:00
// Fill in the server agent cert hash
if ( payload . data == null ) { payload . data = { } ; }
if ( payload . data . shash == null ) { payload . data . shash = parent . webserver . agentCertificateHashBase64 ; } // Add the server agent hash, new Android agents will reject notifications that don't have this.
2021-02-04 00:48:54 -05:00
// If the web socket is open, send now
if ( obj . wsopen == true ) {
2021-02-04 03:03:51 -05:00
try { obj . wsclient . send ( JSON . stringify ( { pmt : node . pmt , payload : payload , options : options } ) ) ; } catch ( ex ) { func ( 0 , 'error' ) ; obj . stats . sendError ++ ; return ; }
obj . stats . sent ++ ;
2021-02-04 00:48:54 -05:00
func ( 1 ) ;
} else {
// TODO: Buffer the push messages until TTL.
func ( 0 , 'error' ) ;
2021-02-04 03:03:51 -05:00
obj . stats . sendError ++ ;
2021-02-04 00:48:54 -05:00
}
}
obj . connectWebSocket ( ) ;
} else if ( relayUrl . protocol == 'https:' ) {
// Send an outbound push notification using an HTTPS POST
obj . pushOnly = true ;
obj . sendToDevice = function ( node , payload , options , func ) {
parent . debug ( 'email' , 'Firebase-sendToDevice-httpPost' ) ;
if ( ( node == null ) || ( typeof node . pmt != 'string' ) ) return ;
const querydata = querystring . stringify ( { 'msg' : JSON . stringify ( { pmt : node . pmt , payload : payload , options : options } ) } ) ;
2021-02-22 02:23:15 -05:00
// Fill in the server agent cert hash
if ( payload . data == null ) { payload . data = { } ; }
if ( payload . data . shash == null ) { payload . data . shash = parent . webserver . agentCertificateHashBase64 ; } // Add the server agent hash, new Android agents will reject notifications that don't have this.
2021-02-04 00:48:54 -05:00
// Send the message to the relay
const httpOptions = {
hostname : relayUrl . hostname ,
port : relayUrl . port ? relayUrl . port : 443 ,
path : relayUrl . path + ( key ? ( '?key=' + key ) : '' ) ,
method : 'POST' ,
//rejectUnauthorized: false, // DEBUG
headers : {
'Content-Type' : 'application/x-www-form-urlencoded' ,
'Content-Length' : querydata . length
}
}
const req = https . request ( httpOptions , function ( res ) {
if ( res . statusCode == 200 ) { obj . stats . sent ++ ; } else { obj . stats . sendError ++ ; }
if ( func != null ) { func ( ++ obj . messageId , ( res . statusCode == 200 ) ? null : 'error' ) ; }
} ) ;
parent . debug ( 'email' , 'Firebase-sending' ) ;
req . on ( 'error' , function ( error ) { obj . stats . sent ++ ; func ( ++ obj . messageId , 'error' ) ; } ) ;
req . write ( querydata ) ;
req . end ( ) ;
}
2021-02-03 02:31:44 -05:00
}
2021-01-31 05:44:08 -05:00
return obj ;
} ;