-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfeed_card.go
89 lines (66 loc) · 1.61 KB
/
feed_card.go
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
package message
const MaxFeedCardLinks = 10
type FeedCard struct {
Message
FeedCardBody *FeedCardBody `json:"feedCard"`
}
func NewFeedCard() *FeedCard {
fc := &FeedCard{}
fc.SetType("feedCard")
return fc
}
func (fc *FeedCard) SetLinks(links []*FeedCardLinkBody) *FeedCard {
if fc.FeedCardBody == nil {
fc.setDefaultFeedCardBody()
}
if len(links) > MaxFeedCardLinks {
fc.FeedCardBody.Links = links[:MaxFeedCardLinks]
} else {
fc.FeedCardBody.Links = links
}
return fc
}
func (fc *FeedCard) AddLink(link *FeedCardLinkBody) *FeedCard {
if fc.FeedCardBody == nil {
fc.setDefaultFeedCardBody()
}
if fc.isFull() {
return fc
}
fc.FeedCardBody.Links = append(fc.FeedCardBody.Links, link)
return fc
}
// FeedCard目前最大支持10条
func (fc *FeedCard) isFull() bool {
return len(fc.FeedCardBody.Links) >= MaxFeedCardLinks
}
func (fc *FeedCard) setDefaultFeedCardBody() *FeedCard {
fc.FeedCardBody = &FeedCardBody{}
return fc
}
type FeedCardBody struct {
Links []*FeedCardLinkBody `json:"links"`
}
type FeedCardLinkBody struct {
Title string `json:"title"`
Pic string `json:"picURL"`
Url string `json:"messageURL"`
}
func NewFeedCardLink() *FeedCardLinkBody {
return &FeedCardLinkBody{}
}
// 单条信息文本
func (fclb *FeedCardLinkBody) SetTitle(text string) *FeedCardLinkBody {
fclb.Title = text
return fclb
}
// 单条信息后面图片的URL
func (fclb *FeedCardLinkBody) SetPic(pic string) *FeedCardLinkBody {
fclb.Pic = pic
return fclb
}
// 点击单条信息到跳转链接
func (fclb *FeedCardLinkBody) SetUrl(url string) *FeedCardLinkBody {
fclb.Url = url
return fclb
}