-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
61 lines (49 loc) · 1.54 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
var express = require('express');
var async = require("async");
var tiendas = require('./lib/tiendas');
var cache = require('./lib/cache');
var port = process.env.OPENSHIFT_NODEJS_PORT || 8080;
var ipaddress = process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1";
var tiempoEntrePeticiones = 15;
var app = express();
var colaPeticiones = async.queue(function (task, callback) {
setTimeout(function(){
var texto = task.texto;
var textoCache = task.textoCache;
var plataforma = task.plataforma;
var res = task.res;
tiendas.buscar(texto, plataforma, function(juegos) {
cache.agregar(textoCache, plataforma, juegos, null);
res.json(juegos);
});
callback();
},tiempoEntrePeticiones * 1000);
}, 1);
app.use(express.static(__dirname + '/public'));
app.listen(port, ipaddress);
console.log("App listening on port " + port);
app.get('/', function(req, res) {
res.sendfile('./public/index.html');
});
app.get('/buscar', function(req, res) {
var texto = req.query.texto || '';
var textoCache = texto.replace(' ', '').toLowerCase();
var plataforma = req.query.plataforma || null;
var task = {
texto: texto,
textoCache: textoCache,
plataforma: plataforma,
res: res
};
cache.existe(textoCache, plataforma, function(error, respuesta) {
if (respuesta) {
return cache.obtener(textoCache, plataforma, function(error, respuesta) {
res.json(respuesta);
});
}
colaPeticiones.push(task);
});
});
app.get('/plataformas', function(req, res) {
res.json(tiendas.listaPlataformas());
});