This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
238 lines (210 loc) · 6.06 KB
/
main.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
* App: ivaoToJson
* Description: Simple API REST to convert ivao whazzup.txt to json data
* Framework: Express on NodeJs
* Author: Riccardo Cosenza
* Mail: [email protected]
* Github: https://github.com/Rickyc81/ivaoToJson.git
*/
require('dotenv').config();
const express = require('express');
const fetch = require('node-fetch');
const helmet = require('helmet');
const cors = require('cors');
const app = express();
const PORT = process.env.PORT;
const URL = "https://api.ivao.aero/getdata/whazzup/whazzup.txt";
const URL_STATUS = "http://www.ivao.aero/whazzup/status.txt";
const URL_METAR = "http://wx.ivao.aero/metar.php";
app.use(helmet());
app.use(cors());
// Ivao Section: !GENERAL, !CLIENTS, !SERVERS, !AIRPORTS
// Main page route
app.get('/status', (req, res) => {
let url_list = [];
fetch(URL_STATUS)
.then(response => {
if (response.ok) {
return response.text()
} else {
return data = null;
}
console.log(response.ok);
})
.then(
data => {
if (data !== null) {
splitted = data.split('\n');
splitted.forEach((item) => {
let sub = item.split("=");
if (sub[1]) {
url_list.push({
Service: sub[0],
Link: sub[1].replace(/(\r\n|\n|\r)/gm, "")
});
}
});
res.status(200).send({
status: 'success',
code: 200,
response: {
message: 'Ivao status URL List',
data: url_list,
},
})
}
})
});
app.get('/clients', function(req, res) {
let dataToSend = [];
fetch(URL)
.then(response => {
if (response.body._outBuffer && response.ok) {
return response.text();
} else {
return data = null;
}
})
.then(
data => {
//console.log(data)
if (data !== null) {
let splitted = data.split('\n');
let startIndex = splitted.indexOf("!CLIENTS") + 1;
let endIndex = splitted.indexOf("!AIRPORTS") + 2;
console.log(startIndex, endIndex)
if (!startIndex || startIndex === "0") {
res.send({
status: 'success',
code: 200,
response: {
message: "Something wrong, malformed file retrived",
},
})
return
} else {
let clients = splitted.slice(startIndex, endIndex);
clients.forEach(line => {
let fields = line.split(":");
let temp = {}
let decodeRating = (ratingNumber) => {
let ratings = [
"Observer",
"Basic Flight Student (FS1)",
"Flight Student (FS2)",
"Advanced Flight Student (FS3)",
"Private Pilot (PP)",
"Senior Private Pilot (SPP)",
"Commercial Pilot (CP)",
"Airline Transport Pilot (ATP)",
"Senior Flight Instructor (SFI)",
"Chief Flight Instructor (CFI)"
]
return ratings[ratingNumber - 1];
}
temp.Pilot = {
Callsign: fields[0],
Vid: fields[1],
Rating: decodeRating(fields[41]),
Type: fields[3]
};
temp.Software = {
SoftwareName: fields[38],
SoftwareVersion: fields[39],
ConnectionTime: fields[37]
};
temp.Position = {
Latitude: fields[5],
Longitude: fields[6],
Altitude: fields[7],
};
temp.Flight_Data = {
GroundSpeed: fields[8],
Heading: fields[45],
OnGround: fields[46]
};
temp.Flight_Plan = {
FullAircraft: fields[9],
Squawk: fields[17],
Departure: fields[11],
Destination: fields[13],
DepartureTime: fields[22],
EnrouteTime: parseInt(fields[24]) * 60 + parseInt(fields[25]),
Endurace: parseInt(fields[26]) * 60 + parseInt(fields[27]),
CruislingLevel: fields[12],
CruisingSpeed: fields[10],
FlightRules: fields[21],
TypeOfFlight: fields[43],
Pob: fields[44],
Route: fields[30],
Alternate: fields[28],
Alternate2: fields[42],
Remarks: fields[29]
};
dataToSend.push(temp);
})
res.status(200).send({
status: 'success',
code: 200,
response: {
message: 'fetch data ok',
data: dataToSend,
},
})
}
} else {
res.send({
status: "success",
code: 200,
response: {
message: "Response ok, but data not found!"
}
})
}
})
.catch(error => {
console.error('Error: ', error)
res.send({
status: "fail",
code: 400,
response: {
message: `${error}, check that you typed the url correctly`
}
})
});
});
// Unknow routes
app.all('*', (req, res) => {
res.sendStatus(404)
})
// Unknow routes
app.get('/taf', (req, res) => {
res.status(200).send({
status: 'success',
code: 200,
response: {
message: 'Deprecated',
},
})
})
// Unknow Shorttaf
app.get('/shorttaf', (req, res) => {
res.status(200).send({
status: 'success',
code: 200,
response: {
message: 'Deprecated',
},
})
})
// Metar
app.get('/metar', (req, res) => {
res.status(200).send({
status: 'success',
code: 200,
response: {
message: 'Deprecated',
},
})
})
app.listen(process.env.PORT || 3000, () => console.log(`Server listening in ${PORT}`));