miniflux-v2/reader/opml/serializer.go

73 lines
1.9 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
import (
"bufio"
"bytes"
"encoding/xml"
"sort"
2021-12-16 20:42:43 +01:00
"time"
2017-12-16 03:55:57 +01:00
2018-08-25 06:51:50 +02:00
"miniflux.app/logger"
2017-11-20 06:10:04 +01:00
)
2017-11-20 23:35:11 +01:00
// Serialize returns a SubcriptionList in OPML format.
2017-11-20 06:10:04 +01:00
func Serialize(subscriptions SubcriptionList) string {
var b bytes.Buffer
writer := bufio.NewWriter(&b)
writer.WriteString(xml.Header)
2021-12-16 20:42:43 +01:00
opmlDocument := convertSubscriptionsToOPML(subscriptions)
2017-11-20 06:10:04 +01:00
encoder := xml.NewEncoder(writer)
2021-12-16 20:42:43 +01:00
encoder.Indent("", " ")
if err := encoder.Encode(opmlDocument); err != nil {
2017-12-16 03:55:57 +01:00
logger.Error("[OPML:Serialize] %v", err)
2017-11-20 06:10:04 +01:00
return ""
}
return b.String()
}
2021-12-16 20:42:43 +01:00
func convertSubscriptionsToOPML(subscriptions SubcriptionList) *opmlDocument {
opmlDocument := NewOPMLDocument()
opmlDocument.Version = "2.0"
opmlDocument.Header.Title = "Miniflux"
opmlDocument.Header.DateCreated = time.Now().Format("Mon, 02 Jan 2006 15:04:05 MST")
groupedSubs := groupSubscriptionsByFeed(subscriptions)
var categories []string
for k := range groupedSubs {
categories = append(categories, k)
}
sort.Strings(categories)
for _, categoryName := range categories {
2021-12-16 20:42:43 +01:00
category := opmlOutline{Text: categoryName}
for _, subscription := range groupedSubs[categoryName] {
2021-12-16 20:42:43 +01:00
category.Outlines = append(category.Outlines, opmlOutline{
Title: subscription.Title,
Text: subscription.Title,
FeedURL: subscription.FeedURL,
SiteURL: subscription.SiteURL,
})
}
2021-12-16 20:42:43 +01:00
opmlDocument.Outlines = append(opmlDocument.Outlines, category)
}
2021-12-16 20:42:43 +01:00
return opmlDocument
}
func groupSubscriptionsByFeed(subscriptions SubcriptionList) map[string]SubcriptionList {
groups := make(map[string]SubcriptionList)
for _, subscription := range subscriptions {
groups[subscription.CategoryName] = append(groups[subscription.CategoryName], subscription)
}
return groups
}