Add author
This commit is contained in:
parent
0e1a3fe25d
commit
35c7baa854
5
rss.go
5
rss.go
|
@ -14,6 +14,7 @@ type Item struct {
|
|||
Link string `xml:"link"`
|
||||
Description string `xml:"description"`
|
||||
PubDate RssDate `xml:"pubDate"`
|
||||
Author Author `xml:"author"`
|
||||
}
|
||||
|
||||
type Channel struct {
|
||||
|
@ -32,6 +33,10 @@ type RssDate struct {
|
|||
time.Time
|
||||
}
|
||||
|
||||
type Author struct {
|
||||
Name string `xml:"name"`
|
||||
}
|
||||
|
||||
func (c *RssDate) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
||||
var v string
|
||||
dateFormat := "Mon, 02 Jan 2006 15:04:05 GMT"
|
||||
|
|
2
tg.go
2
tg.go
|
@ -33,7 +33,7 @@ func init() {
|
|||
}
|
||||
|
||||
func SendItemToTelegram(item *Item) error {
|
||||
text := fmt.Sprintf("%s (%s)\n", item.Title, humanize.Time(item.PubDate.Time))
|
||||
text := fmt.Sprintf("%s\n_%s by_ [%s](https://stacker.news/%s)\n", item.Title, humanize.Time(item.PubDate.Time), item.Author.Name, item.Author.Name)
|
||||
linkItem := item.Link != item.Guid
|
||||
if linkItem {
|
||||
text += fmt.Sprintf("[Link](%s) ", item.Link)
|
||||
|
|
Loading…
Reference in New Issue