miniflux-v2/reader/rss/parser.go

26 lines
669 B
Go
Raw Normal View History

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.
2018-08-25 06:51:50 +02:00
package rss // import "miniflux.app/reader/rss"
2017-11-20 06:10:04 +01:00
import (
"io"
2018-08-25 06:51:50 +02:00
"miniflux.app/errors"
"miniflux.app/model"
"miniflux.app/reader/xml"
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.
func Parse(baseURL string, data io.Reader) (*model.Feed, *errors.LocalizedError) {
2017-11-21 00:15:10 +01:00
feed := new(rssFeed)
2017-11-20 06:10:04 +01:00
decoder := xml.NewDecoder(data)
2017-11-21 00:15:10 +01:00
err := decoder.Decode(feed)
2017-11-20 06:10:04 +01:00
if err != nil {
2018-02-28 06:19:59 +01:00
return nil, errors.NewLocalizedError("Unable to parse RSS feed: %q", err)
2017-11-20 06:10:04 +01:00
}
return feed.Transform(baseURL), nil
2017-11-20 06:10:04 +01:00
}