blob: d087d3adbf696c9a6d8ed31aeb6c66b54c3df1e5 (
plain)
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
44
45
46
|
package feed
import (
"time"
"github.com/mmcdole/gofeed"
"github.com/Necoro/feed2imap-go/pkg/config"
"github.com/Necoro/feed2imap-go/pkg/log"
)
type Feed struct {
*config.Feed
feed *gofeed.Feed
items []feeditem
cached CachedFeed
}
type feedDescriptor struct {
Name string
Url string
}
type feeditem struct {
*gofeed.Feed
*gofeed.Item
}
func (feed *Feed) descriptor() feedDescriptor {
return feedDescriptor{
Name: feed.Name,
Url: feed.Url,
}
}
func (feed *Feed) NeedsUpdate(updateTime time.Time) bool {
if !updateTime.IsZero() && int(time.Since(updateTime).Hours()) >= *feed.MinFreq {
log.Printf("Feed '%s' does not need updating, skipping.", feed.Name)
return false
}
return true
}
func (feed *Feed) Success() bool {
return feed.feed != nil
}
|