-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct.go
52 lines (40 loc) · 1.08 KB
/
product.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
package main
import (
"github.com/anaskhan96/soup"
log "github.com/sirupsen/logrus"
)
// A Product represents a product on amazon
type Product struct {
Name string
Link string
Image string
Price string
Reviews []Review
}
// GetReviews gets the product's top reviews from amazon product page
func (product *Product) GetReviews() {
// now := time.Now().UTC()
resp, err := soup.Get(product.Link)
// fmt.Println("Fetching time: ", time.Since(now))
// now = time.Now().UTC()
if err != nil {
log.Error("Encountered error: {", err, "} while fetching reviews for: ", product.Name)
return
}
doc := soup.HTMLParse(resp)
reviewsContainer := doc.Find("div", "class", "reviews-content")
if reviewsContainer.Error != nil {
return
}
rawReviews := reviewsContainer.FindAll("div", "class", "review")
reviews := []Review{}
for _, rawReview := range rawReviews {
review := Review{}
err := review.ParseReviews(rawReview)
if err == nil {
reviews = append(reviews, review)
}
}
product.Reviews = reviews
// fmt.Println("Review parsing time: ", time.Since(now))
}