forked from crgimenes/grupo-estudos-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
godolar.go
57 lines (48 loc) · 1.2 KB
/
godolar.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
package main
import (
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"regexp"
)
/*inspirado por http://funcoeszz.net/man.html#zzdolar*/
var errTratamento = errors.New("Não foi possivel encontrar valores")
//BuscaRequest Busca pagina BC
func BuscaRequest() (contents []byte, err error) {
response, err := http.Get("https://ptax.bcb.gov.br/ptax_internet/consultarUltimaCotacaoDolar.do")
if err != nil {
return
}
defer response.Body.Close()
contents, err = ioutil.ReadAll(response.Body)
return
}
//TrataRequest Recebe o conteudo da pagina e retorna os valores de compra e venda
func TrataRequest(contents []byte) (compra, venda string, err error) {
re := regexp.MustCompile("[1-9],[0-9][0-9][0-9][0-9]")
valores := re.FindAll(contents, -1)
if len(valores) == 2 {
compra = string(valores[0][:])
venda = string(valores[1][:])
} else {
err = errTratamento
}
return
}
func main() {
contents, err := BuscaRequest()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
compra, venda, err := TrataRequest(contents)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println(" Preço do dólar Banco Central.")
fmt.Println(" R$:", compra, "para Compra.")
fmt.Println(" R$:", venda, "para Venda.")
}