1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-12-23 22:11:10 +02:00
Files
imgproxy/xmlparser/document.go
2025-11-21 21:31:12 +03:00

51 lines
1.0 KiB
Go

package xmlparser
import (
"bufio"
"io"
)
type Document struct {
Node
}
func NewDocument(r io.Reader) (*Document, error) {
doc := &Document{
Node: Node{
// Attributes for document are always empty, but they are exposed,
// so we need to initialize them to avoid nil pointer dereference.
Attrs: NewAttributes(),
},
}
if err := doc.readFrom(r); err != nil {
return nil, err
}
return doc, nil
}
func (doc *Document) WriteTo(w io.Writer) (int64, error) {
wc := writeCounter{Writer: w}
bw := bufio.NewWriter(&wc)
if err := doc.writeChildrenTo(bw); err != nil {
return 0, err
}
if err := bw.Flush(); err != nil {
return 0, err
}
return wc.Count, nil
}
// ReplaceEntities replaces XML entities in the document
// according to the entity declarations in the DOCTYPE.
// It modifies the document in place.
//
// Entities are replaced only once to avoid attacks like the
// "Billion Laughs" XML entity expansion attack.
func (doc *Document) ReplaceEntities() {
if em := parseEntityMap(doc.Children); em != nil {
doc.replaceEntities(em)
}
}