-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
output.go
75 lines (62 loc) · 1.28 KB
/
output.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
package main
import (
"encoding/json"
"fmt"
"log"
)
const (
outputPlain = "plain"
outputCSV = "csv"
outputJSON = "json"
)
//nolint:forbidigo // allow println here for non-intrusive response
func handleOutput(emails []string) {
switch output {
case outputCSV:
for _, email := range emails {
if outputWithURL {
fmt.Print(url + ",")
}
fmt.Println(email)
}
case outputJSON:
fmt.Println(prepareJSONOutput(emails))
default:
for _, email := range emails {
if outputWithURL {
fmt.Print(url + " ")
}
fmt.Println(email)
}
}
}
func prepareJSONOutput(emails []string) string {
if outputWithURL {
type outputFormat struct {
URL string `json:"url"`
Email string `json:"email"`
}
out := make([]outputFormat, len(emails))
for i, email := range emails {
out[i].URL = url
out[i].Email = email
}
b, err := json.Marshal(out)
if err != nil {
log.Fatal(fmt.Errorf("failed to marshal json with url response: %w", err))
}
return string(b)
}
type outputFormat struct {
Email string `json:"email"`
}
out := make([]outputFormat, len(emails))
for i, email := range emails {
out[i].Email = email
}
b, err := json.Marshal(out)
if err != nil {
log.Fatal(fmt.Errorf("failed to marshal json response: %w", err))
}
return string(b)
}