-
Notifications
You must be signed in to change notification settings - Fork 0
/
RenfeServer.js
164 lines (134 loc) · 4.46 KB
/
RenfeServer.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
var app = require('http').createServer(handler),
io = require('socket.io').listen(1337),
fs = require('fs'),
jsdom = require("jsdom");
var ciudades = {
"Madrid":"MADRI",
"Cuenca":"CUENC",
"Guadalajara":"GUADA",
"Valencia":"VALEN"
};
app.listen(8000);
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200, {
"Content-Type": "text/html"
});
res.end(data);
});
}
io.sockets.on("connection", function(socket) {
socket.on("travel", function(data) {
var renfeQuery = generateQuery(data.origen,data.destino,data.year,data.month,data.day);
var trenJson = {
"tipo":null,
"ruta":{
"origen":null,
"destino":null
},
"tiempo":{
"salida":null,
"llegada":null,
"duracion":null
},
"precios":null
},
precio={"tipo":null,
"cantidad":null};
var i=0;
var trenes=new Array(); //necesario!!
var trenesJson=new Array();
jsdom.env("http://horarios.renfe.com/HIRRenfeWeb/buscar.do?O=MADRI&D=CUENC&AF=2012&MF=04&DF=30", [
'http://code.jquery.com/jquery-1.5.min.js'
],
function(errors, window) {
//eliminar
trenJson.ruta.origen="Madrid";
trenJson.ruta.destino="Cuenca";
console.log("Working");
var $ = window.$;
$("table#row > tbody > tr").each(function(){
var children = $(this).children("td");// importante el $(this)
var tren =$(children[0]).text().trim();
tren=tren.replace(/[0-9]+/,"");
tren=tren.trim();
console.log("Tren: "+tren+" ");
trenJson.tipo=tren;
var depTime=$(children[1]).text().trim();
tren=tren.concat(" ("+depTime+") ");
console.log("Hora de salida: "+depTime);
trenJson.tiempo.salida=depTime;
var arrTime=$(children[2]).text().trim();
tren=tren.concat(" ("+arrTime+")");
console.log("Hora de llegada: "+arrTime);
trenJson.tiempo.llegada=arrTime;
var duration=$(children[3]).text().trim();
tren=tren.concat(" in "+duration+" ");
console.log("Duracion: "+duration);
trenJson.tiempo.duracion=duration;
//tbody casca!!!
var n=-1;
var ntr=$(children[4]).find("table tr#divcont").size();
tren=tren.concat("Precios: ");
trenJson.precios=new Array();
$(children[4]).find("table tr#divcont").each(function(){
var m=0;
n++;
var ntd=$(this).find("td").size();
$(this).find("td").each(function(index){
console.log("tr: "+n+" de "+ ntr+" / td: "+m +" de " + ntd);
console.log($(this).text());
if(m==1 || m==2){
tren=tren.concat($(this).text()+" ");
}
if(m==1){
precio.tipo=($(this).text());
}
if(m==2){
precio.cantidad=($(this).text());
trenJson.precios[n]=precio;
}
m++;
});
});
n++;
tren=tren.concat("\n");
trenes[i]=tren;
trenesJson[i]=trenJson;
i++;
console.log(JSON.stringify(trenesJson));
console.log("Tren scrapped\n\n\n\n\n");
});
socket.emit("query", {renfeQuery: renfeQuery,mresponse:trenes,jsonResponse:trenesJson});
});
});
});
function generateQuery( origin, destination, year, month, day){
var res = "http://horarios.renfe.com/HIRRenfeWeb/buscar.do";
res = res.concat("?");
res = res.concat("O");
res = res.concat("=");
res = res.concat(ciudades[origin]);
res = res.concat("&");
res = res.concat("D");
res = res.concat("=");
res = res.concat(ciudades[destination]);
res = res.concat("&");
res = res.concat("AF");
res = res.concat("=");
res = res.concat(year);
res = res.concat("&");
res = res.concat("MF");
res = res.concat("=");
res = res.concat(month);
res = res.concat("&");
res = res.concat("DF");
res = res.concat("=");
res = res.concat(day);
return res;
}