a074773e6c
This will allow to make use of func (*Reader) Seek, instead of re-recreating a new reader. It's a large commit for a small change, but anything to simply the reader/buffer/ReadAll/… mess is a step in the right direction I think, and it should enable more follow-up simplifications.
22 lines
599 B
Go
22 lines
599 B
Go
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package rdf // import "miniflux.app/v2/internal/reader/rdf"
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
"miniflux.app/v2/internal/reader/xml"
|
|
)
|
|
|
|
// Parse returns a normalized feed struct from a RDF feed.
|
|
func Parse(baseURL string, data io.ReadSeeker) (*model.Feed, error) {
|
|
feed := new(rdfFeed)
|
|
if err := xml.NewXMLDecoder(data).Decode(feed); err != nil {
|
|
return nil, fmt.Errorf("rdf: unable to parse feed: %w", err)
|
|
}
|
|
|
|
return feed.Transform(baseURL), nil
|
|
}
|