-
Notifications
You must be signed in to change notification settings - Fork 4
/
mimo.go
90 lines (77 loc) · 1.88 KB
/
mimo.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
package godestone
import (
"github.com/gocolly/colly/v2"
"github.com/xivapi/godestone/v2/provider/models"
)
func (s *Scraper) buildMinionCollector(output chan *Minion) *colly.Collector {
c := colly.NewCollector(
colly.UserAgent(s.meta.UserAgentMobile),
colly.IgnoreRobotsTxt(),
colly.Async(),
)
minionSelectors := s.getProfileSelectors().Minion
c.OnHTML(minionSelectors.Minions.Root.Selector, func(e *colly.HTMLElement) {
name := minionSelectors.Minions.Name.ParseThroughChildren(e)[0]
icon := minionSelectors.Minions.Icon.ParseThroughChildren(e)[0]
m, _ := s.dataProvider.Minion(name)
if m == nil {
output <- &Minion{
IconedNamedEntity: &IconedNamedEntity{
NamedEntity: &models.NamedEntity{
ID: 0,
Name: name,
NameEN: "",
NameDE: "",
NameFR: "",
NameJA: "",
},
Icon: icon,
},
}
} else {
output <- &Minion{
IconedNamedEntity: &IconedNamedEntity{
NamedEntity: m,
Icon: icon,
},
}
}
})
return c
}
func (s *Scraper) buildMountCollector(output chan *Mount) *colly.Collector {
c := colly.NewCollector(
colly.UserAgent(s.meta.UserAgentMobile),
colly.IgnoreRobotsTxt(),
colly.Async(),
)
mountSelectors := s.getProfileSelectors().Mount
c.OnHTML(mountSelectors.Mounts.Root.Selector, func(e *colly.HTMLElement) {
name := mountSelectors.Mounts.Name.ParseThroughChildren(e)[0]
icon := mountSelectors.Mounts.Icon.ParseThroughChildren(e)[0]
m, _ := s.dataProvider.Mount(name)
if m == nil {
output <- &Mount{
IconedNamedEntity: &IconedNamedEntity{
NamedEntity: &models.NamedEntity{
ID: 0,
Name: name,
NameEN: "",
NameDE: "",
NameFR: "",
NameJA: "",
},
Icon: icon,
},
}
} else {
output <- &Mount{
IconedNamedEntity: &IconedNamedEntity{
NamedEntity: m,
Icon: icon,
},
}
}
})
return c
}