Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*********************************************************************************
* *
* The MIT License (MIT) *
* *
* Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in *
* all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
* THE SOFTWARE. *
* *
********************************************************************************/
package org.aoju.bus.gitlab;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.NTCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.glassfish.jersey.apache.connector.ApacheClientProperties;
import org.glassfish.jersey.client.ClientProperties;
import java.util.HashMap;
import java.util.Map;
/**
* This class provides convenience methods to create ClientConfig properties so GitLabApi can use a proxy server.
*/
public class ProxyClientConfig {
/**
* Create a Map instance with properties set up to use a proxy server that can be passed to the
* GitLabAPi constructors and login methods to configure the GitLabApi instance to use a proxy server.
*
* @param proxyUri the URI of the proxy server
* @return a Map set up to allow GitLabApi to use a proxy server
*/
public static Map createProxyClientConfig(String proxyUri) {
return (createProxyClientConfig(proxyUri, null, null));
}
/**
* Create a Map instance set up to use a proxy server that can be passed to the GitLabAPi constructors
* and login methods to configure the GitLabApi instance to use a proxy server.
*
* @param proxyUri the URI of the proxy server
* @param username the username for basic auth with the proxy server
* @param password the password for basic auth with the proxy server
* @return a Map set up to allow GitLabApi to use a proxy server
*/
public static Map createProxyClientConfig(String proxyUri, String username, String password) {
Map clientConfig = new HashMap<>();
clientConfig.put(ClientProperties.PROXY_URI, proxyUri);
if (username != null && username.trim().length() > 0) {
clientConfig.put(ClientProperties.PROXY_USERNAME, username);
}
if (password != null && password.trim().length() > 0) {
clientConfig.put(ClientProperties.PROXY_PASSWORD, password);
}
return (clientConfig);
}
/**
* Create a Map instance set up to use an NTLM proxy server that can be passed to the GitLabAPi constructors
* and login methods to configure the GitLabApi instance to use an NTLM proxy server.
*
* @param proxyUri the URI of the proxy server
* @param username the user name. This should not include the domain to authenticate with.
* For example: "user" is correct whereas "DOMAIN\user" is not.
* @param password the password
* @param workstation the workstation the authentication request is originating from. Essentially, the computer name for this machine.
* @param domain the domain to authenticate within
* @return a Map set up to allow GitLabApi to use an NTLM proxy server
*/
public static Map createNtlmProxyClientConfig(String proxyUri, String username, String password, String workstation, String domain) {
Map clientConfig = new HashMap<>();
clientConfig.put(ClientProperties.PROXY_URI, proxyUri);
CredentialsProvider credentials = new BasicCredentialsProvider();
credentials.setCredentials(AuthScope.ANY, new NTCredentials(username, password, workstation, domain));
clientConfig.put(ApacheClientProperties.CREDENTIALS_PROVIDER, credentials);
return (clientConfig);
}
}