14
14
import java .util .Map ;
15
15
import java .util .Optional ;
16
16
import java .util .Properties ;
17
- import java .util .function .Supplier ;
18
17
import java .util .regex .Matcher ;
19
18
import java .util .regex .Pattern ;
20
19
import java .util .stream .Stream ;
21
20
22
21
import static com .gradle .Utils .appendIfMissing ;
23
22
import static com .gradle .Utils .execAndCheckSuccess ;
24
- import static com .gradle .Utils .execAndGetStdOut ;
25
- import static com .gradle .Utils .isNotEmpty ;
26
23
import static com .gradle .Utils .redactUserInfo ;
27
24
import static com .gradle .Utils .urlEncode ;
28
-
29
25
/**
30
26
* Adds a standard set of useful tags, links and custom values to all build scans published.
31
27
*/
@@ -302,44 +298,35 @@ private CaptureGitMetadataAction(ProviderFactory providers, CustomValueSearchLin
302
298
303
299
@ Override
304
300
public void execute (BuildScanExtension buildScan ) {
305
- if (!isGitInstalled ()) {
306
- return ;
307
- }
308
-
309
- String gitRepo = execAndGetStdOut ("git" , "config" , "--get" , "remote.origin.url" );
310
- String gitCommitId = execAndGetStdOut ("git" , "rev-parse" , "--verify" , "HEAD" );
311
- String gitCommitShortId = execAndGetStdOut ("git" , "rev-parse" , "--short=8" , "--verify" , "HEAD" );
312
- String gitBranchName = getGitBranchName (() -> execAndGetStdOut ("git" , "rev-parse" , "--abbrev-ref" , "HEAD" ));
313
- String gitStatus = execAndGetStdOut ("git" , "status" , "--porcelain" );
314
-
315
- if (isNotEmpty (gitRepo )) {
316
- buildScan .value ("Git repository" , redactUserInfo (gitRepo ));
317
- }
318
- if (isNotEmpty (gitCommitId )) {
319
- buildScan .value ("Git commit id" , gitCommitId );
320
- }
321
- if (isNotEmpty (gitCommitShortId )) {
322
- customValueSearchLinker .addCustomValueAndSearchLink ("Git commit id" , "Git commit id short" , gitCommitShortId );
323
- }
324
- if (isNotEmpty (gitBranchName )) {
325
- buildScan .tag (gitBranchName );
326
- buildScan .value ("Git branch" , gitBranchName );
327
- }
328
- if (isNotEmpty (gitStatus )) {
301
+ GitMetadata .GitMetadataBuilder builder = new GitMetadata .GitMetadataBuilder (isGitInstalled ());
302
+ Optional <String > gitRepo = builder .fromCmd ("git" , "config" , "--get" , "remote.origin.url" ).build ().resolve ();
303
+ Optional <String > gitCommitId = builder .fromCmd ("git" , "rev-parse" , "--verify" , "HEAD" ).build ().resolve ();
304
+ Optional <String > gitCommitShortId = builder .fromCmd ("git" , "rev-parse" , "--short=8" , "--verify" , "HEAD" ).build ().resolve ();
305
+ Optional <String > gitStatus = builder .fromCmd ( "git" , "status" , "--porcelain" ).build ().resolve ();
306
+ Optional <String > gitBranchName = builder .fromCmd ("git" , "rev-parse" , "--abbrev-ref" , "HEAD" ).fromEnv (this ::getGitBranchNameFromEnv ).build ().resolve ();
307
+
308
+ gitRepo .ifPresent (s -> buildScan .value ("Git repository" , redactUserInfo (s )));
309
+ gitCommitId .ifPresent (s -> buildScan .value ("Git commit id" , s ));
310
+ gitCommitShortId .ifPresent (s -> customValueSearchLinker .addCustomValueAndSearchLink ("Git commit id" , "Git commit id short" , s ));
311
+ gitBranchName .ifPresent (s -> {
312
+ buildScan .tag (s );
313
+ buildScan .value ("Git branch" , s );
314
+ });
315
+ gitStatus .ifPresent (s -> {
329
316
buildScan .tag ("Dirty" );
330
- buildScan .value ("Git status" , gitStatus );
331
- }
317
+ buildScan .value ("Git status" , s );
318
+ });
332
319
333
- if (isNotEmpty ( gitRepo ) && isNotEmpty ( gitCommitId )) {
334
- if (gitRepo .contains ("github.com/" ) || gitRepo .contains ("github.com:" )) {
335
- Matcher matcher = Pattern .compile ("(.*)github\\ .com[/|:](.*)" ).matcher (gitRepo );
320
+ if (gitRepo . isPresent ( ) && gitCommitId . isPresent ( )) {
321
+ if (gitRepo .get (). contains ("github.com/" ) || gitRepo . get () .contains ("github.com:" )) {
322
+ Matcher matcher = Pattern .compile ("(.*)github\\ .com[/|:](.*)" ).matcher (gitRepo . get () );
336
323
if (matcher .matches ()) {
337
324
String rawRepoPath = matcher .group (2 );
338
325
String repoPath = rawRepoPath .endsWith (".git" ) ? rawRepoPath .substring (0 , rawRepoPath .length () - 4 ) : rawRepoPath ;
339
326
buildScan .link ("Github source" , "https://github.com/" + repoPath + "/tree/" + gitCommitId );
340
327
}
341
- } else if (gitRepo .contains ("gitlab.com/" ) || gitRepo .contains ("gitlab.com:" )) {
342
- Matcher matcher = Pattern .compile ("(.*)gitlab\\ .com[/|:](.*)" ).matcher (gitRepo );
328
+ } else if (gitRepo .get (). contains ("gitlab.com/" ) || gitRepo . get () .contains ("gitlab.com:" )) {
329
+ Matcher matcher = Pattern .compile ("(.*)gitlab\\ .com[/|:](.*)" ).matcher (gitRepo . get () );
343
330
if (matcher .matches ()) {
344
331
String rawRepoPath = matcher .group (2 );
345
332
String repoPath = rawRepoPath .endsWith (".git" ) ? rawRepoPath .substring (0 , rawRepoPath .length () - 4 ) : rawRepoPath ;
@@ -353,24 +340,15 @@ private boolean isGitInstalled() {
353
340
return execAndCheckSuccess ("git" , "--version" );
354
341
}
355
342
356
- private String getGitBranchName ( Supplier <String > gitCommand ) {
343
+ private Optional <String > getGitBranchNameFromEnv ( ) {
357
344
if (isJenkins () || isHudson ()) {
358
- Optional <String > branch = Utils .envVariable ("BRANCH_NAME" , providers );
359
- if (branch .isPresent ()) {
360
- return branch .get ();
361
- }
345
+ return Utils .envVariable ("BRANCH_NAME" , providers );
362
346
} else if (isGitLab ()) {
363
- Optional <String > branch = Utils .envVariable ("CI_COMMIT_REF_NAME" , providers );
364
- if (branch .isPresent ()) {
365
- return branch .get ();
366
- }
347
+ return Utils .envVariable ("CI_COMMIT_REF_NAME" , providers );
367
348
} else if (isAzurePipelines ()) {
368
- Optional <String > branch = Utils .envVariable ("BUILD_SOURCEBRANCH" , providers );
369
- if (branch .isPresent ()) {
370
- return branch .get ();
371
- }
349
+ return Utils .envVariable ("BUILD_SOURCEBRANCH" , providers );
372
350
}
373
- return gitCommand . get ();
351
+ return Optional . empty ();
374
352
}
375
353
376
354
private boolean isJenkins () {
0 commit comments