-
Notifications
You must be signed in to change notification settings - Fork 0
/
vita.go
326 lines (284 loc) · 10.3 KB
/
vita.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
package main
import (
//"os"
"io"
"fmt"
"time"
"sync"
"bytes"
"strconv"
"strings"
"net/http"
//"encoding/json"
//"io/ioutil"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"golang.org/x/net/html"
//"github.com/go-redis/redis"
//"github.com/json-iterator/go"
"github.com/blackjack/syslog"
"github.com/parnurzeal/gorequest"
)
// A time prefix before collection name
func MakeTimePrefix(coll string) string {
t := time.Now()
ti := t.Format("02-01-2006")
if coll == "" {
return ti
}
fin := ti + "_" + coll
return fin
}
// Render node
func renderNode(node *html.Node) string {
var buf bytes.Buffer
w := io.Writer(&buf)
err := html.Render(w, node)
if err != nil {
syslog.Critf("Error: %s", err)
}
return buf.String()
}
// Get tag context
// TODO: prevent endless loop
func extractContext(s string) string {
z := html.NewTokenizer(strings.NewReader(s))
for {
tt := z.Next()
switch tt {
case html.ErrorToken:
syslog.Critf("auchan extractContext() error: %s", z.Err())
syslog.Critf("String: %s", s)
return ""
case html.TextToken:
text := string(z.Text())
return text
}
}
}
func Extract(glob_session *mgo.Session, url string, wg *sync.WaitGroup, ch chan int) {
var f1 func(*html.Node, *mgo.Session)
var f2 func(*html.Node, *mgo.Session)
var f3 func(*html.Node, *mgo.Session)
var f4 func(*html.Node, *mgo.Session)
//var crumbs []string
coll := glob_session.DB("parser").C(`VITA_products_fresh`)
var Name string
var Navi string
var ListingPrice string
var OldPrice string
var Url string
var crumbs []string
f1 = func(node *html.Node, session *mgo.Session) {
if node.Type == html.ElementNode && node.Data == "div" {
for _, a := range node.Attr {
if a.Val == "product__mobRight" {
fmt.Println("FOUND")
f2(node, session)
Navi = strings.Join(crumbs, ";")
dd, err := coll.Find(bson.M{"name": Name}).Count()
if err != nil {
syslog.Critf("pudra find price double: %s", err)
}
if dd < 1 {
// status = 0 -> pending
err := coll.Insert(bson.M{"navi": Navi, "name": Name, "oldprice": OldPrice, "listingprice": ListingPrice, "url": Url})
if err != nil {
syslog.Critf("pudra error insert: %s", err)
}
}
Name = ""
Navi = ""
OldPrice = ""
ListingPrice = ""
crumbs = []string{}
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f1(c, session)
}
}
f2 = func(node *html.Node, session *mgo.Session) {
if node.Type == html.ElementNode && node.Data == "a" {
for _, a := range node.Attr {
if a.Key == "href" {
contents := renderNode(node)
contents = extractContext(contents)
contents = strings.Replace(contents, "\n", "", -1)
contents = strings.Replace(contents, "\r", "", -1)
contents = strings.Replace(contents, "\t", "", -1)
contents = strings.TrimLeft(contents, " ")
contents = strings.TrimRight(contents, " ")
if !strings.Contains(contents, "В корзину") {
//fmt.Println("NAME", contents)
fmt.Println("PRODUCT URL", a.Val)
Url = a.Val
request := gorequest.New()
resp, body, errs := request.Get("https://vitaexpress.ru"+a.Val).
Retry(3, 5 * time.Second, http.StatusBadRequest, http.StatusInternalServerError).
End()
_ = resp
if errs != nil {
syslog.Critf("vita request.Get(BrandUrl) error: %s", errs)
}
doc, err := html.Parse(strings.NewReader(string(body)))
if err != nil {
syslog.Critf("vita html.Parse error: %s", errs)
}
f3(doc, session)
}
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f2(c, session)
}
}
f3 = func(node *html.Node, session *mgo.Session) {
if node.Type == html.ElementNode && node.Data == "h1" {
for _, a := range node.Attr {
if a.Val == "product-title" {
contents := renderNode(node)
contents = extractContext(contents)
contents = strings.Replace(contents, "\n", "", -1)
contents = strings.Replace(contents, "\r", "", -1)
contents = strings.Replace(contents, "\t", "", -1)
contents = strings.TrimLeft(contents, " ")
contents = strings.TrimRight(contents, " ")
Name = contents
fmt.Println("TITLE", contents)
}
}
}
if node.Type == html.ElementNode && node.Data == "div" {
for _, a := range node.Attr {
if a.Val == "product-price__cur" {
contents := renderNode(node)
contents = extractContext(contents)
contents = strings.Replace(contents, "\n", "", -1)
contents = strings.Replace(contents, "\r", "", -1)
contents = strings.Replace(contents, "\t", "", -1)
contents = strings.Replace(contents, `<span class="icon-rub"></span>`, "", -1)
contents = strings.TrimLeft(contents, " ")
contents = strings.TrimRight(contents, " ")
ListingPrice = unShufflePrice(contents)
fmt.Println("LISTING PRICE", ListingPrice)
}
}
}
if node.Type == html.ElementNode && node.Data == "div" {
for _, a := range node.Attr {
if a.Val == "product-price__old" {
contents := renderNode(node)
contents = extractContext(contents)
contents = strings.Replace(contents, "\n", "", -1)
contents = strings.Replace(contents, "\r", "", -1)
contents = strings.Replace(contents, "\t", "", -1)
contents = strings.Replace(contents, `<span class="icon-rub"></span>`, "", -1)
contents = strings.TrimLeft(contents, " ")
contents = strings.TrimRight(contents, " ")
OldPrice = unShufflePrice(contents)
fmt.Println("PRICE OLD", OldPrice)
}
}
}
if node.Type == html.ElementNode && node.Data == "ol" {
for _, a := range node.Attr {
if a.Val == "breadcrumb hidden-xs" {
f4(node, session)
fmt.Println(crumbs)
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f3(c, session)
}
}
f4 = func(node *html.Node, session *mgo.Session) {
if node.Type == html.ElementNode && node.Data == "a" {
match := false
href := ""
_ = href
for _, a := range node.Attr {
if a.Key == "href" {
href = a.Val
match = true
}
}
if match {
contents := renderNode(node)
contents = extractContext(contents)
contents = strings.Replace(contents, "\n", "", -1)
contents = strings.Replace(contents, "\r", "", -1)
contents = strings.Replace(contents, "\t", "", -1)
//fmt.Println("CRUMB", contents)
crumbs = append(crumbs, contents)
match = false
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f4(c, session)
}
}
fmt.Println("REQUEST URL:", url)
request := gorequest.New()
resp, body, errs := request.Get(url).
Retry(3, 5 * time.Second, http.StatusBadRequest, http.StatusInternalServerError).
End()
_ = resp
if errs != nil {
syslog.Critf("auchan request.Get(BrandUrl) error: %s", errs)
}
doc, err := html.Parse(strings.NewReader(string(body)))
if err != nil {
syslog.Critf("auchan html.Parse error: %s", errs)
}
f1(doc, glob_session)
}
func unShufflePrice(price string) string {
var ns []rune
for _, r := range price {
switch r {
case '1':
ns = append(ns, '2')
case '2':
ns = append(ns, '4')
case '3':
ns = append(ns, '7')
case '4':
ns = append(ns, '3')
case '5':
ns = append(ns, '6')
case '6':
ns = append(ns, '5')
case '7':
ns = append(ns, '1')
case '8':
ns = append(ns, '9')
case '9':
ns = append(ns, '8')
case '0':
ns = append(ns, '0')
}
}
return string(ns)
}
func main() {
var wg sync.WaitGroup
channel := make(chan int)
// Mongo
session, glob_err := mgo.Dial("mongodb://apidev:apidev@localhost:27017/parser")
defer session.Close()
if glob_err != nil {
syslog.Critf("Error: %s", glob_err)
}
//wg.Add(1)
i := 1
for i < 50 {
Extract(session, "https://vitaexpress.ru/ajax/filter.php?sort=SORT&direction=DESC&filters=2446%3Don%262458%3Don%262488%3Don%262507%3Don%262526%3Don%262551%3Don%262567%3Don%262579%3Don%262586%3Don&PAGEN_1="+strconv.Itoa(i), &wg, channel)
i++
}
//wg.Wait()
fmt.Println("Done")
}