3a39d110f0
Every once in a while, one of my feeds would throw an XML parse error because it used ` ` or some other HTML entity. I feel Miniflux should be lenient here, and Go already has a handy hook to make this work.
29 lines
766 B
Go
29 lines
766 B
Go
// Copyright 2017 Frédéric Guillot. All rights reserved.
|
|
// Use of this source code is governed by the Apache 2.0
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package atom // import "miniflux.app/reader/atom"
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"io"
|
|
|
|
"miniflux.app/errors"
|
|
"miniflux.app/model"
|
|
"miniflux.app/reader/encoding"
|
|
)
|
|
|
|
// Parse returns a normalized feed struct from a Atom feed.
|
|
func Parse(data io.Reader) (*model.Feed, *errors.LocalizedError) {
|
|
atomFeed := new(atomFeed)
|
|
decoder := xml.NewDecoder(data)
|
|
decoder.Entity = xml.HTMLEntity
|
|
decoder.CharsetReader = encoding.CharsetReader
|
|
|
|
err := decoder.Decode(atomFeed)
|
|
if err != nil {
|
|
return nil, errors.NewLocalizedError("Unable to parse Atom feed: %q", err)
|
|
}
|
|
|
|
return atomFeed.Transform(), nil
|
|
}
|