-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsing.go
43 lines (35 loc) · 858 Bytes
/
parsing.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package main
import (
"time"
"github.com/gorilla/feeds"
"github.com/mmcdole/gofeed"
)
// Convert a gofeed.Feed into a gorilla/feeds.Feed
func gofeedToGorillaFeed(goFeed *gofeed.Feed) (*feeds.Feed, error) {
feed := &feeds.Feed{}
feed.Items = []*feeds.Item{}
feed.Updated = time.Now()
for _, item := range goFeed.Items {
itemAuthors := ""
n := len(item.Authors)
for i, author := range item.Authors {
itemAuthors += author.Name
if i <= (n - 2) {
itemAuthors += ", "
}
}
feed.Items = append(
feed.Items,
&feeds.Item{
Title: item.Title,
Link: &feeds.Link{Href: item.Link},
Author: &feeds.Author{Name: itemAuthors},
Description: item.Description,
Id: item.GUID,
Updated: *item.UpdatedParsed,
Created: *item.PublishedParsed,
},
)
}
return feed, nil
}