2017-11-20 06:10:04 +01:00
|
|
|
// 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 (
|
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
|
2017-12-13 06:48:13 +01:00
|
|
|
"github.com/miniflux/miniflux/errors"
|
|
|
|
"github.com/miniflux/miniflux/model"
|
2018-01-20 07:42:55 +01:00
|
|
|
"github.com/miniflux/miniflux/reader/encoding"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-21 00:48:26 +01:00
|
|
|
// Parse returns a normalized feed struct from a RSS feed.
|
2017-11-20 06:10:04 +01:00
|
|
|
func Parse(data io.Reader) (*model.Feed, error) {
|
2017-11-21 00:15:10 +01:00
|
|
|
feed := new(rssFeed)
|
2017-11-20 06:10:04 +01:00
|
|
|
decoder := xml.NewDecoder(data)
|
2018-01-20 07:42:55 +01:00
|
|
|
decoder.CharsetReader = encoding.CharsetReader
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2017-11-21 00:15:10 +01:00
|
|
|
err := decoder.Decode(feed)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2017-11-21 03:34:11 +01:00
|
|
|
return nil, errors.NewLocalizedError("Unable to parse RSS feed: %v.", err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 00:15:10 +01:00
|
|
|
return feed.Transform(), nil
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|