49 lines
906 B
Go
49 lines
906 B
Go
package main
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"io"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
type RSSFeed struct {
|
|
Channel struct {
|
|
Title string `xml:"title"`
|
|
Link string `xml:"link"`
|
|
Description string `xml:"description"`
|
|
Language string `xml:"language"`
|
|
Items []RSSItem `xml:"item"`
|
|
} `xml:"channel"`
|
|
}
|
|
|
|
type RSSItem struct {
|
|
Title string `xml:"title"`
|
|
Link string `xml:"link"`
|
|
Description string `xml:"description"`
|
|
PubDate string `xml:"pubDate"`
|
|
}
|
|
|
|
func urlToFeed(url string) (RSSFeed, error) {
|
|
httpClient := http.Client{Timeout: 10 * time.Second}
|
|
|
|
resp, err := httpClient.Get(url)
|
|
if err != nil {
|
|
return RSSFeed{}, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
dat, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return RSSFeed{}, err
|
|
}
|
|
|
|
rssFeed := RSSFeed{}
|
|
err = xml.Unmarshal(dat, &rssFeed)
|
|
if err != nil {
|
|
return RSSFeed{}, err
|
|
}
|
|
|
|
return rssFeed, nil
|
|
}
|