aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/item.go
blob: 39f41ba81c8aae716026bf68c185c09ef0f737cb (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package feed

import (
	"encoding/base64"
	"encoding/json"
	"fmt"
	"time"

	"github.com/google/uuid"
	"github.com/mmcdole/gofeed"

	"github.com/Necoro/feed2imap-go/pkg/config"
	"github.com/Necoro/feed2imap-go/pkg/util"
)

type feedImage struct {
	image []byte
	mime  string
}

type Item struct {
	*gofeed.Item              // access fields implicitly
	Feed         *gofeed.Feed // named explicitly to not shadow common fields with Item
	feed         *Feed
	Body         string
	TextBody     string
	UpdateOnly   bool
	reasons      []string
	images       []feedImage
	ID           uuid.UUID
}

func (item *Item) DateParsed() *time.Time {
	if item.UpdatedParsed == nil || item.UpdatedParsed.IsZero() {
		return item.PublishedParsed
	}
	return item.UpdatedParsed
}

func (item *Item) Date() string {
	if item.Updated == "" {
		return item.Published
	}
	return item.Updated
}

// Creator returns the name of the creating author.
func (item *Item) Creator() string {
	if item.Author != nil {
		return item.Author.Name
	}
	return ""
}

func (item *Item) FeedLink() string {
	if item.Feed.FeedLink != "" {
		// the one in the feed itself
		return item.Feed.FeedLink
	}
	// the one in the config
	return item.feed.Url
}

func (item *Item) AddReason(reason string) {
	if !util.StrContains(item.reasons, reason) {
		item.reasons = append(item.reasons, reason)
	}
}

func (item *Item) addImage(img []byte, mime string) int {
	i := feedImage{img, mime}
	item.images = append(item.images, i)
	return len(item.images)
}

func (item *Item) clearImages() {
	item.images = []feedImage{}
}

func (item *Item) defaultEmail() string {
	return item.feed.Global.DefaultEmail
}

func (item *Item) Id() string {
	idStr := base64.RawURLEncoding.EncodeToString(item.ID[:])
	return item.feed.id() + "#" + idStr
}

func (item *Item) messageId() string {
	return fmt.Sprintf("<feed#%s@%s>", item.Id(), config.Hostname())
}

func printItem(item *gofeed.Item) string {
	// analogous to gofeed.Feed.String
	json, _ := json.MarshalIndent(item, "", "    ")
	return string(json)
}