2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package opml // import "miniflux.app/v2/internal/reader/opml"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2023-10-22 04:50:29 +02:00
|
|
|
"fmt"
|
2017-11-20 06:10:04 +01:00
|
|
|
"io"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/reader/encoding"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-20 23:35:11 +01:00
|
|
|
// Parse reads an OPML file and returns a SubcriptionList.
|
2023-10-22 04:50:29 +02:00
|
|
|
func Parse(data io.Reader) (SubcriptionList, error) {
|
2021-12-16 20:42:43 +01:00
|
|
|
opmlDocument := NewOPMLDocument()
|
2017-11-20 06:10:04 +01:00
|
|
|
decoder := xml.NewDecoder(data)
|
2019-03-02 16:38:02 +01:00
|
|
|
decoder.Entity = xml.HTMLEntity
|
2019-09-19 07:27:25 +02:00
|
|
|
decoder.Strict = false
|
2018-01-20 07:42:55 +01:00
|
|
|
decoder.CharsetReader = encoding.CharsetReader
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2021-12-16 20:42:43 +01:00
|
|
|
err := decoder.Decode(opmlDocument)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2023-10-22 04:50:29 +02:00
|
|
|
return nil, fmt.Errorf("opml: unable to parse document: %w", err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:50:48 +02: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() {
|
2024-02-24 13:47:03 +01:00
|
|
|
subscriptions = append(subscriptions, getSubscriptionsFromOutlines(outline.Outlines, outline.GetTitle())...)
|
2022-07-05 00:50:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return subscriptions
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|