-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathSonarInstallation.java
More file actions
269 lines (234 loc) · 7.48 KB
/
SonarInstallation.java
File metadata and controls
269 lines (234 loc) · 7.48 KB
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
/*
* SonarQube Scanner for Jenkins
* Copyright (C) 2007-2025 SonarSource Sàrl
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package hudson.plugins.sonar;
import com.cloudbees.plugins.credentials.CredentialsProvider;
import edu.umd.cs.findbugs.annotations.CheckForNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import hudson.AbortException;
import hudson.Util;
import hudson.model.Run;
import hudson.model.TaskListener;
import hudson.plugins.sonar.model.TriggersConfig;
import hudson.util.Secret;
import java.io.Serializable;
import org.apache.commons.lang3.StringUtils;
import org.jenkinsci.plugins.plaincredentials.StringCredentials;
import org.kohsuke.stapler.DataBoundConstructor;
public class SonarInstallation implements Serializable {
private static final long serialVersionUID = 1L;
private final String name;
private final String serverUrl;
/**
* @since 2.9
*/
private String credentialsId;
/**
* @since 2.10
*/
private String webhookSecretId;
/**
* @deprecated since 2.9 replaced by {@link #credentialsId}
*/
@Deprecated
private Secret serverAuthenticationToken;
/**
* @since 1.5
*/
private String mojoVersion;
// command line arguments
private final String additionalProperties;
// key/value pairs
private final String additionalAnalysisProperties;
private TriggersConfig triggers;
private String[] split;
/**
* Maintained to retain compatibility
* @deprecated since 2.9
*/
@Deprecated
public SonarInstallation(String name,
String serverUrl, String serverAuthenticationToken,
String mojoVersion, String additionalProperties, TriggersConfig triggers,
String additionalAnalysisProperties) {
this(name, serverUrl, null, Secret.fromString(StringUtils.trimToNull(serverAuthenticationToken)), null,
mojoVersion, additionalProperties, additionalAnalysisProperties, triggers);
}
@DataBoundConstructor
public SonarInstallation(
String name,
String serverUrl,
@CheckForNull String credentialsId,
@CheckForNull Secret serverAuthenticationToken,
@CheckForNull String webhookSecretId,
@CheckForNull String mojoVersion,
@CheckForNull String additionalProperties,
@CheckForNull String additionalAnalysisProperties,
@CheckForNull TriggersConfig triggers) {
this.name = name;
this.serverUrl = serverUrl;
this.credentialsId = credentialsId;
this.serverAuthenticationToken = serverAuthenticationToken;
this.webhookSecretId = webhookSecretId;
this.additionalAnalysisProperties = additionalAnalysisProperties;
this.mojoVersion = mojoVersion;
this.additionalProperties = additionalProperties;
this.triggers = triggers;
}
/**
* @return all available installations, never null but can be empty.
* @since 1.7
*/
public static final SonarInstallation[] all() {
return SonarGlobalConfiguration.get().getInstallations();
}
public static boolean isValid(String sonarInstallationName, TaskListener listener) {
String failureMsg = validationMsg(sonarInstallationName);
if (failureMsg != null) {
listener.fatalError(failureMsg);
return false;
}
return true;
}
public static void checkValid(String sonarInstallationName) throws AbortException {
String failureMsg = validationMsg(sonarInstallationName);
if (failureMsg != null) {
throw new AbortException(failureMsg);
}
}
private static String validationMsg(String sonarInstallationName) {
String failureMsg;
SonarInstallation sonarInstallation = SonarInstallation.get(sonarInstallationName);
if (sonarInstallation == null) {
if (StringUtils.isBlank(sonarInstallationName)) {
failureMsg = Messages.SonarInstallation_NoInstallation(SonarInstallation.all().length);
} else {
failureMsg = Messages.SonarInstallation_NoMatchInstallation(sonarInstallationName, SonarInstallation.all().length);
}
failureMsg += "\n" + Messages.SonarInstallation_FixInstallationTip();
} else {
failureMsg = null;
}
return failureMsg;
}
/**
* @return installation by name, null if not found
* @since 1.7
*/
public static SonarInstallation get(@Nullable String name) {
SonarInstallation[] available = all();
if (StringUtils.isEmpty(name) && available.length > 0) {
return available[0];
}
for (SonarInstallation si : available) {
if (StringUtils.equals(name, si.getName())) {
return si;
}
}
return null;
}
public String getName() {
return name;
}
public String getServerUrl() {
return serverUrl;
}
/**
* @since 2.9
*/
@CheckForNull
public String getServerAuthenticationToken(Run<?, ?> build) {
if (credentialsId == null || build == null) {
return null;
}
StringCredentials cred = this.getCredentials(build);
if (cred == null) {
return null;
}
return cred.getSecret().getPlainText();
}
public StringCredentials getCredentials(Run<?, ?> build) {
return CredentialsProvider.findCredentialById(credentialsId, StringCredentials.class, build);
}
/**
* @since 2.9
*/
@SuppressWarnings("unused")
public String getCredentialsId() {
return credentialsId;
}
/**
* @since 2.10
*/
@SuppressWarnings("unused")
public String getWebhookSecretId() {
return webhookSecretId;
}
/**
* @return version of sonar-maven-plugin to use
* @since 1.5
*/
@CheckForNull
public String getMojoVersion() {
return mojoVersion;
}
@CheckForNull
public String getAdditionalProperties() {
return additionalProperties;
}
@CheckForNull
public String getAdditionalAnalysisProperties() {
return additionalAnalysisProperties;
}
public String[] getAdditionalAnalysisPropertiesWindows() {
if (additionalAnalysisProperties == null) {
return new String[0];
}
split = StringUtils.split(additionalAnalysisProperties);
for (int i = 0; i < split.length; i++) {
split[i] = "/d:" + split[i];
}
return split;
}
public String[] getAdditionalAnalysisPropertiesUnix() {
if (additionalAnalysisProperties == null) {
return new String[0];
}
split = StringUtils.split(additionalAnalysisProperties);
for (int i = 0; i < split.length; i++) {
split[i] = "-D" + split[i];
}
return split;
}
public TriggersConfig getTriggers() {
if (triggers == null) {
triggers = new TriggersConfig();
}
return triggers;
}
@SuppressWarnings("deprecation")
void migrateTokenToCredential() {
if (this.serverAuthenticationToken != null) {
if (Util.fixEmpty(this.serverAuthenticationToken.getPlainText()) != null) {
this.credentialsId = new GlobalCredentialMigrator().migrate(this.serverAuthenticationToken.getPlainText()).getId();
}
this.serverAuthenticationToken = null;
}
}
}