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
|
package main
import (
"regexp"
"strings"
// "github.com/PuerkitoBio/goquery"
"github.com/gocolly/colly"
)
func ScrapeRumundCo(shop Shop) []Angebot {
Shop_url := "https://www.rumundco.de/navi.php?q=4&kf=29&kk-suesse-von=0&kk-suesse-bis=100&kk-milde-von=0&kk-milde-bis=100&kk-wuerze-von=0&kk-wuerze-bis=100&kk-frucht-von=0&kk-frucht-bis=100&kk-torf-von=0&kk-torf-bis=100&hf=0&af=90&Sortierung=11&a=350"
Whiskys := []Angebot{}
c := colly.NewCollector(
colly.AllowedDomains("rumundco.de"),
colly.AllowedDomains("www.rumundco.de"),
)
c.OnHTML(".product-teaser", func(e *colly.HTMLElement) {
if e.Request.URL.String() != Shop_url {
return
}
W := Angebot{}
whisky_name := strings.TrimPrefix(e.ChildAttr("img", "alt"), "Restposten: ")
whisky_url := "https://www.rumundco.de/" + e.ChildAttr("a", "href")
matched, err := regexp.MatchString("verfügbar", e.ChildText(".delivery-status"))
if err != nil {
Fatal(err, "Rum & Co: Verfügbar regex failed")
}
if !matched {
return
}
W.Name = whisky_name
W.Url = whisky_url
r_abv, err := regexp.Compile("[0-9]+([,.][0-9])?( )*(%|([vV]ol))")
if err != nil {
Fatal(err, "Rum & Co: Abv regex failed")
}
abv_noisy := r_abv.FindString(whisky_name)
e.ForEach(".price_wrapper", func(i int, e *colly.HTMLElement) {
regular_price := e.ChildText("del.value")
if "" == regular_price {
PrintlnOffer(W, "Rum & Co: No regular price found")
return
}
W.Original_price, err = convert_price(regular_price)
if err != nil {
Fatal(err, "Rum & Co: Original price: Convert price failed")
}
W.Discounted_price, err = convert_price(e.ChildText(".price-value"))
if err != nil {
Fatal(err, "Rum & Co: Discounted price: Convert price failed")
}
e.ForEach(".base_price", func(i int, e *colly.HTMLElement) {
price_per_litre_noisy := e.ChildText(".value")
W.Base_price, err = sanitize_base_price(price_per_litre_noisy)
if err != nil {
Fatal(err, "Rum & Co: Base price: Sanitizing base price failed")
}
})
})
// Rum & Co uses pagespeed
image_url_noisy := e.ChildAttr("img", "src")
if strings.Contains(image_url_noisy, "pagespeed") {
r_pagespeed, err := regexp.Compile(`jpg(\.pagespeed.+)$`)
if err != nil {
Fatal(err, "Rum & Co: Pagespeed regexp failed")
}
image_url_noisy_slice := r_pagespeed.FindStringSubmatch(image_url_noisy)
if len(image_url_noisy_slice) < 2 {
PrintlnOffer(W, "Rum & Co: (Pagespeed) Image URL not found")
return
}
image_url_noisy = strings.Replace(image_url_noisy, image_url_noisy_slice[1], "", 1)
}
W.Image_url = "https://www.rumundco.de/" + image_url_noisy
e.Request.Visit(W.Url)
W.Volume = get_volume(e)
if W.Volume == 0 {
DebugOffer(W, "Rum & Co: Volume is zero")
return
}
if "" == abv_noisy {
W.Abv = get_abv(e)
} else {
W.Abv, err = extract_abv(abv_noisy)
if err != nil {
Fatal(err, "Rum & Co: Base price: Extracting ABV failed")
}
}
if W.Abv == 0 {
DebugOffer(W, "Rum & Co: Abv is zero")
return
}
W.Shop = shop.Id
W.Spirit_type = "Whisky"
W.Website = e.Request.Ctx.Get("website")
Whiskys = append(Whiskys, W)
})
c.OnHTML("#table-collapse .product-attributes table", func(e *colly.HTMLElement) {
e.ForEach("tr", func(i int, e *colly.HTMLElement) {
text_noisy := e.ChildText("th")
//log.Println("Visiting (" + e.Request.URL.String() + "). Found: " + text_noisy + " END")
if strings.Contains(text_noisy, "Genauer Inhalt:") {
//log.Println("Visiting (" + e.Request.URL.String() + "). Found (V): " + e.ChildText("td") + " END")
e.Request.Ctx.Put("volume", e.ChildText("td"))
} else if strings.Contains(text_noisy, "Alkoholgehalt in %:") {
e.Request.Ctx.Put("abv", e.ChildText("a"))
}
})
e.Request.Ctx.Put("website", string(e.Response.Body))
})
c.Visit(Shop_url)
return Whiskys
}
|