diff --git a/config.json b/config.json index 1f204c8..a18fb9f 100644 --- a/config.json +++ b/config.json @@ -54,7 +54,14 @@ "pnet": { "enabled": true, "duplexTimeout": 10 - } + }, + "tetracontrol": { + "enabled": true, + "endpoint": "10.13.123.123:80", + "username": "user", + "password": "password", + "duplexTimeout": 300 + } }, "pagers": { "birdyslim": { @@ -75,4 +82,4 @@ }, "deliveryPresets": { } -} \ No newline at end of file +} diff --git a/html_config/index.html b/html_config/index.html index a490f99..f42bdf5 100644 --- a/html_config/index.html +++ b/html_config/index.html @@ -141,6 +141,32 @@ + + + + TETRACONTROL + + + + + + + + + + + + + + + + + + + + + + LoRaWAN @@ -332,6 +358,7 @@ { k: 'Dummy', v: 'dummy' }, { k: 'POCSAG GW', v: 'pocsag' }, { k: 'DAPNET', v: 'dapnet' }, + { k: 'TETRAControl', v: 'tetracontrol' }, { k: 'e*Cityruf inetgw', v: 'ecityruf' }, { k: 'e*Cityruf Puppeteer', v: 'em-p-cityruf' }, @@ -370,6 +397,11 @@ dapnet: { enabled: null, duplexTimeout: null, }, + + tetracontrol: { + enabled: null, duplexTimeout: null, + }, + ecityruf: { enabled: null, duplexTimeout: null, }, @@ -456,4 +488,4 @@ - \ No newline at end of file + diff --git a/index.js b/index.js index 7510ca0..d2cf39a 100644 --- a/index.js +++ b/index.js @@ -39,6 +39,9 @@ if (!!config.connectors.ecityruf && config.connectors.pagernetzAT.enabled === tr if (!!config.connectors.ecityruf && config.connectors.pnet.enabled === true) { types.ConnectorRegistry.register(new types.Connectors.pNetConnector()) } +if (!!config.connectors.tetracontrol && config.connectors.tetracontrol.enabled === true) { + types.ConnectorRegistry.register(new types.Connectors.TetraControlConnector(connection)) +} types.ConnectorRegistry.register(new types.Connectors.DummyConnector()) diff --git a/types/connectors/TetraControlConnector.js b/types/connectors/TetraControlConnector.js new file mode 100644 index 0000000..4bac09d --- /dev/null +++ b/types/connectors/TetraControlConnector.js @@ -0,0 +1,58 @@ +const Connector = require("./Connector") +const config = require('../../config.json') +const md5 = require('md5') +const axios = require('axios') +const WebSocket = require('ws') + +class TetraControlConnector extends Connector { + constructor (amqpConnMngr) { + super(amqpConnMngr) + this.name = "tetracontrol" + this.duplexCapable = false + } + async transmitMessage(msg, params) { + const UUID = this.name+':'+md5(JSON.stringify([this.name,...params])) + if (params.length < 1) return false + const target = params[0] + //if (target.split('#').length !== 2) throw 'No valid DAPNET Parameter ' + //const transmitterGroup = target.split('#')[ 0 ], callsign = target.split('#')[ 1 ] + /*const dapnetRequest = { + text: msg.payload, + callSignNames: [ callsign ], + transmitterGroupNames: [ transmitterGroup ] + }*/ + + const token = Buffer.from(`${ config.connectors.tetracontrol.username }:${ config.connectors.tetracontrol.password }`, 'utf8').toString('base64'); + const headers = { + Authorization: `Basic ${token}`, + } + const ws = new WebSocket(`ws://${ config.connectors.tetracontrol.endpoint }/live.json?MaxAlter=3600`, { headers }); + return new Promise((res, rej) => { + ws.on('open', function open() { + console.log('WebSocket connected'); + const jsonData = { + text: msg.payload, + destSSI: target + '', + ProtocolID: 9, + radioID: 1, + type: "sds" + } + ws.send(JSON.stringify(jsonData)) + ws.close() + }) + ws.on('close',res) + ws.on('error',rej) + + }) + .then(() => { + this.connectorRegistry.reportState(msg, UUID, 'routed') + return true + }) + .catch((err) => { + console.error(err ) + this.connectorRegistry.reportFail(msg, UUID) + return false + }) + } +} +module.exports = TetraControlConnector diff --git a/types/connectors/index.js b/types/connectors/index.js index a8df0a6..4a0aa9d 100644 --- a/types/connectors/index.js +++ b/types/connectors/index.js @@ -24,8 +24,10 @@ module.exports = { PagernetzConnetorAT: require('./PagernetzConnetorAT'), pNetConnector: require('./pNetConnector'), + TetraControlConnector: require("./TetraControlConnector"), + LoRaWANConnector: require("./LoRaWANConnector"), POCSAGConnector: require("./POCSAGConnector"), DummyConnector: require("./DummyConnector"), Connector: require("./Connector"), -} \ No newline at end of file +}