forked from drone-plugins/drone-slack-blame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
238 lines (230 loc) · 5.67 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package main
import (
"os"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
var (
version = "unknown"
)
func main() {
app := cli.NewApp()
app.Name = "slack blame plugin"
app.Usage = "slack blame plugin"
app.Action = run
app.Version = version
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "token",
Usage: "slack access token",
EnvVar: "PLUGIN_TOKEN,SLACK_TOKEN",
},
cli.StringFlag{
Name: "channel",
Usage: "slack channel",
EnvVar: "PLUGIN_CHANNEL",
},
cli.StringFlag{
Name: "mapping",
Usage: "mapping of authors to slack users",
EnvVar: "PLUGIN_MAPPING",
},
cli.StringFlag{
Name: "success_username",
Usage: "username for successful builds",
Value: "drone",
EnvVar: "PLUGIN_SUCCESS_USERNAME",
},
cli.StringFlag{
Name: "success_icon",
Usage: "icon for successful builds",
Value: ":drone:",
EnvVar: "PLUGIN_SUCCESS_ICON",
},
cli.StringFlag{
Name: "success_template",
Usage: "template for successful builds",
EnvVar: "PLUGIN_SUCCESS_TEMPLATE",
},
cli.StringSliceFlag{
Name: "success_image_attachments",
Usage: "image attachments for successful builds",
EnvVar: "PLUGIN_SUCCESS_IMAGE_ATTACHMENTS",
},
cli.StringFlag{
Name: "failure_username",
Usage: "username for failed builds",
Value: "drone",
EnvVar: "PLUGIN_FAILURE_USERNAME",
},
cli.StringFlag{
Name: "failure_icon",
Usage: "icon for failed builds",
Value: ":drone:",
EnvVar: "PLUGIN_FAILURE_ICON",
},
cli.StringFlag{
Name: "failure_template",
Usage: "template for failed builds",
EnvVar: "PLUGIN_FAILURE_TEMPLATE",
},
cli.StringSliceFlag{
Name: "failure_image_attachments",
Usage: "image attachments for failed builds",
EnvVar: "PLUGIN_FAILURE_IMAGE_ATTACHMENTS",
},
cli.StringFlag{
Name: "repo.fullname",
Usage: "repository full name",
EnvVar: "DRONE_REPO",
},
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: "repo.link",
Usage: "repository link",
EnvVar: "DRONE_REPO_LINK",
},
cli.StringFlag{
Name: "commit.sha",
Usage: "git commit sha",
EnvVar: "DRONE_COMMIT_SHA",
},
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.message",
Usage: "git commit message",
EnvVar: "DRONE_COMMIT_MESSAGE",
},
cli.StringFlag{
Name: "commit.link",
Usage: "git commit link",
EnvVar: "DRONE_COMMIT_LINK",
},
cli.StringFlag{
Name: "commit.author.name",
Usage: "git author name",
EnvVar: "DRONE_COMMIT_AUTHOR",
},
cli.StringFlag{
Name: "commit.author.email",
Usage: "git author email",
EnvVar: "DRONE_COMMIT_AUTHOR_EMAIL",
},
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.StringFlag{
Name: "build.deploy",
Usage: "build deployment target",
EnvVar: "DRONE_DEPLOY_TO",
},
cli.IntFlag{
Name: "prev.build.number",
Usage: "previous build number",
EnvVar: "DRONE_PREV_BUILD_NUMBER",
},
cli.StringFlag{
Name: "prev.build.status",
Usage: "previous build status",
EnvVar: "DRONE_PREV_BUILD_STATUS",
},
cli.StringFlag{
Name: "prev.commit.sha",
Usage: "previous build sha",
EnvVar: "DRONE_PREV_COMMIT_SHA",
},
}
if err := app.Run(os.Args); err != nil {
logrus.Fatal(err)
}
}
func run(c *cli.Context) error {
plugin := Plugin{
Repo: Repo{
FullName: c.String("repo.fullname"),
Owner: c.String("repo.owner"),
Name: c.String("repo.name"),
Link: c.String("repo.link"),
},
Build: Build{
Commit: c.String("commit.sha"),
Branch: c.String("commit.branch"),
Ref: c.String("commit.ref"),
Link: c.String("commit.link"),
Message: c.String("commit.message"),
Author: c.String("commit.author.name"),
Email: c.String("commit.author.email"),
Number: c.Int("build.number"),
Status: c.String("build.status"),
Event: c.String("build.event"),
Deploy: c.String("build.deploy"),
BuildLink: c.String("build.link"),
},
BuildLast: Build{
Number: c.Int("prev.build.number"),
Status: c.String("prev.build.status"),
Commit: c.String("prev.commit.sha"),
},
Config: Config{
Token: c.String("token"),
Channel: c.String("channel"),
Mapping: c.String("mapping"),
Success: MessageOptions{
Username: c.String("success_username"),
Icon: c.String("success_icon"),
Template: c.String("success_template"),
ImageAttachments: c.StringSlice("success_image_attachments"),
},
Failure: MessageOptions{
Username: c.String("failure_username"),
Icon: c.String("failure_icon"),
Template: c.String("failure_template"),
ImageAttachments: c.StringSlice("failure_image_attachments"),
},
},
}
if plugin.Config.Token == "" {
return errors.New("Missing authentication token")
}
return plugin.Exec()
}