| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // 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.
- package rdf
- import (
- "encoding/xml"
- "strings"
- "time"
- "github.com/miniflux/miniflux/crypto"
- "github.com/miniflux/miniflux/model"
- "github.com/miniflux/miniflux/reader/sanitizer"
- "github.com/miniflux/miniflux/url"
- )
- type rdfFeed struct {
- XMLName xml.Name `xml:"RDF"`
- Title string `xml:"channel>title"`
- Link string `xml:"channel>link"`
- Creator string `xml:"channel>creator"`
- Items []rdfItem `xml:"item"`
- }
- func (r *rdfFeed) Transform() *model.Feed {
- feed := new(model.Feed)
- feed.Title = sanitizer.StripTags(r.Title)
- feed.SiteURL = r.Link
- for _, item := range r.Items {
- entry := item.Transform()
- if entry.Author == "" && r.Creator != "" {
- entry.Author = sanitizer.StripTags(r.Creator)
- }
- if entry.URL == "" {
- entry.URL = feed.SiteURL
- } else {
- entryURL, err := url.AbsoluteURL(feed.SiteURL, entry.URL)
- if err == nil {
- entry.URL = entryURL
- }
- }
- feed.Entries = append(feed.Entries, entry)
- }
- return feed
- }
- type rdfItem struct {
- Title string `xml:"title"`
- Link string `xml:"link"`
- Description string `xml:"description"`
- Creator string `xml:"creator"`
- }
- func (r *rdfItem) Transform() *model.Entry {
- entry := new(model.Entry)
- entry.Title = strings.TrimSpace(r.Title)
- entry.Author = strings.TrimSpace(r.Creator)
- entry.URL = r.Link
- entry.Content = r.Description
- entry.Hash = getHash(r)
- entry.Date = time.Now()
- return entry
- }
- func getHash(r *rdfItem) string {
- value := r.Link
- if value == "" {
- value = r.Title + r.Description
- }
- return crypto.Hash(value)
- }
|