-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapteka.go
520 lines (453 loc) · 15.5 KB
/
apteka.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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
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
}
}
}
type MySession struct {
*mgo.Session
}
type Product struct {
Name string
Price string
Navi string
}
type State struct {
Count int
mux sync.Mutex
}
// Extract product spawn goroutine
func (session *MySession) ExtractProd(url string, state *State) {
var f2 func(*html.Node, *MySession)
var f3 func(*html.Node, *MySession)
var f4 func(*html.Node, *MySession)
var pr *Product
var Navi []string
coll := session.DB("parser").C(`APTEKA_products_fresh`)
f2 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "div" {
match := false
name, price := "", ""
for _, a := range node.Attr {
if a.Key == "data-product-name" {
name = a.Val
match = true
}
if a.Key == "data-product-price" {
price = a.Val
match = true
}
}
if match {
state.mux.Lock()
Navi = Navi[:len(Navi)-1]
pr = &Product{Name: name, Price: price, Navi: strings.Join(Navi, ";")}
dd, err := coll.Find(bson.M{"name": pr.Name}).Count()
if err != nil {
syslog.Critf("pudra find price double: %s", err)
}
if dd < 1 {
// status = 0 -> pending
err := coll.Insert(bson.M{"Name": name, "Price": price, "Navi": strings.Join(Navi, ";")})
if err != nil {
syslog.Critf("pudra error insert: %s", err)
}
}
match = false
state.Count = state.Count + 1
fmt.Println("PRODUCT", pr)
Navi = []string{}
state.mux.Unlock()
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f2(c, session)
}
}
// Breadcrumbs
f3 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "div" {
for _, a := range node.Attr {
if a.Val == "breadcrumbs" {
f4(node, session)
fmt.Println("NAVI", Navi)
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f3(c, session)
}
}
// Breadcrumbs
f4 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "span" {
//for _, a := range node.Attr {
//if a.Key == "itemprop" && a.Val == "name" {
content := extractContext(renderNode(node))
fmt.Println("BREADCRUMB", content)
Navi = append(Navi, content)
//}
//}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f4(c, session)
}
}
url = "https://apteka.ru" + url
fmt.Println("ExtractProd received:", 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)
}
f3(doc, session)
f2(doc, session)
}
// Extract product listener
func (session *MySession) ExtractProdListener(prod_ch chan string) {
var f2 func(*html.Node, *MySession)
var f3 func(*html.Node, *MySession)
var f4 func(*html.Node, *MySession)
var pr *Product
var Navi []string
f2 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "div" {
match := false
name, price := "", ""
for _, a := range node.Attr {
if a.Key == "data-product-name" {
name = a.Val
match = true
}
if a.Key == "data-product-price" {
price = a.Val
match = true
}
}
if match {
pr = &Product{Name: name, Price: price}
fmt.Println("MATCH", pr)
match = false
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f2(c, session)
}
}
// Breadcrumbs
f3 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "div" {
for _, a := range node.Attr {
if a.Val == "breadcrumbs" {
f4(node, session)
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f3(c, session)
}
}
// Breadcrumbs
f4 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "span" {
for _, a := range node.Attr {
if a.Key == "itemprop" && a.Val == "name" {
content := extractContext(renderNode(node))
fmt.Println("BREADCRUMB", content)
Navi = append(Navi, content)
}
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f4(c, session)
}
}
for {
select {
case msg := <-prod_ch:
url := "https://apteka.ru" + msg
fmt.Println("ExtractProd received:", 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)
}
f2(doc, session)
default:
//fmt.Println("ExtractPage no msg rcvd")
}
}
}
// Page extract goroutine
func (session *MySession) ExtractPage(ch chan string, prod_ch chan string, state *State) {
var f2 func(*html.Node, *MySession)
f2 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "a" {
match := false
href := ""
for _, a := range node.Attr {
if a.Key == "href" {
href = a.Val
}
if a.Key == "itemprop" && a.Val == "name" {
match = true
}
}
if match {
//prod_ch <- href
go session.ExtractProd(href, state)
match = false
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f2(c, session)
}
}
for {
select {
case msg := <-ch:
fmt.Println("ExtractPage received:", "https://apteka.ru" + msg)
request := gorequest.New()
resp, body, errs := request.Get("https://apteka.ru" + msg).
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)
}
f2(doc, session)
default:
//fmt.Println("ExtractPage no msg rcvd")
}
}
}
func (session *MySession) Extract(url string, ch chan string, prod_ch chan string) {
var f2 func(*html.Node, *MySession)
var f3 func(*html.Node, *MySession)
var f4 func(*html.Node, *MySession)
//var crumbs []string
//coll := session.DB("parser").C(`VITA_products`)
var Name string
//var Navi string
var ListingPrice string
var OldPrice string
//var Url string
var crumbs []string
f2 = func(node *html.Node, session *MySession) {
if node.Type == html.ElementNode && node.Data == "a" {
match := false
href := ""
for _, a := range node.Attr {
if a.Key == "href" {
href = a.Val
}
if a.Key == "data-page" {
match = true
}
}
if match {
fmt.Println("found", href)
ch <- href
match = false
}
}
for c := node.FirstChild; c != nil; c = c.NextSibling {
f2(c, session)
}
}
f3 = func(node *html.Node, session *MySession) {
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, " ")
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, " ")
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 *MySession) {
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)
}
f2(doc, session)
}
func main() {
//var wg sync.WaitGroup
var pages [5]string
state := &State{Count: 0, mux: sync.Mutex{}}
pages[0] = "https://apteka.ru/category/derma_cosmetics/body/"
pages[1] = "https://apteka.ru/category/derma_cosmetics/head/"
pages[2] = "https://apteka.ru/category/derma_cosmetics/baby/"
pages[3] = "https://apteka.ru/category/derma_cosmetics/face/"
pages[4] = "https://apteka.ru/category/derma_cosmetics/sunscreen/"
channel := make(chan string)
prod_channel := make(chan string)
// Mongo
msession, glob_err := mgo.Dial("mongodb://apidev:apidev@localhost:27017/parser")
defer msession.Close()
session := &MySession{msession}
if glob_err != nil {
syslog.Critf("Error: %s", glob_err)
}
go session.ExtractPage(channel, prod_channel, state)
//go session.ExtractProdListener(prod_channel)
i := 1
for _, v := range pages {
session.Extract(v, channel, prod_channel)
i++
}
fmt.Println("Done")
}