-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js~
69 lines (59 loc) · 1.7 KB
/
server.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
var http = require('http'),
fs = require('fs'),
path = require('path'),
mime = require('mime'),
cache = {},
nal = require('nal/leer_numeros.js');
/*io = require('socket.io').listen(server)*/
function envia404 (respuesta){
respuesta.writeHeader(404, {'Content-Type': 'text/plain'});
respuesta.write('Error 404: recurso no encontrado.');
respuesta.end();
}
function enviaFile (respuesta, filePath, fileContents){
respuesta.writeHeader(200, {'Content-Type':mime.lookup(path.basename(filePath))});
respuesta.end(fileContents);
}
function serveStatic (respuesta, cache, absPath){
if (cache[absPath]){
enviaFile(respuesta, absPath, cache[absPath]);
} else{
fs.exists(absPath, function (exists){
if(exists){
fs.readFile(absPath, function (err, data){
if(err){
envia404(respuesta);
} else{
cache[absPath] = data;
enviaFile(respuesta, absPath, data);
}
});
} else{
envia404(respuesta);
}
});
}
}
var server = http.createServer(function (pedido, respuesta){
var filePath = false;
if(pedido.url == '/'){
filePath = 'public/index.html';
} else{
filePath = 'public' + pedido.url;
}
var absPath = './' + filePath;
serveStatic(respuesta, cache, absPath);
});
var port = Number(process.env.PORT || 5001)
server.listen(port, function (){
console.log('Servidor escuchando en puerto: '+port);
});
var io = require('socket.io').listen(server);
io.sockets.on('connection', function (socket){
console.log('Socket conectado');
socket.on('consulta', function (data){
var respuesta = data.dato;
io.sockets.emit('resp_consulta', nal.leerNumeros(respuesta));
console.log(nal.leerNumeros(respuesta));
});
});