-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
151 lines (142 loc) · 5.33 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
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
var connectRoute = require('connect-route');
var connect = require('connect');
var serveStatic = require('serve-static');
var wit = require('node-wit');
var cheerio = require('cheerio');
var request = require('request');
var ACCESS_TOKEN = "Z27S2JSXZROULMR7EH55MSU66ILMOSKY";
connect()
.use(connectRoute(function (router) {
router.get('/api/intent/:q', function (req, res, next) {
wit.captureTextIntent(ACCESS_TOKEN, req.params.q, function (wit_err, wit_res) {
if (wit_err) console.log("Error: ", wit_err);
res.end(JSON.stringify(wit_res));
});
})
}))
.use(connectRoute(function (router) {
router.get('/api/weather/forecast/:lat/:lon/:begin/:end', function (req, res, next) {
request('http://graphical.weather.gov/xml/sample_products/browser_interface/ndfdXMLclient.php?lat=' + req.params.lat + '&lon=' + req.params.lon + '&product=time-series&begin=' + req.params.begin + '&end=' + req.params.end, function(err, resp, xml){
var $ = cheerio.load(xml);
//build time ranges
var timeRanges = {};
$('data time-layout').each(function(){
var key = $(this).find('layout-key').text();
var times = [];
var startTime = false;
var endTime = false;
var name = false;
$(this).children().each(function(){
if ($(this).get(0).tagName == 'start-valid-time' && startTime) {
times.push({startTime: startTime, endTime:endTime, name:name});
startTime = false;
endTime = false;
name = false;
}
if ($(this).get(0).tagName == 'start-valid-time') {
startTime = $(this).text();
if ($(this).attr('period-name')) name = $(this).attr('period-name');
} else if ($(this).get(0).tagName == 'end-valid-time') {
endTime = $(this).text();
}
});
times.push({startTime: startTime, endTime:endTime, name:name});
timeRanges[key] = times;
});
//build parameters
var parameters = {};
$('data parameters').children().each(function(){
switch($(this).get(0).tagName) {
case 'temperature':
case 'precipitation':
case 'wind-speed':
case 'direction':
case 'cloud-amount':
case 'probability-of-precipitation':
case 'fire-weather':
case 'wind-speed':
case 'humidity':
var tag = $(this).get(0).tagName;
var type = $(this).attr('type');
var units = $(this).attr('units');
var timeLayout = $(this).attr('time-layout');
var name = $(this).find('name').text();
var values = [];
$(this).find('value').each(function(){
values.push($(this).text());
});
var dataName = name.toLowerCase().replace(/\,/g, "").replace(/\s+/g, "-");
parameters[dataName] = {
section: tag,
name: name,
units: units,
timeLayout: timeLayout,
values: values
};
break;
case 'weather':
var tag = $(this).get(0).tagName;
var timeLayout = $(this).attr('time-layout');
var name = $(this).find('name').text();
var values = [];
$(this).find('weather-conditions').each(function(){
var value = $(this).find('value').first();
values.push({
coverage: value.attr('coverage'),
intensity: value.attr('intensity'),
weatherType: value.attr('weather-type'),
qualifier: value.attr('qualifier')
});
});
var dataName = name.toLowerCase().replace(/\,/g, "").replace(/\s+/g, "-");
parameters[dataName] = {
section: tag,
name: name,
timeLayout: timeLayout,
values: values
};
break;
case 'convective-hazard':
//to-do
break;
case 'climate-anomaly':
//to-do
break;
case 'hazards':
var tag = $(this).get(0).tagName;
var timeLayout = $(this).attr('time-layout');
var name = $(this).find('name').text();
var values = [];
$(this).find('hazard-conditions').each(function(){
console.log($(this).html());
var value = $(this).find('hazard');
values.push({
hazardCode: value.attr('hazardcode'),
phenomena: value.attr('phenomena'),
significance: value.attr('significance'),
hazardType: value.attr('hazardtype'),
hazardTextURL: value.find('hazardTextURL').text()
});
});
var dataName = name.toLowerCase().replace(/\,/g, "").replace(/\s+/g, "-");
parameters[dataName] = {
section: tag,
name: name,
timeLayout: timeLayout,
values: values
};
break;
default:
break;
}
});
// assemble product
var weather = {
timeRanges: timeRanges,
parameters: parameters
};
res.end(JSON.stringify(weather));
});
})
}))
.use(serveStatic(__dirname + "/www")).listen(3000);