miniflux-v2/reader/opml/opml.go

93 lines
2.0 KiB
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.
2018-08-25 06:51:50 +02:00
package opml // import "miniflux.app/reader/opml"
2017-11-20 06:10:04 +01:00
2019-03-27 03:49:59 +01:00
import (
"encoding/xml"
)
2017-11-20 06:10:04 +01:00
2021-12-16 20:42:43 +01:00
// Specs: http://opml.org/spec2.opml
type opmlDocument struct {
XMLName xml.Name `xml:"opml"`
Version string `xml:"version,attr"`
Header opmlHeader `xml:"head"`
Outlines []opmlOutline `xml:"body>outline"`
2017-11-20 06:10:04 +01:00
}
2021-12-16 20:42:43 +01:00
func NewOPMLDocument() *opmlDocument {
return &opmlDocument{}
2017-11-20 06:10:04 +01:00
}
2021-12-16 20:42:43 +01:00
func (o *opmlDocument) GetSubscriptionList() SubcriptionList {
var subscriptions SubcriptionList
for _, outline := range o.Outlines {
if len(outline.Outlines) > 0 {
for _, element := range outline.Outlines {
// outline.Text is only available in OPML v2.
subscriptions = element.Append(subscriptions, outline.Text)
}
} else {
subscriptions = outline.Append(subscriptions, "")
}
}
return subscriptions
}
type opmlHeader struct {
Title string `xml:"title,omitempty"`
DateCreated string `xml:"dateCreated,omitempty"`
OwnerName string `xml:"ownerName,omitempty"`
}
type opmlOutline struct {
Title string `xml:"title,attr,omitempty"`
Text string `xml:"text,attr"`
FeedURL string `xml:"xmlUrl,attr,omitempty"`
SiteURL string `xml:"htmlUrl,attr,omitempty"`
Outlines []opmlOutline `xml:"outline,omitempty"`
}
func (o *opmlOutline) GetTitle() string {
2017-11-20 06:10:04 +01:00
if o.Title != "" {
return o.Title
}
if o.Text != "" {
return o.Text
}
if o.SiteURL != "" {
return o.SiteURL
}
if o.FeedURL != "" {
return o.FeedURL
}
return ""
}
2021-12-16 20:42:43 +01:00
func (o *opmlOutline) GetSiteURL() string {
2017-11-20 06:10:04 +01:00
if o.SiteURL != "" {
return o.SiteURL
}
return o.FeedURL
}
2021-12-16 20:42:43 +01:00
func (o *opmlOutline) Append(subscriptions SubcriptionList, category string) SubcriptionList {
2017-11-20 06:10:04 +01:00
if o.FeedURL != "" {
subscriptions = append(subscriptions, &Subcription{
Title: o.GetTitle(),
FeedURL: o.FeedURL,
SiteURL: o.GetSiteURL(),
CategoryName: category,
})
}
return subscriptions
}