2017-11-19 21:10:04 -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.
|
|
|
|
|
2018-08-24 21:51:50 -07:00
|
|
|
package opml // import "miniflux.app/reader/opml"
|
2017-11-19 21:10:04 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
|
2018-08-24 21:51:50 -07:00
|
|
|
"miniflux.app/errors"
|
|
|
|
"miniflux.app/reader/encoding"
|
2017-11-19 21:10:04 -08:00
|
|
|
)
|
|
|
|
|
2017-11-20 14:35:11 -08:00
|
|
|
// Parse reads an OPML file and returns a SubcriptionList.
|
2018-02-27 21:08:32 -08:00
|
|
|
func Parse(data io.Reader) (SubcriptionList, *errors.LocalizedError) {
|
2021-12-16 11:42:43 -08:00
|
|
|
opmlDocument := NewOPMLDocument()
|
2017-11-19 21:10:04 -08:00
|
|
|
decoder := xml.NewDecoder(data)
|
2019-03-02 16:38:02 +01:00
|
|
|
decoder.Entity = xml.HTMLEntity
|
2019-09-18 22:27:25 -07:00
|
|
|
decoder.Strict = false
|
2018-01-19 22:42:55 -08:00
|
|
|
decoder.CharsetReader = encoding.CharsetReader
|
2017-11-19 21:10:04 -08:00
|
|
|
|
2021-12-16 11:42:43 -08:00
|
|
|
err := decoder.Decode(opmlDocument)
|
2017-11-19 21:10:04 -08:00
|
|
|
if err != nil {
|
2018-02-27 21:19:59 -08:00
|
|
|
return nil, errors.NewLocalizedError("Unable to parse OPML file: %q", err)
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|
|
|
|
|
2022-07-04 15:50:48 -07:00
|
|
|
return getSubscriptionsFromOutlines(opmlDocument.Outlines, ""), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getSubscriptionsFromOutlines(outlines opmlOutlineCollection, category string) (subscriptions SubcriptionList) {
|
|
|
|
for _, outline := range outlines {
|
|
|
|
if outline.IsSubscription() {
|
|
|
|
subscriptions = append(subscriptions, &Subcription{
|
|
|
|
Title: outline.GetTitle(),
|
|
|
|
FeedURL: outline.FeedURL,
|
|
|
|
SiteURL: outline.GetSiteURL(),
|
|
|
|
CategoryName: category,
|
|
|
|
})
|
|
|
|
} else if outline.Outlines.HasChildren() {
|
|
|
|
subscriptions = append(subscriptions, getSubscriptionsFromOutlines(outline.Outlines, outline.Text)...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return subscriptions
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|