This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topdeck.go
124 lines (111 loc) · 2.63 KB
/
topdeck.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
package mtgbulk
import (
"encoding/json"
"fmt"
"regexp"
"strconv"
"strings"
"github.com/gocolly/colly"
)
var re = regexp.MustCompile("JSON\\.parse\\(\\\"(.*)\\\"\\)\\,")
type topdeckCard struct {
EngName string `json:"rus_name"`
RusName string `json:"eng_name"`
URL string `json:"url"`
Seller struct {
Name string `json:"name"`
} `json:"seller"`
Qty int `json:"qty"`
Cost int `json:"cost"`
Source string `json:"source"`
}
func searchTopDeck(cardname string) CardResult {
cardname = strings.ToLower(cardname)
result := newCardResult()
addr := topDeckSearchURL(cardname)
c := colly.NewCollector()
c.OnHTML("script", func(e *colly.HTMLElement) {
matches := re.FindAllSubmatch([]byte(e.Text), -1)
if len(matches) == 0 {
return
}
text := matches[0][1]
pos := 0
finalTxt := ""
for pos < len(text) {
if text[pos] == '\\' && text[pos+1] == 'u' {
s := fmt.Sprintf("'%s'", text[pos:pos+6])
c, err := strconv.Unquote(s)
if err != nil {
logger.Errorw("Unquote failed",
"err", err)
return
}
finalTxt = finalTxt + c
pos += 6
} else {
finalTxt = finalTxt + string(text[pos])
pos++
}
}
finalTxt = strings.ReplaceAll(finalTxt, "\\\"", "")
finalTxt = strings.ReplaceAll(finalTxt, "\\", "")
//fmt.Printf("RESULT %s\n", finalTxt)
dec := json.NewDecoder(strings.NewReader(finalTxt))
_, err := dec.Token()
if err != nil {
logger.Errorw("get opening failed",
"err", err)
return
}
for dec.More() {
var c topdeckCard
err := dec.Decode(&c)
if c.Source != "topdeck" {
// some other shop like spellmarket or mtgsale
continue
}
if err != nil {
logger.Errorw("decode failed",
"err", err)
continue
}
if strings.ToLower(c.RusName) != cardname && strings.ToLower(c.EngName) != cardname {
continue
}
logger.Debugw("card found",
"cardname", cardname,
"ru_name", c.RusName,
"en_name", c.EngName,
"cost", c.Cost,
"qty", c.Qty)
result.Available = true
result.Prices = append(result.Prices, CardPrice{
Price: float32(c.Cost),
Foil: false,
Currency: RUR,
Quantity: c.Qty,
Platform: TopDeck,
Trader: c.Seller.Name,
URL: c.URL,
})
}
_, err = dec.Token()
if err != nil {
logger.Errorw("read closing failed",
"err", err)
return
}
})
err := c.Visit(addr)
if err != nil {
logger.Errorw("Unable to scrape",
"url", addr,
"err", err)
}
return result
}
func topDeckSearchURL(cardname string) string {
cardname = strings.ReplaceAll(cardname, " ", "+")
return fmt.Sprintf("https://topdeck.ru/apps/toptrade/singles/search?q=%s", cardname)
}