miniflux-v2/reader/opml/parser.go

28 lines
666 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.
package opml
import (
"encoding/xml"
"io"
2017-11-20 23:35:11 +01:00
"github.com/miniflux/miniflux2/errors"
2017-11-20 06:10:04 +01:00
"golang.org/x/net/html/charset"
)
2017-11-20 23:35:11 +01:00
// Parse reads an OPML file and returns a SubcriptionList.
2017-11-20 06:10:04 +01:00
func Parse(data io.Reader) (SubcriptionList, error) {
feeds := new(opml)
2017-11-20 06:10:04 +01:00
decoder := xml.NewDecoder(data)
decoder.CharsetReader = charset.NewReaderLabel
err := decoder.Decode(feeds)
2017-11-20 06:10:04 +01:00
if err != nil {
2017-11-21 03:34:11 +01:00
return nil, errors.NewLocalizedError("Unable to parse OPML file: %v.", err)
2017-11-20 06:10:04 +01:00
}
return feeds.Transform(), nil
2017-11-20 06:10:04 +01:00
}