-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
209 lines (203 loc) · 5.08 KB
/
main.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package main
import (
"log"
"os"
"github.com/urfave/cli"
)
var version = "1.0.0"
func main() {
app := cli.NewApp()
app.Name = "WeChat robot plugin"
app.Usage = "WeChat robot plugin"
app.Action = run
app.Version = version
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "key",
Usage: "The key of robot to send message",
EnvVar: "PLUGIN_KEY",
},
cli.StringFlag{
Name: "msgtype",
Usage: "The type of message, either text, markdown, image, news",
EnvVar: "PLUGIN_MSGTYPE",
Value: "text",
},
cli.StringFlag{
Name: "content",
Usage: "The message content to send",
EnvVar: "PLUGIN_CONTENT",
},
cli.StringSliceFlag{
Name: "mentioned_list",
Usage: "The mentioned user list, eg: @all,kaynewang",
EnvVar: "PLUGIN_MENTIONED_LIST",
},
cli.StringSliceFlag{
Name: "mentioned_mobile_list",
Usage: "The mentioned mobile list, eg: @all,kaynewang",
EnvVar: "PLUGIN_MENTIONED_MOBILE_LIST",
},
cli.StringFlag{
Name: "base64",
Usage: "The image base64 code",
EnvVar: "PLUGIN_BASE64",
},
cli.StringFlag{
Name: "md5",
Usage: "The image md5 code",
EnvVar: "PLUGIN_MD5",
},
cli.StringSliceFlag{
Name: "article_title",
Usage: "The article title when msgtype is news, eg: title1,title2",
EnvVar: "PLUGIN_ARTILE_TITLE",
},
cli.StringSliceFlag{
Name: "article_description",
Usage: "The article description when msgtype is news, eg: desc1,desc2",
EnvVar: "PLUGIN_ARTICLE_DESCRIPTION",
},
cli.StringSliceFlag{
Name: "article_url",
Usage: "The article link url when msgtype is news, eg: www.qq.com,www.baidu.com",
EnvVar: "PLUGIN_ARTICLE_URL",
},
cli.StringSliceFlag{
Name: "article_picurl",
Usage: "The article image url when msgtype is news, eg: http://res.com/pic1.png,http://res/pic2.jpg",
EnvVar: "PLUGIN_ARTICLE_PICURL",
},
cli.StringFlag{
Name: "repo.owner",
Usage: "repository owner",
EnvVar: "DRONE_REPO_OWNER",
},
cli.StringFlag{
Name: "repo.name",
Usage: "repository name",
EnvVar: "DRONE_REPO_NAME",
},
cli.StringFlag{
Name: "commit",
Usage: "git commit",
EnvVar: "DRONE_COMMIT",
},
cli.StringFlag{
Name: "commit.link",
Usage: "git commit link",
EnvVar: "DRONE_COMMIT_LINK",
},
cli.StringFlag{
Name: "commit.ref",
Value: "refs/heads/master",
Usage: "git commit ref",
EnvVar: "DRONE_COMMIT_REF",
},
cli.StringFlag{
Name: "commit.branch",
Value: "master",
Usage: "git commit branch",
EnvVar: "DRONE_COMMIT_BRANCH",
},
cli.StringFlag{
Name: "commit.author",
Usage: "git author name",
EnvVar: "DRONE_COMMIT_AUTHOR",
},
cli.StringFlag{
Name: "commit.message",
Usage: "commit message",
EnvVar: "DRONE_COMMIT_MESSAGE",
},
cli.StringFlag{
Name: "build.event",
Value: "push",
Usage: "build event",
EnvVar: "DRONE_BUILD_EVENT",
},
cli.IntFlag{
Name: "build.number",
Usage: "build number",
EnvVar: "DRONE_BUILD_NUMBER",
},
cli.StringFlag{
Name: "build.status",
Usage: "build status",
Value: "success",
EnvVar: "DRONE_BUILD_STATUS",
},
cli.StringFlag{
Name: "build.link",
Usage: "build link",
EnvVar: "DRONE_BUILD_LINK",
},
cli.Int64Flag{
Name: "build.started",
Usage: "build started",
EnvVar: "DRONE_BUILD_STARTED",
},
cli.Int64Flag{
Name: "build.created",
Usage: "build created",
EnvVar: "DRONE_BUILD_CREATED",
},
cli.StringFlag{
Name: "build.tag",
Usage: "build tag",
EnvVar: "DRONE_TAG",
},
cli.Int64Flag{
Name: "job.started",
Usage: "job started",
EnvVar: "DRONE_JOB_STARTED",
},
cli.StringFlag{
Name: "env-file",
Usage: "source env file",
},
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func run(c *cli.Context) error {
plugin := Plugin{
Repo: Repo{
Owner: c.String("repo.owner"),
Name: c.String("repo.name"),
},
Build: Build{
Tag: c.String("build.tag"),
Number: c.Int("build.number"),
Event: c.String("build.event"),
Status: c.String("build.status"),
Commit: c.String("commit"),
CommitLink: c.String("commit.link"),
Ref: c.String("commit.ref"),
Branch: c.String("commit.branch"),
Author: c.String("commit.author"),
Message: c.String("commit.message"),
Link: c.String("build.link"),
Started: c.Int64("build.started"),
Created: c.Int64("build.created"),
},
Job: Job{
Started: c.Int64("job.started"),
},
Config: Config{
Key: c.String("key"),
MsgType: c.String("msgtype"),
Content: c.String("content"),
MentionedList: c.StringSlice("mentioned_list"),
MentionedMobileList: c.StringSlice("mentioned_mobile_list"),
Base64: c.String("base64"),
Md5: c.String("md5"),
Title: c.StringSlice("article_title"),
Description: c.StringSlice("article_description"),
URL: c.StringSlice("article_url"),
Picurl: c.StringSlice("article_picurl"),
},
}
return plugin.Exec()
}