-
Notifications
You must be signed in to change notification settings - Fork 0
/
ws.js
65 lines (55 loc) · 1.83 KB
/
ws.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const config = require('./modules/config/config')
let http = require('http')
let express = require('express')
let fs = require('fs')
let io = require('socket.io')
let crypto = require('crypto')
const shell = require('shelljs');
let app = express()
let server = http.createServer(app)
io = io(server)
io.on('connection', function (socket) {
socket.on('multiplex-statechanged', function (data) {
if (typeof data.secret === 'undefined' || data.secret == null || data.secret === '') return
if (createHash(data.secret) === data.socketId) {
data.secret = null
socket.broadcast.emit(data.socketId, data)
}
})
socket.on('echo', function (data) {
socket.broadcast.emit('echo', data)
console.log(data)
/* if (shell.exec('yarn sync').code !== 0) {
shell.echo('Error: yarn sync failed');
shell.exit(1);
}
if (shell.exec('yarn demo').code !== 0) {
shell.echo('Error: yarn demo failed');
shell.exit(1);
}*/
})
})
app.get('/', function (req, res) {
let defaultResponse = {
"code": 200,
"message": "ECHO WORSHIP WSS"
}
res.status(defaultResponse.code)
res.send(defaultResponse)
})
app.get('/token', function (req, res) {
let ts = new Date().getTime()
let rand = Math.floor(Math.random() * 9999999)
let secret = ts.toString() + rand.toString()
res.send({secret: secret, socketId: createHash(secret)})
})
let createHash = function (secret) {
let cipher = crypto.createCipher('blowfish', secret)
return (cipher.final('hex'))
}
// Actually listen
server.listen(config.ws().port || null)
let brown = '\033[33m',
green = '\033[32m',
reset = '\033[0m'
console.log(brown + "ECHO Worship" + reset + " Socket.io running on: ws://" + green + config.ws().url + reset)