-
Notifications
You must be signed in to change notification settings - Fork 0
/
viacep-consultacep.go
90 lines (81 loc) · 1.82 KB
/
viacep-consultacep.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
/**
* ViaCEP JSON GO client
*/
package main
import (
"context"
"encoding/json"
"errors"
"fmt"
"github.com/aws/aws-lambda-go/lambda"
"io/ioutil"
"net/http"
"time"
)
const (
ViaCepUrl = "https://viacep.com.br/ws/%s/json"
ConsultaIndisponivel = "CONSULTA_INDISPONIVEL"
CepNaoEncontrado = "CEP_NAO_ENCONTRADO"
ErroInesperado = "ERRO_INESPERADO"
)
type Cep 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"`
Unidade string `json:"unidade"`
Ibge string `json:"ibge"`
Erro bool `json:"erro"`
}
func logInfo(message string){
fmt.Printf("[INFO] %s %s \n", time.Now().Format("2006-01-02 15:04:05"), message)
}
func logError(err error){
fmt.Printf("[ERROR] %s %s \n", time.Now().Format("2006-01-02 15:04:05"), err.Error())
}
func parse(response * http.Response)(resultado Cep, err error){
body, err := ioutil.ReadAll(response.Body)
if err != nil {
logError(err)
err = errors.New(ErroInesperado)
return
}
err = json.Unmarshal(body, &resultado)
if err != nil {
logError(err)
err = errors.New(ErroInesperado)
return
}
if resultado.Erro {
err = errors.New(CepNaoEncontrado)
logError(err)
return
}
return
}
func Consultar(cep string)(resultado Cep, err error){
url := fmt.Sprintf(ViaCepUrl, cep)
logInfo(fmt.Sprintf("Pesquisando %s", url))
response, err := http.Get(url)
if err != nil {
logError(err)
err = errors.New(ConsultaIndisponivel)
return
}
defer response.Body.Close()
if response.StatusCode != 200{
err = errors.New(CepNaoEncontrado)
logError(err)
return
}
resultado, err = parse(response)
return
}
func HandleRequest(ctx context.Context, cep Cep) (Cep, error) {
return Consultar(cep.Cep)
}
func main() {
lambda.Start(HandleRequest)
}