-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgithub.go
272 lines (236 loc) · 6.69 KB
/
github.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
package main
import (
"context"
"errors"
"fmt"
"slices"
"sort"
"strings"
"unicode/utf8"
"github.com/google/go-cmp/cmp"
"github.com/google/go-github/v56/github"
tfjson "github.com/hashicorp/terraform-json"
"github.com/shurcooL/githubv4"
)
func makeIssueComment(plan *tfjson.Plan, runURL, commitURL string) (string, error) {
const (
tasksBadgeURL = `<!-- runtasks-pr-comment -->
[](https://developer.hashicorp.com/terraform/cloud-docs/workspaces/settings/run-tasks)`
runBadgeURL = `[](%s)`
description = `This run task was triggered by %s.`
title = `### Terraform Cloud/Enterprise Plan Output`
noChanges = "```\nNo changes. Your infrastructure matches the configuration.\n```"
changeDetails = "<details>\n<summary>%s</summary>\n\n```go\n%s\n```\n</details>"
exceededDetails = "```\nThe results are too long, so please directly check them on TFC/E.\n```"
maxLimitWithDelta = 65536 - 1000
)
var b strings.Builder
b.WriteString(tasksBadgeURL)
fmt.Fprintf(&b, " ")
fmt.Fprintf(&b, runBadgeURL, runURL)
b.WriteString("\n\n")
fmt.Fprintf(&b, description, commitURL)
b.WriteString("\n\n")
b.WriteString(title)
b.WriteString("\n")
changes := plan.ResourceChanges
if len(changes) == 0 {
b.WriteString(noChanges)
return b.String(), nil
}
cs := &ChangeSummary{}
var diff strings.Builder
for _, c := range changes {
if c.Change == nil {
b.WriteString(noChanges)
return b.String(), nil
}
if c.Change.Importing != nil {
cs.Import++
continue
}
for _, a := range c.Change.Actions {
switch a {
case tfjson.ActionCreate:
cs.Add++
case tfjson.ActionUpdate:
cs.Change++
case tfjson.ActionDelete:
cs.Remove++
}
}
action := UnmarshalActions(c.Change.Actions)
if action == NoOp {
continue
}
summary := fmt.Sprintf("%s %s", action.Symbol(), c.Address)
detail := fmt.Sprintf(
"%s %s %s",
action.Symbol(),
fmt.Sprintf("%s \"%s\" \"%s\"", "resource", c.Type, c.Name),
cmp.Diff(
maskSensitiveValues(c.Change.Before, c.Change.BeforeSensitive),
maskSensitiveValues(c.Change.After, c.Change.AfterSensitive),
),
)
diff.WriteString(fmt.Sprintf(changeDetails, summary, detail))
diff.WriteString("\n\n")
}
outputs := plan.OutputChanges
var oDiff strings.Builder
var oCount int
if len(outputs) > 0 {
keys := make([]string, 0, len(plan.OutputChanges))
for k := range plan.OutputChanges {
keys = append(keys, k)
}
sort.Strings(keys)
for _, key := range keys {
output := outputs[key]
action := UnmarshalActions(output.Actions)
if action == NoOp {
continue
}
oCount += 1
detail := fmt.Sprintf(
"%s %s: %s\n",
action.Symbol(),
key,
cmp.Diff(
maskSensitiveValues(output.Before, output.BeforeSensitive),
maskSensitiveValues(output.After, output.AfterSensitive),
),
)
oDiff.WriteString(detail)
}
}
// https://github.com/orgs/community/discussions/41331
size := utf8.RuneCountInString(diff.String()) + utf8.RuneCountInString(oDiff.String())
if size > maxLimitWithDelta {
b.WriteString(exceededDetails)
return b.String(), nil
}
b.WriteString(fmt.Sprintf("```\n%s\n```", cs.String()))
b.WriteString("\n\n")
b.WriteString(diff.String())
if len(outputs) == 0 {
return b.String(), nil
}
oSummary := fmt.Sprintf("Outputs %d planned to change", oCount)
b.WriteString(fmt.Sprintf(changeDetails, oSummary, oDiff.String()))
return b.String(), nil
}
const maskedValue = "Sensitive value"
func maskSensitiveValues(data, sensitive interface{}) interface{} {
switch sensitive.(type) {
case bool:
if sensitive.(bool) && data != nil {
data = maskedValue
}
case map[string]interface{}:
d := data.(map[string]interface{})
s := sensitive.(map[string]interface{})
for k, v := range d {
if _, ok := s[k]; !ok {
continue
}
switch s[k].(type) {
case bool:
if _, ok := d[k]; ok && d[k] != nil {
d[k] = maskedValue
}
case map[string]interface{}:
if nestedData, ok := v.(map[string]interface{}); ok {
maskSensitiveValues(nestedData, s[k].(map[string]interface{}))
}
case []interface{}:
if !slices.Contains(s[k].([]interface{}), true) {
continue
}
if d[k] != nil {
d[k] = maskedValue
}
}
}
}
return data
}
func createIssueComment(ctx context.Context, client *github.Client, owner, repo string, prNumber int, body string) error {
_, _, err := client.Issues.CreateComment(
ctx,
owner,
repo,
prNumber,
&github.IssueComment{
Body: &body,
},
)
return err
}
type issueCommentQuery struct {
ID githubv4.ID
Author struct {
Login githubv4.String
}
Body githubv4.String
IsMinimized githubv4.Boolean
}
type issueCommentsQuery struct {
Nodes []issueCommentQuery
}
type pullRequestCommentQuery struct {
Repository struct {
PullRequest struct {
Comments issueCommentsQuery `graphql:"comments(last: 100)"`
} `graphql:"pullRequest(number: $prNumber)"`
} `graphql:"repository(owner: $repositoryOwner, name: $repositoryName)"`
}
var errNotFound = errors.New("not found")
func findLatestComment(ctx context.Context, client *githubv4.Client, owner, repo string, prNumber int) (*issueCommentQuery, error) {
variables := map[string]interface{}{
"repositoryOwner": githubv4.String(owner),
"repositoryName": githubv4.String(repo),
"prNumber": githubv4.Int(prNumber),
}
var q pullRequestCommentQuery
if err := client.Query(ctx, &q, variables); err != nil {
return nil, err
}
comment := filterLatestComment(q.Repository.PullRequest.Comments.Nodes)
if comment == nil {
return nil, errNotFound
}
return comment, nil
}
func filterLatestComment(comments []issueCommentQuery) *issueCommentQuery {
const tag = "<!-- runtasks-pr-comment -->"
for i := range comments {
comment := comments[len(comments)-i-1]
if strings.HasPrefix(string(comment.Body), tag) {
return &comment
}
}
return nil
}
type minimizeCommentMutation struct {
MinimizeComment struct {
MinimizedComment struct {
IsMinimized bool
}
} `graphql:"minimizeComment(input: $input)"`
}
func minimizeComment(ctx context.Context, client *githubv4.Client, id githubv4.ID, classifier string) error {
var m minimizeCommentMutation
input := githubv4.MinimizeCommentInput{
SubjectID: id,
Classifier: githubv4.ReportedContentClassifiers(classifier),
ClientMutationID: nil,
}
if err := client.Mutate(ctx, &m, input, nil); err != nil {
return err
}
if !m.MinimizeComment.MinimizedComment.IsMinimized {
return fmt.Errorf("cannot minimize comment. id: %s, classifier: %s", id, classifier)
}
return nil
}