-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
474 lines (429 loc) · 10.6 KB
/
main.go
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"strings"
dnslink "github.com/dnslink-std/go"
)
type WriteOptions struct {
domains []string
debug bool
err *log.Logger
out *log.Logger
firstNS interface{}
searchNS interface{}
ttl bool
}
type Writer interface {
write(lookup string, result dnslink.Result)
end()
}
type WriteJSON struct {
firstOut bool
firstErr bool
options WriteOptions
}
func NewWriteJSON(options WriteOptions) *WriteJSON {
write := WriteJSON{
firstOut: true,
firstErr: true,
options: options,
}
if len(options.domains) > 1 {
options.out.Println("[")
}
if options.debug {
options.err.Println("[")
}
return &write
}
func (write *WriteJSON) write(lookup string, result dnslink.Result) {
out := write.options.out
err := write.options.err
prefix := ""
if write.firstOut {
write.firstOut = false
} else {
prefix = ","
}
outLine := map[string]interface{}{}
if write.options.ttl {
outLine["links"] = result.Links
outLine["txtEntries"] = result.TxtEntries
} else {
noTtl := result.NoTtl()
outLine["links"] = noTtl.Links
outLine["txtEntries"] = noTtl.TxtEntries
}
if len(write.options.domains) > 1 {
outLine["lookup"] = lookup
}
jsonOutline, error := json.Marshal(outLine)
if error != nil {
panic(error)
}
out.Print(prefix + string(jsonOutline))
if write.options.debug {
for _, statement := range result.Log {
prefix := ""
if write.firstErr {
write.firstErr = true
} else {
prefix = "\n,"
}
errLine := map[string]interface{}{
"code": statement.Code,
}
if statement.Entry != "" {
errLine["entry"] = statement.Entry
}
if statement.Reason != "" {
errLine["reason"] = statement.Reason
}
if len(write.options.domains) > 1 {
errLine["lookup"] = lookup
}
jsonErrline, error := json.Marshal(errLine)
if error != nil {
panic(error)
}
err.Print(prefix + string(jsonErrline))
}
}
}
func (write *WriteJSON) end() {
if len(write.options.domains) > 1 {
write.options.out.Print("]")
}
if write.options.debug {
write.options.err.Print("]")
}
}
type WriteTXT struct {
firstOut bool
firstErr bool
options WriteOptions
}
func NewWriteTXT(options WriteOptions) *WriteTXT {
return &WriteTXT{
firstOut: true,
firstErr: true,
options: options,
}
}
func (write *WriteTXT) write(lookup string, result dnslink.Result) {
out := write.options.out
err := write.options.err
prefix := ""
if len(write.options.domains) > 1 {
prefix = lookup + ": "
}
for ns, values := range result.Links {
if write.options.searchNS != false && write.options.searchNS != ns {
continue
}
for _, entry := range values {
identifier := entry.Identifier
if write.options.ttl {
identifier += " [ttl=" + fmt.Sprint(entry.Ttl) + "]"
}
if write.options.searchNS != false {
if write.options.searchNS != ns {
continue
}
out.Println(prefix + identifier)
} else {
out.Println(prefix + "/" + ns + "/" + identifier)
}
if write.options.firstNS != false {
break
}
}
}
if write.options.debug {
for _, logEntry := range result.Log {
optional := ""
if logEntry.Entry != "" {
optional += " entry=" + logEntry.Entry
}
if logEntry.Reason != "" {
optional += " reason=" + logEntry.Reason
}
err.Println("[" + logEntry.Code + "]" + optional)
}
}
}
func (write *WriteTXT) end() {}
type WriteCSV struct {
firstOut bool
firstErr bool
options WriteOptions
}
func NewWriteCSV(options WriteOptions) *WriteCSV {
return &WriteCSV{
firstOut: true,
firstErr: true,
options: options,
}
}
func (write *WriteCSV) write(lookup string, result dnslink.Result) {
out := write.options.out
err := write.options.err
if write.firstOut {
write.firstOut = false
line := "lookup,namespace,identifier"
if write.options.ttl {
line += ",ttl"
}
out.Println(line)
}
for ns, values := range result.Links {
if write.options.searchNS != false && write.options.searchNS != ns {
continue
}
for _, value := range values {
var line string
if write.options.ttl {
line = csv(lookup, ns, value.Identifier, value.Ttl)
} else {
line = csv(lookup, ns, value.Identifier)
}
out.Println(line)
if write.options.firstNS != false {
break
}
}
}
if write.options.debug {
for _, logEntry := range result.Log {
if write.firstErr {
write.firstErr = false
err.Println("code,entry,reason")
}
err.Println(csv(logEntry.Code, logEntry.Entry, logEntry.Reason))
}
}
}
func csv(rest ...interface{}) string {
result := ""
prefix := ""
for _, entry := range rest {
value := ""
switch v := entry.(type) {
case int:
case uint32:
value = fmt.Sprint(v)
case bool:
if v {
value = "true"
} else {
value = "false"
}
case string:
value = `"` + strings.ReplaceAll(v, `"`, `""`) + `"`
}
result += prefix + value
prefix = ","
}
return result
}
func (write *WriteCSV) end() {}
var formats []interface{} = []interface{}{"json", "txt", "csv"}
func main() {
options, lookups := getOptions(os.Args[1:])
if options.has("help", "h") {
showHelp("dnslink")
return
}
if options.has("version", "v") {
showVersion()
return
}
if len(lookups) == 0 {
showHelp("dnslink")
os.Exit(1)
return
}
format := options.firstMatch(formats, "format", "f")
if format == false {
format = "txt"
}
writeOpts := WriteOptions{
domains: lookups,
firstNS: options.first("first"),
searchNS: options.first("first", "ns", "n"),
debug: options.has("debug") || options.has("d"),
err: log.New(os.Stderr, "", 0),
out: log.New(os.Stdout, "", 0),
ttl: options.has("ttl"),
}
var output Writer
if format == "txt" {
output = NewWriteTXT(writeOpts)
} else if format == "csv" {
output = NewWriteCSV(writeOpts)
} else {
output = NewWriteJSON(writeOpts)
}
resolver := dnslink.Resolver{}
if options.has("dns") {
resolver.LookupTXT = dnslink.NewUDPLookup(getServers(options.get("dns")), 0)
}
for _, lookup := range lookups {
result, err := resolver.Resolve(lookup)
if err != nil {
panic(err)
}
output.write(lookup, result)
}
output.end()
}
func getServers(raw []interface{}) []string {
servers := []string{}
for _, entry := range raw {
switch string := entry.(type) {
case string:
servers = append(servers, string)
}
}
return servers
}
func showHelp(command string) int {
fmt.Printf(command + ` - resolve dns links in TXT records
USAGE
` + command + ` [--help] [--format=json|text|csv] [--ns=<ns>] \
[--first=<ns>] [--dns=server] [--debug] \
<hostname> [...<hostname>]
EXAMPLE
# Receive the dnslink entries for the dnslink.io domain.
> ` + command + ` dnslink.dev
/ipfs/QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF
# Receive only namespace "ipfs" entries as text for dnslink.io.
> ` + command + ` --ns=ipfs dnslink.dev
QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF
# Receive only the first ipfs entry for the "ipfs" namespace.
> ` + command + ` --first=ipfs dnslink.dev
QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF
# Getting information about the --ttl as received from the server.
> ` + command + ` --ttl dnslink.dev
/ipfs/QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF [ttl=53]
# Receive the dnslink entries using the system DNS.
> ` + command + ` --dns dnslink.dev
/ipfs/QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF
# Receive all dnslink entries for multiple domains as csv.
> ` + command + ` --format=csv dnslink.dev ipfs.io
lookup,namespace,identifier
"ipfs.io","ipns","website.ipfs.io"
"dnslink.dev","ipfs","QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF"
# Receive ipfs entries for multiple domains as json.
> ` + command + ` --format=json dnslink.dev ipfs.io
[
{"lookup":"ipfs.io","txtEntries":["/ipns/website.ipfs.io"],"links":{"ipns":["website.ipfs.io"]}}
,{"lookup":"dnslink.dev","txtEntries":["/ipfs/QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF"],"links":{"ipfs":["QmXNosdfz3WQUHncsYBTw7diwYzCibVhrJmEhNNaMPQBQF"]}}
]
# Receive both the result and log as csv and redirect each to files.
> ` + command + ` --format=csv --debug dnslink.io \
>dnslink-io.csv \
2>dnslink-io.log.csv
OPTIONS
--help, -h Show this help.
--version, -v Show the version of this command.
--format, -f Output format json, text or csv (default=text)
--ttl Include ttl in output (any format)
--dns=<server> Specify a dns server to use. If you don't specify a
server it will use the system dns service. As server you
can specify a domain with port: 1.1.1.1:53
--debug, -d Render log output to stderr in the specified format.
--ns, -n Only render one particular DNSLink namespace.
--first Only render the first of the defined DNSLink namespace.
Read more about DNSLink at https://dnslink.dev.
dnslink-go@` + dnslink.Version)
return 0
}
func showVersion() int {
fmt.Println(dnslink.Version)
return 0
}
type Options struct {
All map[string][]interface{} `json:"all"`
}
func (o *Options) has(keys ...string) bool {
if o.All == nil {
return false
}
for _, key := range keys {
_, hasOption := o.All[key]
if hasOption {
return true
}
}
return false
}
func (o *Options) get(keys ...string) []interface{} {
if o.All == nil {
return []interface{}{}
}
result := []interface{}{}
for _, key := range keys {
values, hasOption := o.All[key]
if hasOption {
result = append(result, values...)
}
}
return result
}
func (o *Options) first(keys ...string) interface{} {
values := o.get(keys...)
if len(values) == 0 {
return false
}
return values[0]
}
func (o *Options) firstMatch(matches []interface{}, keys ...string) interface{} {
values := o.get(keys...)
if len(values) == 0 {
return false
}
for _, value := range values {
for _, match := range matches {
if value == match {
return value
}
}
}
return false
}
func (o *Options) add(key string, value interface{}) {
if o.All == nil {
o.All = map[string][]interface{}{}
}
values, hasOption := o.All[key]
if !hasOption {
o.All[key] = []interface{}{value}
} else {
o.All[key] = append(values, value)
}
}
func getOptions(args []string) (Options, []string) {
options := Options{}
rest := []string{}[:]
for _, arg := range args {
if strings.HasPrefix(arg, "--") {
arg = arg[2:]
} else if strings.HasPrefix(arg, "-") {
arg = arg[1:]
} else {
rest = append(rest, arg)
continue
}
parts := strings.SplitN(arg, "=", 2)
if len(parts) > 1 {
options.add(parts[0], parts[1])
} else {
options.add(parts[0], true)
}
}
return options, rest
}