-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlink.go
66 lines (52 loc) · 1020 Bytes
/
link.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
package message
type Link struct {
Message
LinkBody *LinkBody `json:"link"`
}
func NewLink() *Link {
l := &Link{}
l.SetType("link")
return l
}
// 消息内容。如果太长只会部分展示
func (l *Link) SetText(text string) *Link {
if l.LinkBody == nil {
l.setDefaultLinkBody()
}
l.LinkBody.Text = text
return l
}
// 消息标题
func (l *Link) SetTitle(title string) *Link {
if l.LinkBody == nil {
l.setDefaultLinkBody()
}
l.LinkBody.Title = title
return l
}
// 图片URL
func (l *Link) SetPic(pic string) *Link {
if l.LinkBody == nil {
l.setDefaultLinkBody()
}
l.LinkBody.Pic = pic
return l
}
// 点击消息跳转的URL
func (l *Link) SetUrl(url string) *Link {
if l.LinkBody == nil {
l.setDefaultLinkBody()
}
l.LinkBody.Url = url
return l
}
func (l *Link) setDefaultLinkBody() *Link {
l.LinkBody = &LinkBody{}
return l
}
type LinkBody struct {
Text string `json:"text"`
Title string `json:"title"`
Pic string `json:"picUrl"`
Url string `json:"messageUrl"`
}