1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00
miniflux-v2/reader/rdf/parser.go

29 lines
728 B
Go
Raw Normal View History

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