blob: b8fb7f78cf8c9544a08af39b1fdc7570363204bf (
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
|
package feed
import (
"encoding/base64"
"fmt"
"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.Feed
*gofeed.Item
feed *Feed
Body string
updateOnly bool
reasons []string
images []feedImage
itemId uuid.UUID
}
// Creator returns the name of the creating author.
// MUST NOT have `*item` has the receiver, because the template breaks then.
func (item *item) Creator() string {
if item.Item.Author != nil {
return item.Item.Author.Name
}
return ""
}
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.itemId[:])
return item.feed.cached.ID() + "#" + idStr
}
func (item *item) messageId() string {
return fmt.Sprintf("<feed#%s@%s>", item.id(), config.Hostname())
}
|