26
26
import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketApi ;
27
27
import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketApiFactory ;
28
28
import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketAuthenticator ;
29
+ import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketCloudWorkspace ;
29
30
import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketRepository ;
30
31
import com .cloudbees .jenkins .plugins .bitbucket .api .BitbucketTeam ;
31
32
import com .cloudbees .jenkins .plugins .bitbucket .client .repository .UserRoleInRepository ;
32
33
import com .cloudbees .jenkins .plugins .bitbucket .endpoints .AbstractBitbucketEndpoint ;
33
34
import com .cloudbees .jenkins .plugins .bitbucket .endpoints .BitbucketCloudEndpoint ;
34
35
import com .cloudbees .jenkins .plugins .bitbucket .endpoints .BitbucketEndpointConfiguration ;
35
36
import com .cloudbees .jenkins .plugins .bitbucket .endpoints .BitbucketServerEndpoint ;
37
+ import com .cloudbees .jenkins .plugins .bitbucket .impl .avatars .BitbucketTeamAvatarMetadataAction ;
36
38
import com .cloudbees .jenkins .plugins .bitbucket .impl .util .BitbucketCredentials ;
37
39
import com .cloudbees .jenkins .plugins .bitbucket .impl .util .MirrorListSupplier ;
38
40
import com .cloudbees .jenkins .plugins .bitbucket .server .BitbucketServerWebhookImplementation ;
39
- import com .cloudbees .jenkins .plugins .bitbucket .server . client . repository . BitbucketServerProject ;
41
+ import com .cloudbees .jenkins .plugins .bitbucket .trait . ShowBitbucketAvatarTrait ;
40
42
import com .cloudbees .plugins .credentials .CredentialsNameProvider ;
41
43
import com .cloudbees .plugins .credentials .common .StandardCredentials ;
42
44
import edu .umd .cs .findbugs .annotations .CheckForNull ;
@@ -323,7 +325,7 @@ public void setPattern(String pattern) {
323
325
@ RestrictedSince ("2.2.0" )
324
326
@ DataBoundSetter
325
327
public void setAutoRegisterHooks (boolean autoRegisterHook ) {
326
- traits .removeIf (trait -> trait instanceof WebhookRegistrationTrait );
328
+ traits .removeIf (WebhookRegistrationTrait . class :: isInstance );
327
329
traits .add (new WebhookRegistrationTrait (
328
330
autoRegisterHook ? WebhookRegistration .ITEM : WebhookRegistration .DISABLE
329
331
));
@@ -334,8 +336,8 @@ public void setAutoRegisterHooks(boolean autoRegisterHook) {
334
336
@ RestrictedSince ("2.2.0" )
335
337
public boolean isAutoRegisterHooks () {
336
338
for (SCMTrait <? extends SCMTrait <?>> t : traits ) {
337
- if (t instanceof WebhookRegistrationTrait ) {
338
- return (( WebhookRegistrationTrait ) t ) .getMode () != WebhookRegistration .DISABLE ;
339
+ if (t instanceof WebhookRegistrationTrait hookTrait ) {
340
+ return hookTrait .getMode () != WebhookRegistration .DISABLE ;
339
341
}
340
342
}
341
343
return true ;
@@ -348,8 +350,8 @@ public boolean isAutoRegisterHooks() {
348
350
@ NonNull
349
351
public String getCheckoutCredentialsId () {
350
352
for (SCMTrait <?> t : traits ) {
351
- if (t instanceof SSHCheckoutTrait ) {
352
- return StringUtils .defaultString ((( SSHCheckoutTrait ) t ) .getCredentialsId (), BitbucketSCMSource
353
+ if (t instanceof SSHCheckoutTrait sshTrait ) {
354
+ return StringUtils .defaultString (sshTrait .getCredentialsId (), BitbucketSCMSource
353
355
.DescriptorImpl .ANONYMOUS );
354
356
}
355
357
}
@@ -361,7 +363,7 @@ public String getCheckoutCredentialsId() {
361
363
@ RestrictedSince ("2.2.0" )
362
364
@ DataBoundSetter
363
365
public void setCheckoutCredentialsId (String checkoutCredentialsId ) {
364
- traits .removeIf (trait -> trait instanceof SSHCheckoutTrait );
366
+ traits .removeIf (SSHCheckoutTrait . class :: isInstance );
365
367
if (checkoutCredentialsId != null && !BitbucketSCMSource .DescriptorImpl .SAME .equals (checkoutCredentialsId )) {
366
368
traits .add (new SSHCheckoutTrait (checkoutCredentialsId ));
367
369
}
@@ -372,8 +374,8 @@ public void setCheckoutCredentialsId(String checkoutCredentialsId) {
372
374
@ RestrictedSince ("2.2.0" )
373
375
public String getPattern () {
374
376
for (SCMTrait <?> trait : traits ) {
375
- if (trait instanceof RegexSCMSourceFilterTrait ) {
376
- return (( RegexSCMSourceFilterTrait ) trait ) .getRegex ();
377
+ if (trait instanceof RegexSCMSourceFilterTrait regexTrait ) {
378
+ return regexTrait .getRegex ();
377
379
}
378
380
}
379
381
return ".*" ;
@@ -421,8 +423,8 @@ public String getEndpointJenkinsRootUrl() {
421
423
@ NonNull
422
424
public String getIncludes () {
423
425
for (SCMTrait <?> trait : traits ) {
424
- if (trait instanceof WildcardSCMHeadFilterTrait ) {
425
- return (( WildcardSCMHeadFilterTrait ) trait ) .getIncludes ();
426
+ if (trait instanceof WildcardSCMHeadFilterTrait wildcardTrait ) {
427
+ return wildcardTrait .getIncludes ();
426
428
}
427
429
}
428
430
return "*" ;
@@ -435,12 +437,11 @@ public String getIncludes() {
435
437
public void setIncludes (@ NonNull String includes ) {
436
438
for (int i = 0 ; i < traits .size (); i ++) {
437
439
SCMTrait <?> trait = traits .get (i );
438
- if (trait instanceof WildcardSCMHeadFilterTrait ) {
439
- WildcardSCMHeadFilterTrait existing = (WildcardSCMHeadFilterTrait ) trait ;
440
- if ("*" .equals (includes ) && "" .equals (existing .getExcludes ())) {
440
+ if (trait instanceof WildcardSCMHeadFilterTrait wildcardTrait ) {
441
+ if ("*" .equals (includes ) && "" .equals (wildcardTrait .getExcludes ())) {
441
442
traits .remove (i );
442
443
} else {
443
- traits .set (i , new WildcardSCMHeadFilterTrait (includes , existing .getExcludes ()));
444
+ traits .set (i , new WildcardSCMHeadFilterTrait (includes , wildcardTrait .getExcludes ()));
444
445
}
445
446
return ;
446
447
}
@@ -456,8 +457,8 @@ public void setIncludes(@NonNull String includes) {
456
457
@ NonNull
457
458
public String getExcludes () {
458
459
for (SCMTrait <?> trait : traits ) {
459
- if (trait instanceof WildcardSCMHeadFilterTrait ) {
460
- return (( WildcardSCMHeadFilterTrait ) trait ) .getExcludes ();
460
+ if (trait instanceof WildcardSCMHeadFilterTrait wildcardTrait ) {
461
+ return wildcardTrait .getExcludes ();
461
462
}
462
463
}
463
464
return "" ;
@@ -470,12 +471,11 @@ public String getExcludes() {
470
471
public void setExcludes (@ NonNull String excludes ) {
471
472
for (int i = 0 ; i < traits .size (); i ++) {
472
473
SCMTrait <?> trait = traits .get (i );
473
- if (trait instanceof WildcardSCMHeadFilterTrait ) {
474
- WildcardSCMHeadFilterTrait existing = (WildcardSCMHeadFilterTrait ) trait ;
475
- if ("*" .equals (existing .getIncludes ()) && "" .equals (excludes )) {
474
+ if (trait instanceof WildcardSCMHeadFilterTrait wildcardTrait ) {
475
+ if ("*" .equals (wildcardTrait .getIncludes ()) && "" .equals (excludes )) {
476
476
traits .remove (i );
477
477
} else {
478
- traits .set (i , new WildcardSCMHeadFilterTrait (existing .getIncludes (), excludes ));
478
+ traits .set (i , new WildcardSCMHeadFilterTrait (wildcardTrait .getIncludes (), excludes ));
479
479
}
480
480
return ;
481
481
}
@@ -569,37 +569,39 @@ public List<Action> retrieveActions(@NonNull SCMNavigatorOwner owner,
569
569
570
570
BitbucketAuthenticator authenticator = AuthenticationTokens .convert (BitbucketAuthenticator .authenticationContext (serverUrl ), credentials );
571
571
572
- BitbucketApi bitbucket = BitbucketApiFactory .newInstance (serverUrl , authenticator , repoOwner , null , null );
573
- BitbucketTeam team = bitbucket .getTeam ();
574
- if (team != null ) {
575
- String defaultTeamUrl ;
576
- if (team instanceof BitbucketServerProject ) {
577
- defaultTeamUrl = serverUrl + "/projects/" + team .getName ();
572
+ try (BitbucketApi client = BitbucketApiFactory .newInstance (serverUrl , authenticator , repoOwner , projectKey , null )) {
573
+ BitbucketTeam team = client .getTeam ();
574
+ String avatarURL = null ;
575
+ String teamURL ;
576
+ String teamDisplayName ;
577
+ if (team != null ) {
578
+ if (showAvatar ()) {
579
+ avatarURL = team .getAvatar ();
580
+ }
581
+ teamURL = team .getLink ("html" );
582
+ teamDisplayName = StringUtils .defaultIfBlank (team .getDisplayName (), team .getName ());
583
+ if (StringUtils .isNotBlank (teamURL )) {
584
+ if (team instanceof BitbucketCloudWorkspace wks ) {
585
+ teamURL = serverUrl + "/" + wks .getSlug ();
586
+ } else {
587
+ teamURL = serverUrl + "/projects/" + team .getName ();
588
+ }
589
+ }
590
+ listener .getLogger ().printf ("Team: %s%n" , HyperlinkNote .encodeTo (teamURL , teamDisplayName ));
578
591
} else {
579
- defaultTeamUrl = serverUrl + "/" + team .getName ();
592
+ teamURL = serverUrl + "/" + repoOwner ;
593
+ teamDisplayName = repoOwner ;
594
+ listener .getLogger ().println ("Could not resolve team details" );
580
595
}
581
- String teamUrl = StringUtils .defaultIfBlank (team .getLink ("html" ), defaultTeamUrl );
582
- String teamDisplayName = StringUtils .defaultIfBlank (team .getDisplayName (), team .getName ());
583
- result .add (new ObjectMetadataAction (
584
- teamDisplayName ,
585
- null ,
586
- teamUrl
587
- ));
588
- result .add (new BitbucketTeamMetadataAction (serverUrl , credentials , team .getName ()));
589
- result .add (new BitbucketLink ("icon-bitbucket-logo" , teamUrl ));
590
- listener .getLogger ().printf ("Team: %s%n" , HyperlinkNote .encodeTo (teamUrl , teamDisplayName ));
591
- } else {
592
- String teamUrl = serverUrl + "/" + repoOwner ;
593
- result .add (new ObjectMetadataAction (
594
- repoOwner ,
595
- null ,
596
- teamUrl
597
- ));
598
- result .add (new BitbucketTeamMetadataAction (null , null , null ));
599
- result .add (new BitbucketLink ("icon-bitbucket-logo" , teamUrl ));
600
- listener .getLogger ().println ("Could not resolve team details" );
596
+ result .add (new ObjectMetadataAction (teamDisplayName , null , teamURL ));
597
+ result .add (new BitbucketTeamAvatarMetadataAction (avatarURL , serverUrl , owner .getFullName (), credentialsId ));
598
+ result .add (new BitbucketLink ("icon-bitbucket-logo" , teamURL ));
599
+ return result ;
601
600
}
602
- return result ;
601
+ }
602
+
603
+ private boolean showAvatar () {
604
+ return traits .stream ().anyMatch (ShowBitbucketAvatarTrait .class ::isInstance );
603
605
}
604
606
605
607
@ Symbol ("bitbucket" )
@@ -629,7 +631,6 @@ public String getIconClassName() {
629
631
return "icon-bitbucket-scm-navigator" ;
630
632
}
631
633
632
- @ SuppressWarnings ("unchecked" )
633
634
@ Override
634
635
public SCMNavigator newInstance (String name ) {
635
636
BitbucketSCMNavigator instance = new BitbucketSCMNavigator (StringUtils .defaultString (name ));
@@ -708,7 +709,7 @@ public List<NamedArrayList<? extends SCMTraitDescriptor<?>>> getTraitsDescriptor
708
709
}
709
710
}
710
711
List <NamedArrayList <? extends SCMTraitDescriptor <?>>> result = new ArrayList <>();
711
- NamedArrayList .select (all , "Repositories" , it -> it instanceof SCMNavigatorTraitDescriptor , true , result );
712
+ NamedArrayList .select (all , "Repositories" , SCMNavigatorTraitDescriptor . class :: isInstance , true , result );
712
713
NamedArrayList .select (all , "Within repository" , NamedArrayList
713
714
.anyOf (NamedArrayList .withAnnotation (Discovery .class ),
714
715
NamedArrayList .withAnnotation (Selection .class )),
0 commit comments