-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
73 lines (57 loc) · 2.12 KB
/
app.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
66
67
68
69
70
71
72
73
const express = require('express');
const app = express();
const bodyparser = require('body-parser');
const http = require('http');
const server = http.Server(app);
const socketIO = require('socket.io');
const io = socketIO(server);
let usuarios = [];
app.set('views', __dirname + '/views');
app.use(express.static(__dirname + '/node_modules/'));
app.engine('html',require('ejs').renderFile);
app.set('view engine','html');
app.use(bodyparser.urlencoded({extended:false}));
app.use(bodyparser.json());
app.use(express.static(__dirname + '/public'));
app.get('/',(req, res) => { res.render('index'); });
app.get('/partials/sala',(req, res) => { res.render('partials/sala'); });
app.post('/valida',(req,res)=>{
let existe = false;
usuarios.forEach(nombre=>{
if(nombre.usuario==req.body.n){existe=true;return;}
});
res.send(existe);
})
app.post('/pruebaEnvio',(req, res) => { res.status(200).send({respuesta:'Bien'}); });
app.get('*',(req, res) => { res.render('index'); });
io.on('connection', (socket)=>{
socket.on('Nuevo',(data)=>{
let existe=false;
usuarios.forEach(nombre =>{
if(data.nickName == nombre.usuario && nombre.id == data.id){
nombre.id=socket.id;
existe=true;
}
});
if(!existe){
usuarios.push({usuario:data.nickName, id:socket.id, s:socket});
socket.broadcast.emit('EnviarCliente',{nombre: data.nickName,mensaje:'Se a conectado'});
console.log(data.nickName + ' Se a Conectado');
}
socket.emit('id');
});
socket.on('EnviarServer',(data)=>{
io.emit('EnviarCliente',{nombre:data.nombre,mensaje:data.mensaje});
});
socket.on('cerrar', ()=>{
usuarios.forEach(nombre =>{
if(nombre.id == socket.id){
socket.broadcast.emit('EnviarCliente',{nombre: nombre.usuario, mensaje:'Cerro Sesión'});
socket.disconnect();
usuarios.splice(usuarios[nombre],1);
}
});
});
socket.on('disconnect', ()=>{});
});
server.listen(80, ()=>{ console.log('Servidor Activado'); });