1
0
Fork 0
miniflux/reader/rss/parser.go

29 lines
728 B
Go
Raw Normal View History

2017-11-20 00:10:04 -05: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 00:48:13 -05:00
"github.com/miniflux/miniflux/errors"
"github.com/miniflux/miniflux/model"
"github.com/miniflux/miniflux/reader/encoding"
2017-11-20 00:10:04 -05:00
)
2017-11-20 18:48:26 -05:00
// Parse returns a normalized feed struct from a RSS feed.
func Parse(data io.Reader) (*model.Feed, *errors.LocalizedError) {
2017-11-20 18:15:10 -05:00
feed := new(rssFeed)
2017-11-20 00:10:04 -05:00
decoder := xml.NewDecoder(data)
decoder.CharsetReader = encoding.CharsetReader
2017-11-20 00:10:04 -05:00
2017-11-20 18:15:10 -05:00
err := decoder.Decode(feed)
2017-11-20 00:10:04 -05:00
if err != nil {
2018-02-28 00:19:59 -05:00
return nil, errors.NewLocalizedError("Unable to parse RSS feed: %q", err)
2017-11-20 00:10:04 -05:00
}
2017-11-20 18:15:10 -05:00
return feed.Transform(), nil
2017-11-20 00:10:04 -05:00
}