713b38e34c
- Feeds with charset specified only in Content-Type header and not in XML document - Feeds with charset specified in both places - Feeds with charset specified only in XML document and not in HTTP header
28 lines
728 B
Go
28 lines
728 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 (
|
|
"encoding/xml"
|
|
"io"
|
|
|
|
"github.com/miniflux/miniflux/errors"
|
|
"github.com/miniflux/miniflux/model"
|
|
"github.com/miniflux/miniflux/reader/encoding"
|
|
)
|
|
|
|
// Parse returns a normalized feed struct from a Atom feed.
|
|
func Parse(data io.Reader) (*model.Feed, error) {
|
|
atomFeed := new(atomFeed)
|
|
decoder := xml.NewDecoder(data)
|
|
decoder.CharsetReader = encoding.CharsetReader
|
|
|
|
err := decoder.Decode(atomFeed)
|
|
if err != nil {
|
|
return nil, errors.NewLocalizedError("Unable to parse Atom feed: %v.", err)
|
|
}
|
|
|
|
return atomFeed.Transform(), nil
|
|
}
|