-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert.lua
432 lines (331 loc) · 9.54 KB
/
convert.lua
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
-- ----------------------------------------------------------------------------
--
-- convert - convert a csv file to Lua's table format
--
-- ----------------------------------------------------------------------------
local trace = require("lib.trace") -- shortcut for tracing
local _frmt = string.format
local _cat = table.concat
-- ----------------------------------------------------------------------------
--
local m_logger = trace.new("convert")
-- ----------------------------------------------------------------------------
--
local m_App =
{
sAppVersion = "0.0.1", -- application's version
sAppName = "convert", -- name for the application
sRelDate = "2021/07/14",
tLines = { }, -- lines read from file
tServers = { }, -- list of DNS servers
}
-- ----------------------------------------------------------------------------
-- these are filters examples divided by continent
-- since name servers country codes are 2 digit long I used the list below
--
-- https://worldpopulationreview.com/country-rankings/list-of-countries-by-continent
--
-- https://en.wikipedia.org/wiki/Country_code_top-level_domain
--
local m_tF_Europe =
{
"(IT)", -- Italy
"(SM)", -- San Marino
"(VA)", -- Vatican City
"(GR)", -- Greece
"(PO)", -- Poland
"(DE)", -- Germany
"(AT)", -- Austria
"(BE)", -- Belgium
"(NL)", -- Netherlands
"(FR)", -- France
"(DK)", -- Denmark
"(FI)", -- Finland
"(IS)", -- Iceland
"(NO)", -- Norway
"(SE)", -- Sweden
"(CZ)", -- Czech Republic
"(SK)", -- Slovakia
"(HU)", -- Hungary
"(RO)", -- Romania
"(EE)", -- Estonia
"(LV)", -- Latvia
"(LT)", -- Lithuania
"(MD)", -- Moldova
"(LI)", -- Liechtenstein
"(LU)", -- Luxembourg
"(MC)", -- Monaco
"(CH)", -- Switzerland
"(ES)", -- Spain
"(PT)", -- Portugal
"(AD)", -- Andorra
"(SI)", -- Slovenia
"(HR)", -- Croatia (Hrvatska)
"(RS)", -- Serbia
"(ME)", -- Montenegro
"(MK)", -- North Macedonia
"(AL)", -- Albania
"(UK)", -- United Kingdom
"(IE)", -- Ireland
}
local m_tF_NorthAmerica =
{
"(CA)", -- Canada
"(US)", -- United States
"(MX)", -- Mexico
"(CU)", -- Cuba
"(JM)", -- Jamaica
"(GT)", -- Guatemala
}
local m_tF_SouthAmerica =
{
"(AR)", -- Argentina
"(BO)", -- Bolivia
"(BR)", -- Brazile
"(CO)", -- Colombia
}
local m_tF_Asia =
{
"(AE)", -- United Arab Emirates
"(BT)", -- Buthan
"(CN)", -- China
"(RU)", -- Russia
"(HK)", -- Hong Kong
"(TR)", -- Turkey
"(TW)", -- Taiwan
"(MV)", -- Maldives
}
local m_tF_Africa =
{
"(AO)", -- Angola
"(RW)", -- RWanda
"(TZ)", -- Tanzania
"(ZA)", -- South Africa
"(ZM)", -- Zambia
"(ZW)", -- Zimbabwe
}
local m_tF_Oceania =
{
"(AU)", -- Australia
"(NZ)", -- New Zealand
"(PG)", -- Papua New Guinea
"(WS)", -- Samoa
}
local m_tF_Antarctica =
{
"(AQ)", -- Antarctica (1 entry in big list)
}
-- ----------------------------------------------------------------------------
--
-- nameservers.csv filtered list of responding servers
--
-- nameservers-all.csv complete list of registered servers
--
local m_Config =
{
sFileInput = "data/nameservers-all.csv",
sFileOutput = "data/nameservers-all.lua",
tFilters = nil, -- m_tF_Europe,
}
-- ----------------------------------------------------------------------------
-- remove leading whitespace from string.
-- http://en.wikipedia.org/wiki/Trim_(programming)
--
local function str_ltrim(inString)
if not inString then return "" end
return inString:gsub("^%s*", "")
end
-- ----------------------------------------------------------------------------
-- test if the input string is a valid ip4 address
--
local function str_testip4(inString)
inString = str_ltrim(inString)
if 0 == #inString then return false end
local iNumber
local iParts = 0
for sToken in string.gmatch(inString, "[^.]*") do
iNumber = tonumber(sToken) or -1
if 0 > iNumber or 256 <= iNumber then return false end
iParts = iParts + 1
end
return 4 == iParts
end
-- ----------------------------------------------------------------------------
-- select rows that contain the specified text
--
local function ApplyFilters(inTable)
if not inTable then return nil end
local tResults = { }
local tFilters = m_Config.tFilters
if not tFilters or 0 == #tFilters then return inTable end
for _, server in next, inTable do
for i=1, #tFilters do
-- add the row if filter found
--
if server[3]:find(tFilters[i], 1, true) then
tResults[#tResults + 1] = server
break
end
end
end
return tResults
end
-- ----------------------------------------------------------------------------
-- convert a row to a text line
--
local function ToString(inTable)
local sOutput = { }
-- provide a decent format for the addresses
--
for i=1, 2 do
sOutput[#sOutput + 1] = _frmt("\"% 15s\"", inTable[i])
end
sOutput[#sOutput + 1] = _frmt("\"%s\"", inTable[3])
return _cat(sOutput, ", ")
end
-- ----------------------------------------------------------------------------
-- save servers to file
--
local function SaveServers()
m_logger:line("SaveServers")
local tServers = m_App.tServers
if not tServers then
m_logger:line("Servers' list is empty!")
return false
end
-- get the file's content
--
local fhSrc = io.open(m_Config.sFileOutput, "w")
if not fhSrc then
m_logger:line("Unable to open destination file: " .. m_Config.sFileOutput)
return false
end
fhSrc:write("local _servers =\n{\n")
for _, aServer in next, tServers do
fhSrc:write("\t{0," .. ToString(aServer) .. "},\n")
end
fhSrc:write("}\n\nreturn _servers\n")
fhSrc:close()
return true
end
-- ----------------------------------------------------------------------------
--
local function Process()
m_logger:line("Process")
local tLines = m_App.tLines
local tServers = { }
if 0 == #tLines then return false end
local tEnabled = {1, 0, 0, 1, 1, 1} -- columns enabled for each line
for _, aLine in next, tLines do
-- split tokens
--
local iCellIndex = 1
local tCurRow = { }
local sPartial = ""
local sLabel = ""
for sToken in string.gmatch(aLine, "[^,]*") do
if 1 == tEnabled[iCellIndex] then
-- some names have a comma embedded and it's quoted in "
-- like: "ShenZhen Sunrise Technology Co.,Ltd."
--
if sToken:find("\"", 1, true) then
if 0 == #sPartial then
sPartial = sToken:gsub("\"", "")
else
sToken = sPartial .. sToken:gsub("\"", "")
sPartial = ""
end
end
if 0 == #sPartial then
tCurRow[#tCurRow + 1] = sToken
end
end
if 0 == #sPartial then iCellIndex = iCellIndex + 1 end
if iCellIndex > #tEnabled then break end
end
if str_testip4(tCurRow[1]) then
-- rows are not stored by index but using a label
--
sLabel = tCurRow[2]
if not tServers[sLabel] then
-- add a new entry
--
tServers[sLabel] = {tostring(tCurRow[1]), "", sLabel .. " - " .. tCurRow[4] .. " (" .. tCurRow[3] .. ")"}
else
-- substitute 2nd address
--
tServers[sLabel][2] = tostring(tCurRow[1])
end
else
m_logger:showerr("invalid buffer", aLine)
end
end
-- store table
--
m_App.tServers = ApplyFilters(tServers)
return true
end
-- ----------------------------------------------------------------------------
-- read the files as lines
--
local function GetLines()
m_logger:line("GetLines")
-- get the file's content
--
local fhSrc = io.open(m_Config.sFileInput, "r")
if not fhSrc then
m_logger:line("Unable to open source file: " .. m_Config.sFileInput)
return false
end
-- read the whole line with the end of line too
--
local tLines = { }
local iBinned = 0
-- add line by line
--
local sLine = fhSrc:read("*L")
while sLine do
-- skip IPV6 entries
--
if sLine:find("::", 1, true) then
m_logger:line("Binned: " .. sLine)
iBinned = iBinned + 1
else
tLines[#tLines + 1] = sLine
end
sLine = fhSrc:read("*L")
end
fhSrc:close()
-- associate values read
--
m_App.tLines = tLines
m_logger:line("Read lines count: " .. #tLines)
m_logger:line("Binned lines count: " .. iBinned)
return true
end
-- ----------------------------------------------------------------------------
-- basically if we have some command in the commands' list because of an
-- override then communicate with the scanner and exit
--
local function RunApplication(...)
-- m_logger:line("RunApplication")
-- open logging and the output file
--
m_logger:open()
-- get the arguments if any
--
local tArgs = { }
for _, v in ipairs {...} do tArgs[#tArgs + 1] = v end
if tArgs[1] then m_Config.sFileInput = tArgs[1] end
if tArgs[2] then m_Config.sFileOutput = tArgs[2] end
-- process it
--
if GetLines() and Process() then SaveServers() end
m_logger:close()
end
-- ----------------------------------------------------------------------------
-- run it
--
RunApplication(...)
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------