28 lines
716 B
Go
28 lines
716 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 rss // import "miniflux.app/reader/rss"
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"io"
|
|
|
|
"miniflux.app/errors"
|
|
"miniflux.app/model"
|
|
"miniflux.app/reader/encoding"
|
|
)
|
|
|
|
// Parse returns a normalized feed struct from a RSS feed.
|
|
func Parse(data io.Reader) (*model.Feed, *errors.LocalizedError) {
|
|
feed := new(rssFeed)
|
|
decoder := xml.NewDecoder(data)
|
|
decoder.CharsetReader = encoding.CharsetReader
|
|
|
|
err := decoder.Decode(feed)
|
|
if err != nil {
|
|
return nil, errors.NewLocalizedError("Unable to parse RSS feed: %q", err)
|
|
}
|
|
|
|
return feed.Transform(), nil
|
|
}
|