2013-11-17 16:45:53 +00:00
|
|
|
#!/usr/bin/env node
|
2018-12-19 19:24:06 +00:00
|
|
|
const fs = require('fs');
|
|
|
|
const http = require('http');
|
|
|
|
const body = require('body-parser');
|
|
|
|
const express = require('express');
|
|
|
|
const socketio = require('socket.io');
|
|
|
|
const program = require('commander');
|
|
|
|
const DMX = require('./dmx');
|
|
|
|
const A = DMX.Animation;
|
2013-11-17 16:45:53 +00:00
|
|
|
|
|
|
|
program
|
2018-12-19 19:24:06 +00:00
|
|
|
.version('0.0.1')
|
|
|
|
.option('-c, --config <file>', 'Read config from file [/etc/dmx-web.json]', '/etc/dmx-web.json')
|
|
|
|
.parse(process.argv);
|
2013-11-17 16:45:53 +00:00
|
|
|
|
2018-12-19 19:24:06 +00:00
|
|
|
const config = JSON.parse(fs.readFileSync(program.config, 'utf8'));
|
2013-11-17 16:45:53 +00:00
|
|
|
|
|
|
|
function DMXWeb() {
|
2018-12-19 19:24:06 +00:00
|
|
|
const app = express();
|
|
|
|
const server = http.createServer(app);
|
|
|
|
const io = socketio.listen(server);
|
|
|
|
|
|
|
|
const dmx = new DMX(config);
|
|
|
|
|
|
|
|
for (const universe in config.universes) {
|
|
|
|
dmx.addUniverse(
|
|
|
|
universe,
|
|
|
|
config.universes[universe].output.driver,
|
|
|
|
config.universes[universe].output.device,
|
|
|
|
config.universes[universe].output.options
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const listenPort = config.server.listen_port || 8080;
|
|
|
|
const listenHost = config.server.listen_host || '::';
|
|
|
|
|
|
|
|
server.listen(listenPort, listenHost, null, () => {
|
|
|
|
if (config.server.uid && config.server.gid) {
|
|
|
|
try {
|
|
|
|
process.setuid(config.server.uid);
|
|
|
|
process.setgid(config.server.gid);
|
|
|
|
} catch (err) {
|
|
|
|
console.log(err);
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
app.use(body.json());
|
|
|
|
|
|
|
|
app.get('/', (req, res) => {
|
|
|
|
res.sendFile(__dirname + '/index.html');
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/config', (req, res) => {
|
|
|
|
const response = {'devices': dmx.devices, 'universes': {}};
|
|
|
|
|
|
|
|
Object.keys(config.universes).forEach(key => {
|
|
|
|
response.universes[key] = config.universes[key].devices;
|
|
|
|
});
|
|
|
|
|
|
|
|
res.json(response);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/state/:universe', (req, res) => {
|
|
|
|
if (!(req.params.universe in dmx.universes)) {
|
|
|
|
res.status(404).json({'error': 'universe not found'});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
res.json({'state': dmx.universeToObject(req.params.universe)});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/state/:universe', (req, res) => {
|
|
|
|
if (!(req.params.universe in dmx.universes)) {
|
|
|
|
res.status(404).json({'error': 'universe not found'});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dmx.update(req.params.universe, req.body);
|
|
|
|
res.json({'state': dmx.universeToObject(req.params.universe)});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/animation/:universe', (req, res) => {
|
|
|
|
try {
|
|
|
|
const universe = dmx.universes[req.params.universe];
|
|
|
|
|
|
|
|
// preserve old states
|
|
|
|
const old = dmx.universeToObject(req.params.universe);
|
|
|
|
|
|
|
|
const animation = new A();
|
|
|
|
|
|
|
|
for (const step in req.body) {
|
|
|
|
animation.add(
|
|
|
|
req.body[step].to,
|
|
|
|
req.body[step].duration || 0,
|
|
|
|
req.body[step].options || {}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
animation.add(old, 0);
|
|
|
|
animation.run(universe);
|
|
|
|
res.json({'success': true});
|
|
|
|
} catch (e) {
|
|
|
|
console.log(e);
|
|
|
|
res.json({'error': String(e)});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
io.sockets.on('connection', socket => {
|
|
|
|
socket.emit('init', {'devices': dmx.devices, 'setup': config});
|
|
|
|
|
|
|
|
socket.on('request_refresh', () => {
|
|
|
|
for (const universe in config.universes) {
|
|
|
|
socket.emit('update', universe, dmx.universeToObject(universe));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('update', (universe, update) => {
|
|
|
|
dmx.update(universe, update);
|
|
|
|
});
|
|
|
|
|
|
|
|
dmx.on('update', (universe, update) => {
|
|
|
|
socket.emit('update', universe, update);
|
|
|
|
});
|
|
|
|
});
|
2013-11-17 16:45:53 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 19:24:06 +00:00
|
|
|
DMXWeb();
|