-
Notifications
You must be signed in to change notification settings - Fork 65
/
sonarqubescanner.groovy
executable file
·103 lines (93 loc) · 3.67 KB
/
sonarqubescanner.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
91
92
93
94
95
96
97
98
99
100
101
102
#!./lib/runner.groovy
// Generates server-side metadata for Sonar Runner
import org.htmlunit.WebClient
import org.htmlunit.html.HtmlAnchor
import org.htmlunit.html.HtmlPage
import java.util.regex.Pattern
import net.sf.json.JSONObject
import hudson.util.VersionNumber
def listFromOldCodehausURL() {
def url = "https://repo1.maven.org/maven2/org/codehaus/sonar-plugins/sonar-runner/";
def wc = new WebClient()
wc.setCssErrorHandler(new org.htmlunit.SilentCssErrorHandler());
wc.getOptions().setJavaScriptEnabled(false);
wc.getOptions().setThrowExceptionOnScriptError(false);
wc.getOptions().setThrowExceptionOnFailingStatusCode(false);
HtmlPage p = wc.getPage(url);
def pattern=Pattern.compile("^([0-9][0-9\\.]+)/\$");
return p.getAnchors().collect { HtmlAnchor a ->
m = pattern.matcher(a.hrefAttribute)
println(a.hrefAttribute)
if(m.find()) {
ver=m.group(1)
url = p.getFullyQualifiedUrl(a.hrefAttribute + "sonar-runner-" + ver + ".zip");
return ["id":ver, "name": "SonarQube Scanner " + ver, "url":url.toExternalForm()]
}
return null;
}
}
def listFromNewCodehausUrl() {
def url = "https://repo1.maven.org/maven2/org/codehaus/sonar/runner/sonar-runner-dist/";
def wc = new WebClient()
wc.setCssErrorHandler(new org.htmlunit.SilentCssErrorHandler());
wc.getOptions().setJavaScriptEnabled(false);
wc.getOptions().setThrowExceptionOnScriptError(false);
wc.getOptions().setThrowExceptionOnFailingStatusCode(false);
HtmlPage p = wc.getPage(url);
def pattern = Pattern.compile("^([0-9][0-9\\.]+)/");
return p.getAnchors().collect { HtmlAnchor a ->
m = pattern.matcher(a.hrefAttribute)
println(a.hrefAttribute)
if(m.find()) {
ver=m.group(1)
url = p.getFullyQualifiedUrl(a.hrefAttribute + "sonar-runner-dist-" + ver + ".zip");
return ["id":ver, "name": "SonarQube Scanner " + ver, "url":url.toExternalForm()]
}
return null;
}
}
def listFromNewSonarSourceUrl() {
def url = "https://repo1.maven.org/maven2/org/sonarsource/scanner/cli/sonar-scanner-cli/";
def wc = new WebClient()
wc.setCssErrorHandler(new org.htmlunit.SilentCssErrorHandler());
wc.getOptions().setJavaScriptEnabled(false);
wc.getOptions().setThrowExceptionOnScriptError(false);
wc.getOptions().setThrowExceptionOnFailingStatusCode(false);
HtmlPage p = wc.getPage(url);
def pattern = Pattern.compile("^([0-9][0-9\\.]+)/");
return p.getAnchors().collect { HtmlAnchor a ->
m = pattern.matcher(a.hrefAttribute)
println(a.hrefAttribute)
if(m.find()) {
ver=m.group(1)
url = p.getFullyQualifiedUrl(a.hrefAttribute + "sonar-scanner-cli-" + ver + ".zip");
return ["id":ver, "name": "SonarQube Scanner " + ver, "url":url.toExternalForm()]
}
return null;
}
}
def listAll() {
return (listFromOldCodehausURL() + listFromNewCodehausUrl() + listFromNewSonarSourceUrl())
.findAll { it!=null }.sort { o1,o2 ->
try {
def v1 = new VersionNumber(o1.id)
try {
new VersionNumber(o2.id).compareTo(v1)
} catch (IllegalArgumentException _2) {
-1
}
} catch (IllegalArgumentException _1) {
try {
new VersionNumber(o2.id)
1
} catch (IllegalArgumentException _2) {
o2.id.compareTo(o1.id)
}
}
}
}
def store(key,o) {
JSONObject envelope = JSONObject.fromObject(["list": o]);
lib.DataWriter.write(key,envelope);
}
store("hudson.plugins.sonar.SonarRunnerInstaller", listAll())