2017-11-20 21:34:11 -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.
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
package rdf // import "miniflux.app/reader/rdf"
|
2017-11-20 21:34:11 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/errors"
|
|
|
|
"miniflux.app/model"
|
2019-10-22 23:27:27 -04:00
|
|
|
"miniflux.app/reader/xml"
|
2017-11-20 21:34:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Parse returns a normalized feed struct from a RDF feed.
|
2020-12-02 23:47:11 -05:00
|
|
|
func Parse(baseURL string, data io.Reader) (*model.Feed, *errors.LocalizedError) {
|
2017-11-20 21:34:11 -05:00
|
|
|
feed := new(rdfFeed)
|
|
|
|
decoder := xml.NewDecoder(data)
|
|
|
|
err := decoder.Decode(feed)
|
|
|
|
if err != nil {
|
2018-02-28 00:19:59 -05:00
|
|
|
return nil, errors.NewLocalizedError("Unable to parse RDF feed: %q", err)
|
2017-11-20 21:34:11 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 23:47:11 -05:00
|
|
|
return feed.Transform(baseURL), nil
|
2017-11-20 21:34:11 -05:00
|
|
|
}
|