-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
106 lines (88 loc) · 2.17 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
package main
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strings"
"time"
)
type CepParam struct {
cep string `json:"cep"`
}
type ViaCEP struct {
Cep string `json:"cep"`
Logradouro string `json:"logradouro"`
Complemento string `json:"complemento"`
Bairro string `json:"bairro"`
Localidade string `json:"localidade"`
Uf string `json:"uf"`
Ibge string `json:"ibge"`
Gia string `json:"gia"`
Ddd string `json:"ddd"`
Siafi string `json:"siafi"`
}
type ApiCEP struct {
Status int `json:"status"`
Code string `json:"code"`
State string `json:"state"`
City string `json:"city"`
District string `json:"district"`
Address string `json:"address"`
}
func main() {
var cep string
c1 := make(chan ApiCEP)
c2 := make(chan ViaCEP)
fmt.Println("Por favor digite o cep...")
fmt.Scan(&cep)
var s = strings.SplitAfter(cep, string([]rune(cep)[4]))
var cept = s[0] + "-" + s[1]
// ApiCEP
go func() {
req, err := http.Get("https://cdn.apicep.com/file/apicep/" + cept + ".json")
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer requisição: %v\n", err)
}
defer req.Body.Close()
res, err := io.ReadAll(req.Body)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao ler resposta %v\n", err)
}
var data ApiCEP
err = json.Unmarshal(res, &data)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer o parse da resposta: %v\n", err)
}
c1 <- data
}()
//ViaCEP
go func() {
req, err := http.Get("http://viacep.com.br/ws/" + cep + "/json/")
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer requisição: %v\n", err)
}
defer req.Body.Close()
res, err := io.ReadAll(req.Body)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao ler resposta %v\n", err)
}
var data ViaCEP
err = json.Unmarshal(res, &data)
if err != nil {
fmt.Fprintf(os.Stderr, "Erro ao fazer o parse da resposta: %v\n", err)
}
c2 <- data
}()
select {
case data := <-c1:
fmt.Printf("API Source: ApiCEP\n")
fmt.Printf("Data: %s\n", data)
case data := <-c2:
fmt.Printf("API Source: ViaCEP\n")
fmt.Printf("Data: %s\n", data)
case <-time.After(time.Second * 1):
println("timeout")
}
}