-
Notifications
You must be signed in to change notification settings - Fork 0
/
element.go
216 lines (171 loc) · 5.02 KB
/
element.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
package webscraper
import (
"golang.org/x/net/html"
"strings"
"sort"
"io"
)
type Element struct {
node *html.Node
}
// Takes io.Reader parameter that contains html, parses it and returns
// first-found element type that is html.ElementNode
func GetRootElement(r io.Reader) (Element, error) {
root, err := html.Parse(r)
if err != nil {
return Element{}, err
}
for root.Type != html.ElementNode {
switch root.Type {
case html.DocumentNode:
root = root.FirstChild
case html.CommentNode:
root = root.NextSibling
case html.DoctypeNode:
root = root.NextSibling
}
}
return Element{root}, nil
}
func (e Element) GetText() string {
var result strings.Builder
if e.node == nil {
return ""
}
temp := e.node.FirstChild
for temp != nil {
if temp.Type == html.TextNode {
result.WriteString(temp.Data)
}
temp = temp.NextSibling
}
return result.String()
}
// Returns pseudo-element with tag and attrs as element's tag name and
// attributes respectively. It is used for comparison with the real html
// elements.
func createPseudoEl(tag string, attrs []string) Element {
if tag == "" {
return Element{}
}
validated := validateAttrs(attrs)
el := Element{
&html.Node{
Type: html.ElementNode,
Data: tag,
Attr: validated,
},
}
return el
}
// Makes sure the len(attrs) == even number and there is no recurrence among
// even index (that are supposed to be attribute names)
func validateAttrs(attrs []string) []html.Attribute {
var newAttrs []html.Attribute
if len(attrs) < 1 {
return newAttrs
}
if len(attrs) % 2 != 0 {
attrs = attrs[:len(attrs)-1]
}
for i:=0; i < len(attrs); i++ {
if i % 2 != 0 {
continue
}
count := 0
// iterates even indexes from the attrs[0] till attrs[i]
for j:=0; j < i; j++ {
if j % 2 != 0 {
continue
}
if attrs[i] == attrs[j] {
count += 1
}
}
if count < 1 {
newAttrs = append(newAttrs, html.Attribute{Key: attrs[i], Val: attrs[i+1]})
}
}
return newAttrs
}
// Returns true if two elements have the same tag and attributes.
// The real element always has to be receiver, and pseudo-element the parameter
func (e Element) compareTo(e2 Element) bool {
if e != (Element{}) && e2 == (Element{}) ||
e == (Element{}) && e2 != (Element{}) {
return false
}
if e == (Element{}) && e2 == (Element{}) {
return true
}
if e.node.Type != html.ElementNode || e2.node.Type != html.ElementNode {
return false
}
if strings.ToLower(e.node.Data) != strings.ToLower(e2.node.Data) {
return false
}
return compareAttrs(e.node.Attr, e2.node.Attr)
}
// The order matters! The first parameter has to be part of real html element
func compareAttrs(attrs []html.Attribute, attrs2 []html.Attribute) bool {
if len(attrs2) > len(attrs) {
return false
}
if len(attrs) < 1 && len(attrs2) > 0 {
return false
}
count := 0
for i:=0; i < len(attrs2); i++ {
for j:=0; j < len(attrs); j++ {
if strings.ToLower(attrs2[i].Key) == "class" {
if strings.ToLower(attrs[j].Key) != "class" {
continue
}
res := containsClass(attrs[j].Val, attrs2[i].Val)
if res == true {
count += 1
break
}
continue
}
if strings.ToLower(attrs2[i].Key) == strings.ToLower(attrs[j].Key) &&
strings.ToLower(attrs2[i].Val) == strings.ToLower(attrs[j].Val) {
count += 1
break
}
}
}
if count == len(attrs2) {
return true
}
return false
}
// The first parameter has to be from the real html Element (not pseudo one).
// Immediately returns false if len(2nd parameter) > len(1st parameter).
func containsClass(parsedClasses, newClasses string) bool {
aClasses := strings.Split(parsedClasses, " ")
bClasses := strings.Split(newClasses, " ")
sort.Strings(aClasses)
sort.Strings(bClasses)
if hasRepetition(bClasses) > 0 { return false }
if len(aClasses) < len(bClasses) {
return false
}
count := 0
for _, str := range aClasses {
for _, str2 := range bClasses {
if strings.ToLower(str) == strings.ToLower(str2) {
count += 1
}
}
}
if len(aClasses) == len(bClasses) && count == len(aClasses) {
return true
}
// if len(aClasses) > len(bClasses)
if n := hasRepetition(aClasses); n > 0 && count == len(bClasses) + n {
return true
}
if count == len(bClasses) { return true }
return false
}