52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/gorilla/feeds"
|
|
"github.com/labstack/echo/v4"
|
|
"goth.stack/lib"
|
|
)
|
|
|
|
func RSSFeedHandler(c echo.Context) error {
|
|
feed := &feeds.Feed{
|
|
Title: "Goth Stack Sample Blog",
|
|
Link: &feeds.Link{Href: "https://goth-stack.fly.dev/"},
|
|
}
|
|
|
|
files, err := os.ReadDir("./content/")
|
|
|
|
protocol := "http"
|
|
if c.Request().TLS != nil {
|
|
protocol = "https"
|
|
}
|
|
|
|
if err != nil {
|
|
http.Error(c.Response().Writer, "There was an issue finding posts!", http.StatusInternalServerError)
|
|
return nil
|
|
}
|
|
|
|
for _, file := range files {
|
|
frontMatter, err := lib.ExtractFrontMatter(file, "./content/")
|
|
if err != nil {
|
|
http.Error(c.Response().Writer, "There was an issue rendering the posts!", http.StatusInternalServerError)
|
|
return nil
|
|
}
|
|
|
|
date, _ := time.Parse("January 2 2006", frontMatter.Date)
|
|
|
|
feed.Add(&feeds.Item{
|
|
Title: frontMatter.Name,
|
|
Link: &feeds.Link{Href: protocol + "://" + c.Request().Host + "/post/" + strings.TrimSuffix(file.Name(), ".md")},
|
|
Created: date,
|
|
})
|
|
}
|
|
|
|
rss, _ := feed.ToRss()
|
|
fmt.Println("RSS:", rss)
|
|
return c.String(http.StatusOK, rss)
|
|
}
|