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.
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
package opml // import "miniflux.app/reader/opml"
|
2017-11-20 00:10:04 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/errors"
|
|
|
|
"miniflux.app/reader/encoding"
|
2017-11-20 00:10:04 -05:00
|
|
|
)
|
|
|
|
|
2017-11-20 17:35:11 -05:00
|
|
|
// Parse reads an OPML file and returns a SubcriptionList.
|
2018-02-28 00:08:32 -05:00
|
|
|
func Parse(data io.Reader) (SubcriptionList, *errors.LocalizedError) {
|
2017-11-20 22:11:06 -05:00
|
|
|
feeds := new(opml)
|
2017-11-20 00:10:04 -05:00
|
|
|
decoder := xml.NewDecoder(data)
|
2019-03-02 10:38:02 -05:00
|
|
|
decoder.Entity = xml.HTMLEntity
|
2019-09-19 01:27:25 -04:00
|
|
|
decoder.Strict = false
|
2018-01-20 01:42:55 -05:00
|
|
|
decoder.CharsetReader = encoding.CharsetReader
|
2017-11-20 00:10:04 -05:00
|
|
|
|
2017-11-20 22:11:06 -05:00
|
|
|
err := decoder.Decode(feeds)
|
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 OPML file: %q", err)
|
2017-11-20 00:10:04 -05:00
|
|
|
}
|
|
|
|
|
2017-11-20 22:11:06 -05:00
|
|
|
return feeds.Transform(), nil
|
2017-11-20 00:10:04 -05:00
|
|
|
}
|