-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelement.go
312 lines (250 loc) · 5.46 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
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
package hype
import (
"bytes"
"encoding/json"
"fmt"
"path/filepath"
"sort"
"strings"
"sync"
"github.com/gopherguides/hype/atomx"
"golang.org/x/net/html"
"golang.org/x/net/html/atom"
)
var _ HTMLNode = &Element{}
type Element struct {
*Attributes
sync.RWMutex
HTMLNode *html.Node
Nodes Nodes
Parent Node
Filename string // only set when Parser.ParseFile() is used
}
// FileName returns the filename of the element.
// This is only set when Parser.ParseFile() is used.
func (el *Element) FileName() string {
// Note: this function was added to satisfy an interface.
return el.Filename
}
func (el *Element) JSONMap() (map[string]any, error) {
if el == nil {
return nil, ErrIsNil("element")
}
el.RLock()
defer el.RUnlock()
m := map[string]any{
"atom": el.Atom(),
"attributes": map[string]string{},
"filename": el.Filename,
"nodes": Nodes{},
"tag": el.StartTag(),
"type": toType(el),
}
if len(el.Nodes) > 0 {
m["nodes"] = el.Nodes
}
if el.Attributes.Len() > 0 {
m["attributes"] = el.Attributes
}
hn := el.HTMLNode
if hn == nil {
return m, nil
}
hnm := map[string]any{
"data": hn.Data,
"data_atom": hn.DataAtom.String(),
"namespace": hn.Namespace,
"type": toType(hn),
}
switch hn.Type {
case html.ErrorNode:
hnm["node_type"] = "html.ErrorNode"
case html.TextNode:
hnm["node_type"] = "html.TextNode"
case html.DocumentNode:
hnm["node_type"] = "html.DocumentNode"
case html.ElementNode:
hnm["node_type"] = "html.ElementNode"
case html.CommentNode:
hnm["node_type"] = "html.CommentNode"
case html.DoctypeNode:
hnm["node_type"] = "html.DoctypeNode"
case html.RawNode:
hnm["node_type"] = "html.RawNode"
}
if len(hn.Attr) > 0 {
hnm["attributes"] = hn.Attr
}
m["html_node"] = hnm
return m, nil
}
func (el *Element) MarshalJSON() ([]byte, error) {
if el == nil {
return nil, ErrIsNil("element")
}
m, err := el.JSONMap()
if err != nil {
return nil, err
}
return json.MarshalIndent(m, "", " ")
}
func (el *Element) Format(f fmt.State, verb rune) {
if el == nil {
return
}
switch verb {
case 'v':
st := el.StartTag()
if len(st) == 0 {
return
}
if len(el.Filename) > 0 {
fmt.Fprintf(f, "file://%s: ", el.Filename)
}
fmt.Fprintf(f, "%s", st)
default:
fmt.Fprintf(f, "%s", el.String())
}
}
func (el *Element) Atom() Atom {
if el.HTMLNode == nil {
return Atom("")
}
return Atom(el.HTMLNode.Data)
}
func (el *Element) Children() Nodes {
el.RLock()
defer el.RUnlock()
return el.Nodes
}
func (el *Element) HTML() *html.Node {
return el.HTMLNode
}
// StartTag returns the start tag for the element.
// For example, for an element with an Atom of "div", the start tag would be "<div>".
func (el *Element) StartTag() string {
if el == nil {
return ""
}
a := el.Atom()
if len(a) == 0 {
return ""
}
if el.Attributes == nil || el.Attributes.Len() == 0 {
return fmt.Sprintf("<%s>", a)
}
bb := &bytes.Buffer{}
var lines []string
el.Attributes.Range(func(k string, v string) bool {
lines = append(lines, fmt.Sprintf("%s=%q", k, v))
return true
})
sort.Strings(lines)
fmt.Fprintf(bb, "<%s %s>", a, strings.Join(lines, " "))
return bb.String()
}
// EndTag returns the end tag for the element.
// For example, for an element with an Atom of "div", the end tag would be "</div>".
func (el *Element) EndTag() string {
a := el.Atom()
if len(a) == 0 {
return ""
}
return fmt.Sprintf("</%s>", a)
}
// String returns StartTag() + Children().String() + EndTag()
func (el *Element) String() string {
if el == nil {
return ""
}
s := el.StartTag()
s += el.Children().String()
s += el.EndTag()
return s
}
func (el *Element) Attrs() *Attributes {
if el == nil {
return &Attributes{}
}
return el.Attributes
}
func (el *Element) ValidAttr(k string) (string, error) {
if el == nil {
return "", ErrIsNil("element")
}
v, ok := el.Get(k)
if !ok {
return "", el.WrapErr(ErrAttrNotFound(k))
}
if len(v) == 0 {
return "", el.WrapErr(ErrAttrEmpty(k))
}
return v, nil
}
func (el *Element) WrapErr(err error) error {
return WrapNodeErr(el, err)
}
func NewEl[T ~string](at T, parent Node) *Element {
var fn string
if e, ok := parent.(*Element); ok {
fn = e.Filename
}
return &Element{
Attributes: &Attributes{},
HTMLNode: &html.Node{
Type: html.ElementNode,
Data: string(at),
DataAtom: atom.Lookup([]byte(string(at))),
},
Parent: parent,
Filename: fn,
}
}
func (el *Element) updateFileName(dir string) {
if el == nil {
return
}
if strings.HasPrefix(el.Filename, dir) {
return
}
el.Lock()
defer el.Unlock()
el.Filename = filepath.Join(dir, el.Filename)
}
func (el *Element) Set(k string, v string) error {
err := el.Attributes.Set(k, v)
if err != nil {
return el.WrapErr(err)
}
return nil
}
func (el *Element) MD() string {
if el == nil {
return ""
}
switch el.Atom() {
case atomx.Strong, atomx.B:
return fmt.Sprintf("**%s**", el.Children().MD())
case atomx.Em, atomx.I:
return fmt.Sprintf("_%s_", el.Children().MD())
case atomx.Pre:
return el.Children().MD()
case atomx.Hr:
return "\n\n---\n\n"
case atomx.Br:
return "\n\n"
case atomx.Blockquote:
b := el.Children().MD()
b = strings.TrimSpace(b)
return fmt.Sprintf("> %s", b)
case atomx.Details:
return el.String()
default:
// fmt.Printf("TODO: Element.MD(): %q\n", el.Atom())
}
bb := &bytes.Buffer{}
bb.WriteString(el.StartTag())
bb.WriteString(el.Children().MD())
bb.WriteString(el.EndTag())
return bb.String()
}