forked from samrocketman/jenkins-script-console-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notify-github-pr-comment.groovy
90 lines (82 loc) · 3.73 KB
/
notify-github-pr-comment.groovy
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
/*
Copyright (c) 2015-2018 Sam Gleske - https://github.com/samrocketman/jenkins-script-console-scripts
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
Post a comment to GitHub or update an existing comment.
Features:
- Credentials stored in Jenkins.
- Takes advantage of core Groovy features without utilizing any plugins
other than the credenials plugin.
*/
import com.cloudbees.plugins.credentials.SystemCredentialsProvider
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
import hudson.util.Secret
import java.util.regex.Pattern
import org.jenkinsci.plugins.plaincredentials.impl.StringCredentialsImpl
Secret getStringCredential(String id) {
Secret secret = SystemCredentialsProvider.getInstance().credentials.find {
it in StringCredentialsImpl && it.id == id
}?.secret
if(!secret) {
throw new RuntimeException("Could not find a String Credential with the id '${id}'")
}
secret
}
Integer findCommentIdByUser(String credential, String repository, String pr_number, String username, String expression = '') {
Secret gh_token = getStringCredential(credential)
String api_endpoint = "https://api.github.com/repos/${repository}/issues/${pr_number}/comments"
Reader reader = new URL(api_endpoint).newReader(requestProperties: ['Authorization': "token ${gh_token}".toString(), 'Accept': 'application/vnd.github.v3+json'])
new JsonSlurper().parse(reader).find {
it?.user?.login == username && (
!expression || Pattern.compile(expression, Pattern.MULTILINE | Pattern.DOTALL).matcher(it?.body).matches()
)
}?.id ?: 0
}
void postGHPRComment(String credential, String repository, String pr_number, String message, Integer comment_id = 0) {
Secret gh_token = getStringCredential(credential)
String method = 'POST'
Map data = [
body: message
]
String api_endpoint = "https://api.github.com/repos/${repository}/issues"
if(comment_id) {
api_endpoint += "/comments/${comment_id}"
method = 'PATCH'
}
else {
api_endpoint += "/${pr_number}/comments"
}
String result = new URL(api_endpoint).openConnection().with {
doOutput = true
requestMethod = method
setRequestProperty('Authorization', "token ${gh_token}".toString())
setRequestProperty('Accept', 'application/vnd.github.v3+json')
outputStream.withWriter { writer ->
writer << JsonOutput.toJson(data)
}
content.text
}
//nothing to do with result
}
String message = '''
# heading 1
This is a new kind of comment.
'''.trim()
String pattern = '^# heading 1.*'
int id = findCommentIdByUser('github-token', 'samrocketman/jervis-example-project', '6', 'samrocketman', pattern)
postGHPRComment('github-token', 'samrocketman/jervis-example-project', '6', message, id)