2019-01-01 19:11:16 -08:00
|
|
|
import Socket from '../src'
|
2018-04-05 15:05:59 -07:00
|
|
|
|
2019-09-08 13:56:38 -07:00
|
|
|
const ANONYMOUS = true
|
|
|
|
const PORT = 8090
|
|
|
|
|
|
|
|
function packetProcess (packet) {
|
|
|
|
|
|
|
|
const cmd = {
|
|
|
|
ack: function(packet){
|
|
|
|
return new Promise( async (resolve) => {
|
|
|
|
packet.ack = true
|
|
|
|
packet.sender= packet.sender || (packet._header ? packet._header.sender.name : 'unknown')
|
|
|
|
packet.msg=`this is acknlowdgement that ${packet.sender} ack was received`
|
|
|
|
this.push(packet) // push to all active socket servers
|
|
|
|
return resolve(packet) // this goes back to sender
|
|
|
|
})
|
|
|
|
},
|
|
|
|
switch:{
|
|
|
|
status: function(packet){
|
|
|
|
return new Promise( async (resolve) => {
|
|
|
|
packet.cmd='switch/status'
|
|
|
|
packet.state=this.switches[packet.id-1]
|
|
|
|
packet.sender= packet.sender || (packet._header ? packet._header.sender.name : 'unknown')
|
|
|
|
this.push(packet) // push to all active socket servers
|
|
|
|
let res = { response:'status pushed on to all clients'}
|
|
|
|
return resolve(res) // this goes back to sender
|
|
|
|
})
|
|
|
|
},
|
|
|
|
on: function(packet){
|
|
|
|
return new Promise( async (resolve) => {
|
|
|
|
packet.cmd='switch/status'
|
|
|
|
packet.state='on'
|
|
|
|
this.switches[packet.id-1] = 'on'
|
|
|
|
packet.sender= packet.sender || (packet._header ? packet._header.sender.name : 'unknown')
|
|
|
|
this.push(packet) // push to all active socket servers
|
|
|
|
let res = { response:'status change - pushed on to all clients', id:packet.id}
|
|
|
|
return resolve(res) // this goes back to sender
|
|
|
|
})
|
|
|
|
},
|
|
|
|
off: function(packet){
|
|
|
|
return new Promise( async (resolve) => {
|
|
|
|
packet.cmd='switch/status'
|
|
|
|
packet.state='off'
|
|
|
|
this.switches[packet.id-1] = 'off'
|
|
|
|
packet.sender= packet.sender || (packet._header ? packet._header.sender.name : 'unknown')
|
|
|
|
this.push(packet) // push to all active socket servers
|
|
|
|
let res = { response:'status change - pushed off to all clients'}
|
|
|
|
return resolve(res) // this goes back to sender
|
|
|
|
})
|
|
|
|
},
|
|
|
|
toggle: function(packet){
|
|
|
|
return new Promise( async (resolve) => {
|
|
|
|
this.switches[packet.id-1] = this.switches[packet.id-1]==='on' ? 'off' : 'on'
|
|
|
|
packet.state = this.switches[packet.id-1]
|
|
|
|
packet.cmd ='switch/status'
|
|
|
|
packet.sender= packet.sender || (packet._header ? packet._header.sender.name : 'unknown')
|
|
|
|
this.push(packet) // push to all active socket servers
|
|
|
|
let res = { response:`status change - pushed toggled state of ${packet.state} to all clients`}
|
|
|
|
return resolve(res) // this goes back to sender
|
|
|
|
})
|
|
|
|
}
|
2019-01-01 19:11:16 -08:00
|
|
|
}
|
2019-09-08 13:56:38 -07:00
|
|
|
}
|
|
|
|
console.log('this in packet processor',packet.cmd)
|
|
|
|
let cmdProps = packet.cmd.split('/')
|
|
|
|
let func = cmd[cmdProps[0]]
|
|
|
|
console.log(func)
|
|
|
|
if (cmdProps[1]) func = func[cmdProps[1]]
|
|
|
|
console.log(func)
|
|
|
|
if (typeof func === 'function') return func.call(this,packet)
|
|
|
|
else {
|
|
|
|
packet.error='no function for command'
|
|
|
|
return packet
|
|
|
|
}
|
2018-05-24 12:23:49 -07:00
|
|
|
}
|
2018-04-05 15:05:59 -07:00
|
|
|
|
2019-09-08 13:56:38 -07:00
|
|
|
|
2018-05-24 12:23:49 -07:00
|
|
|
// let test = new Test()
|
2019-09-08 13:56:38 -07:00
|
|
|
let test = new Socket({ port: PORT, allowAnonymous:ANONYMOUS })
|
|
|
|
test.switches = ['off','off','off','off'] // database to hold switch states
|
2018-05-24 12:23:49 -07:00
|
|
|
test.registerPacketProcessor(packetProcess)
|
2019-01-01 19:11:16 -08:00
|
|
|
;(async () => {
|
2018-04-05 15:05:59 -07:00
|
|
|
console.log(await test.create())
|
|
|
|
})().catch(err => {
|
2019-01-01 19:11:16 -08:00
|
|
|
console.error('FATAL: UNABLE TO START SYSTEM!\n', err)
|
2018-04-05 15:05:59 -07:00
|
|
|
})
|