const Orvibo = require('./Orvibo'); const http = require('http'); const url = require('url'); const httpPort = 3000; let orvbio = new Orvibo(); // When a socket first connects and initiates the handshake it will emit the connected event with the uid of the socket; orvbio.on('plugConnected', ({uid, name}) => { console.log(`Connected ${uid} name = ${name}`); }); // If the socket state is updated this event will fire orvbio.on('plugStateUpdated', ({uid, state , name}) => { console.log(`Plug ${name} ${uid} updated state ${state}`); }); // The plug sends a hearbeat to let the server know it's still alive orvbio.on('gotHeartbeat', ({uid, state , name}) => { console.log(`Plug ${name} ${uid} sent heartbeat`); }); // Called when the plug disconnects orvbio.on('plugDisconnected', ({uid, name }) => { console.log(`Plug ${uid} - ${name} disconnected`); }); // Called when the plug disconnects with an error ie it's been unplugged orvbio.on('plugDisconnectedWithError', ({uid, name }) => { console.log(`Plug ${uid} - ${name} disconnected with error`); }); // Start the Orvibo socket server orvbio.startServer(); // Create a basic example HTTP server // If there are no parameters it will return the uid, state, modelId and name of the socket // You can then use the uid to toggle the state of the switch like // http://localhost:3000?uid=5dcf7ff76e7a const requestHandler = (request, response) => { response.writeHead(200, {'Content-Type': 'application/json'}); let q = url.parse(request.url, true).query; if (q.uid != null) { orvbio.toggleSocket(q.uid); } // Get all currently connected sockets, their names and states let sockets = orvbio.getConnectedSocket(); response.end(JSON.stringify(sockets)); }; const httpServer = http.createServer(requestHandler) httpServer.listen(httpPort, (err) => { if (err) { return console.log('something bad happened', err) } console.log(`http server is listening on ${httpPort}`) });