use of com.cloudbees.plugins.credentials.domains.URIRequirementBuilder in project gitea-plugin by jenkinsci.
the class GiteaSCMBuilder method checkoutUriTemplate.
/**
* Returns a {@link UriTemplate} for checkout according to credentials configuration.
* Expects the parameters {@code owner} and {@code repository} to be populated before expansion.
*
* @param context the context within which to resolve the credentials.
* @param serverUrl the server url
* @param sshRemote any valid SSH remote URL for the server.
* @param credentialsId the credentials.
* @return a {@link UriTemplate}
*/
public static UriTemplate checkoutUriTemplate(@CheckForNull Item context, @NonNull String serverUrl, @CheckForNull String sshRemote, @CheckForNull String credentialsId) {
if (credentialsId != null && sshRemote != null) {
URIRequirementBuilder builder = URIRequirementBuilder.create();
URI serverUri = URI.create(serverUrl);
if (serverUri.getHost() != null) {
builder.withHostname(serverUri.getHost());
}
StandardCredentials credentials = CredentialsMatchers.firstOrNull(CredentialsProvider.lookupCredentials(StandardCredentials.class, context, context instanceof Queue.Task ? Tasks.getDefaultAuthenticationOf((Queue.Task) context) : ACL.SYSTEM, builder.build()), CredentialsMatchers.allOf(CredentialsMatchers.withId(credentialsId), CredentialsMatchers.instanceOf(StandardCredentials.class)));
if (credentials instanceof SSHUserPrivateKey) {
int atIndex = sshRemote.indexOf('@');
int colonIndex = sshRemote.indexOf(':');
if (atIndex != -1 && colonIndex != -1 && atIndex < colonIndex) {
// this is an scp style url, we will translate to ssh style
return UriTemplate.buildFromTemplate("ssh://" + sshRemote.substring(0, colonIndex)).path(UriTemplateBuilder.var("owner")).path(UriTemplateBuilder.var("repository")).literal(".git").build();
}
URI sshUri = URI.create(sshRemote);
return UriTemplate.buildFromTemplate("ssh://git@" + sshUri.getHost() + (sshUri.getPort() != 22 ? ":" + sshUri.getPort() : "")).path(UriTemplateBuilder.var("owner")).path(UriTemplateBuilder.var("repository")).literal(".git").build();
}
if (credentials instanceof PersonalAccessToken) {
try {
// TODO is there a way we can get git plugin to redact the secret?
URI tokenUri = new URI(serverUri.getScheme(), ((PersonalAccessToken) credentials).getToken().getPlainText(), serverUri.getHost(), serverUri.getPort(), serverUri.getPath(), serverUri.getQuery(), serverUri.getFragment());
return UriTemplate.buildFromTemplate(tokenUri.toASCIIString()).path(UriTemplateBuilder.var("owner")).path(UriTemplateBuilder.var("repository")).literal(".git").build();
} catch (URISyntaxException e) {
// ok we are at the end of the road
}
}
}
return UriTemplate.buildFromTemplate(serverUrl).path(UriTemplateBuilder.var("owner")).path(UriTemplateBuilder.var("repository")).literal(".git").build();
}
use of com.cloudbees.plugins.credentials.domains.URIRequirementBuilder in project gitlab-branch-source-plugin by Argelbargel.
the class SettingsUtils method gitLabConnectionRequirements.
static List<DomainRequirement> gitLabConnectionRequirements(String connectioName) {
URIRequirementBuilder builder = URIRequirementBuilder.create();
try {
URL connectionURL = new URL(gitLabConnection(connectioName).getUrl());
builder.withHostnamePort(connectionURL.getHost(), connectionURL.getPort());
} catch (Exception ignored) {
LOGGER.fine("ignoring invalid gitlab-connection: " + connectioName);
}
return builder.build();
}
Aggregations