@@ -7,55 +7,90 @@ import (
7
7
8
8
"github.com/devmegablaster/jatt/internal/config"
9
9
"github.com/devmegablaster/jatt/pkg/reader"
10
+ "github.com/devmegablaster/jatt/pkg/renderer"
10
11
"github.com/devmegablaster/jatt/pkg/styles"
11
12
)
12
13
13
- type Rss struct {
14
+ type RssSvc struct {
14
15
cfg config.JattConfig
15
16
}
16
17
17
- func New (cfg config.JattConfig ) * Rss {
18
- return & Rss {
18
+ func New (cfg config.JattConfig ) * RssSvc {
19
+ return & RssSvc {
19
20
cfg : cfg ,
20
21
}
21
22
}
22
23
23
- type Feed struct {
24
- Title string `xml:"title"`
25
- Description string `xml:"description"`
26
- Link string `xml:"link"`
27
- PubDate time.Time `xml:"pubDate"`
28
- Items []reader.ListingItem `xml:"item"`
24
+ type Rss struct {
25
+ XMLName xml.Name `xml:"rss"`
26
+ Version string `xml:"version,attr"`
27
+ Channel Channel `xml:"channel"`
28
+ }
29
+
30
+ type Channel struct {
31
+ Title string `xml:"title"`
32
+ Description string `xml:"description"`
33
+ Link string `xml:"link"`
34
+ PubDate time.Time `xml:"pubDate"`
35
+ Items []Item `xml:"item"`
36
+ }
37
+
38
+ type Item struct {
39
+ Title string `xml:"title"`
40
+ Link string `xml:"link"`
41
+ Description string `xml:"description"`
42
+ PubDate time.Time `xml:"pubDate"`
43
+ Content string `xml:"content:encoded"`
29
44
}
30
45
31
- func (r * Rss ) GenerateFeed (files []reader.File ) []byte {
32
- posts := []reader. ListingItem {}
46
+ func (r * RssSvc ) GenerateFeed (files []reader.File , renderedFiles []renderer. RenderedFile ) []byte {
47
+ posts := []Item {}
33
48
34
49
for _ , file := range files {
35
50
if file .FrontMatter .Draft {
36
51
continue
37
52
}
38
53
39
54
if file .FrontMatter .Layout == "listing" {
40
- for _ , item := range file .Listing {
41
- posts = append (posts , item )
55
+ for index , item := range file .Listing {
56
+ t , err := time .Parse ("2006-01-02" , item .Date )
57
+ if err != nil {
58
+ t = time .Now ()
59
+ fmt .Println (styles .ErrorStyle .Render ("Error parsing date" ))
60
+ fmt .Println (styles .ErrorStyle .Render (err .Error ()))
61
+ }
62
+
63
+ posts = append (posts , Item {
64
+ Title : item .Title ,
65
+ Link : item .URL ,
66
+ Description : item .Description ,
67
+ PubDate : t ,
68
+ Content : string (renderedFiles [index ].ContentHtml ),
69
+ })
42
70
}
43
71
}
44
72
}
45
73
46
- feed := Feed {
74
+ channel := Channel {
47
75
Title : r .cfg .SiteConfig .Title ,
48
76
Description : r .cfg .SiteConfig .Description ,
49
77
Link : r .cfg .SiteConfig .BaseURL ,
50
78
PubDate : time .Now (),
51
79
Items : posts ,
52
80
}
53
81
82
+ feed := Rss {
83
+ Version : "2.0" ,
84
+ Channel : channel ,
85
+ }
86
+
54
87
enc , err := xml .MarshalIndent (& feed , "" , " " )
55
88
if err != nil {
56
89
fmt .Println (styles .ErrorStyle .Render ("Error generating RSS feed" ))
57
90
}
58
91
92
+ enc = []byte (xml .Header + string (enc ))
93
+
59
94
fmt .Println (styles .DebugStyle .Render ("Generated RSS feed" ))
60
95
61
96
return enc
0 commit comments