-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
168 lines (141 loc) · 3.35 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
package main
import (
"encoding/json"
"flag"
"fmt"
"io"
"net/http"
"time"
)
// apis de consulta - prod
const (
urlBrasil = "https://brasilapi.com.br/api/cep/v1/%s"
urlViaCep = "http://viacep.com.br/ws/%s/json/"
BRASIL_API = "BrasilAPI"
VIA_CEP = "ViaCep"
)
// struct principal pra retorno padronizado
type Endereco struct {
Cep, Estado, Cidade, Rua, Bairro string
}
// brasil api
type BrasilAPIResp struct {
Cep string `json:"cep"`
State string `json:"state"`
City string `json:"city"`
Street string `json:"street"`
Area string `json:"neighborhood"` // aka bairro
}
// via cep
type ViaCEPResp struct {
Cep string `json:"cep"`
Rua string `json:"logradouro"`
Bairro string `json:"bairro"`
Cidade string `json:"localidade"`
Uf string `json:"uf"`
}
type apiResult struct {
endereco Endereco
api string
err error
}
// converters para normalizar a resposta
func (resp *BrasilAPIResp) toEndereco() Endereco {
return Endereco{
Cep: resp.Cep,
Estado: resp.State,
Cidade: resp.City,
Rua: resp.Street,
Bairro: resp.Area,
}
}
func (resp *ViaCEPResp) toEndereco() Endereco {
return Endereco{
Cep: resp.Cep,
Estado: resp.Uf,
Cidade: resp.Cidade,
Rua: resp.Rua,
Bairro: resp.Bairro,
}
}
// tenta brasil api primeiro
func buscaBrasilApi(cep string, result chan<- apiResult) {
url := fmt.Sprintf(urlBrasil, cep)
resp, err := http.Get(url)
if err != nil {
result <- apiResult{Endereco{}, BRASIL_API, err}
return
}
defer resp.Body.Close()
// resposta
buf, _ := io.ReadAll(resp.Body)
// parse
var dados BrasilAPIResp
if err = json.Unmarshal(buf, &dados); err != nil {
result <- apiResult{Endereco{}, BRASIL_API, err}
return
}
result <- apiResult{dados.toEndereco(), BRASIL_API, nil}
}
// tenta via cep em paralelo
func buscaViaCep(cep string, result chan<- apiResult) {
url := fmt.Sprintf(urlViaCep, cep)
resp, err := http.Get(url)
if err != nil {
result <- apiResult{Endereco{}, VIA_CEP, err}
return
}
defer resp.Body.Close()
buf, _ := io.ReadAll(resp.Body)
var dados ViaCEPResp
if err = json.Unmarshal(buf, &dados); err != nil {
result <- apiResult{Endereco{}, VIA_CEP, err}
return
}
result <- apiResult{dados.toEndereco(), VIA_CEP, nil}
}
func buscaCep(cep string) {
// canais pros resultados
results := make(chan apiResult, 2) // guarda os 2 resultados
done := make(chan bool) // sync
// chama as duas APIs
go buscaBrasilApi(cep, results)
go buscaViaCep(cep, results)
// pega o mais rapido
select {
case r := <-results:
if r.err != nil {
fmt.Printf("erro %v\n", r.err)
return
}
// formata saida
fmt.Printf("\nAPI......: %s\n", r.api)
fmt.Printf("CEP......: %s\n", r.endereco.Cep)
fmt.Printf("Estado...: %s\n", r.endereco.Estado)
fmt.Printf("Cidade...: %s\n", r.endereco.Cidade)
fmt.Printf("Rua......: %s\n", r.endereco.Rua)
fmt.Printf("Bairro...: %s\n\n", r.endereco.Bairro)
// limpa segunda resposta
go func() {
<-results // descarta
done <- true
}()
case <-time.After(1 * time.Second): // timeout
fmt.Println("demorou demais :(")
}
// espera cleanup
select {
case <-done:
case <-time.After(100 * time.Millisecond): // da um tempinho
}
}
func main() {
// flags
cepFlag := flag.String("cep", "", "cep para buscar")
flag.Parse()
if *cepFlag == "" {
fmt.Println("Informe um cep, use -cep")
return
}
buscaCep(*cepFlag)
}