This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagazine_luiza.go
executable file
·62 lines (55 loc) · 1.66 KB
/
magazine_luiza.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
package radardaoferta
import (
"errors"
"fmt"
"regexp"
)
type MagazineLuizaProduto struct {
Product struct {
ID string `json:"id"`
Descricao string `json:"complete_description"`
Preco float32 `json:"discount_price"`
Imagens []string `json:"images"`
Nome string `json:"title"`
}
Link string
}
func MagazineLuizaParse(url string) (ProdutoGenerico, error) {
id, err := MagazineLuizaGetID(url)
if err != nil {
return ProdutoGenerico{}, err
}
produtoMagazine := MagazineLuizaGetProduto(id)
produtoMagazine.Link = url
return MagazineLuizaDePara(produtoMagazine), nil
}
func MagazineLuizaGetID(url string) (string, error) {
r, _ := regexp.Compile("p\\/(\\d+)\\/")
idProduto := r.FindStringSubmatch(url)
if len(idProduto) == 0 {
return "", errors.New("nao identificou id da magazine luiza")
}
return idProduto[1], nil
}
func MagazineLuizaGetProduto(id string) MagazineLuizaProduto {
//https://m.magazineluiza.com.br/catalog/products/2160329.json
produtoMagazine := MagazineLuizaProduto{}
Request(fmt.Sprintf("https://m.magazineluiza.com.br/catalog/products/%s.json", id), &produtoMagazine)
return produtoMagazine
}
func MagazineLuizaDePara(m MagazineLuizaProduto) ProdutoGenerico {
p := ProdutoGenerico{}
p.IDProduto = m.Product.ID
p.Created = TimeNowIso()
p.Valor = m.Product.Preco
p.Link = m.Link
p.Loja = "Magazine Luiza"
p.Nome = m.Product.Nome
if len(m.Product.Imagens) >= 1 {
p.Imagens = []string{mountImagem(m.Product.Imagens[0])}
}
return p
}
func mountImagem(idImagem string) string {
return fmt.Sprintf("http://c.mlcdn.com.br/470x352/%s", idImagem)
}