All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.wagon.providers.http.LightweightHttpsWagon Maven / Gradle / Ivy

Go to download

Wagon provider that gets and puts artifacts through http using standard Java library

There is a newer version: 3.5.3
Show newest version
package org.apache.maven.wagon.providers.http;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

import org.apache.maven.wagon.ConnectionException;
import org.apache.maven.wagon.authentication.AuthenticationException;
import org.apache.maven.wagon.proxy.ProxyInfo;

/**
 * LightweightHttpsWagon, using JDK's HttpURLConnection.
 *
 * @author Joakim Erdfelt
 * @version $Id: LightweightHttpsWagon.java 1173334 2011-09-20 20:17:48Z hboutemy $
 * 
 * @plexus.component role="org.apache.maven.wagon.Wagon" 
 *   role-hint="https"
 *   instantiation-strategy="per-lookup"
 */
public class LightweightHttpsWagon
    extends LightweightHttpWagon
{
    private String previousHttpsProxyHost;
    
    private String previousHttpsProxyPort;

    private String previousHttpsProxyExclusions;

    public LightweightHttpsWagon()
    {
        super();
    }

    public void openConnection()
        throws ConnectionException, AuthenticationException
    {
        previousHttpsProxyHost = System.getProperty( "https.proxyHost" );
        previousHttpsProxyPort = System.getProperty( "https.proxyPort" );
        previousHttpsProxyExclusions = System.getProperty( "https.nonProxyHosts" );
        
        final ProxyInfo proxyInfo = getProxyInfo( "https", getRepository().getHost() );
        if ( proxyInfo != null )
        {
            setSystemProperty( "https.proxyHost", proxyInfo.getHost() );
            setSystemProperty( "https.proxyPort", String.valueOf( proxyInfo.getPort() ) );
            setSystemProperty( "https.nonProxyHosts", proxyInfo.getNonProxyHosts() );
        }
        else
        {
            setSystemProperty( "https.proxyHost", null );
            setSystemProperty( "https.proxyPort", null );
        }
        
        super.openConnection();
    }

    public void closeConnection()
        throws ConnectionException
    {
        super.closeConnection();

        setSystemProperty( "https.proxyHost", previousHttpsProxyHost );
        setSystemProperty( "https.proxyPort", previousHttpsProxyPort );
        setSystemProperty( "https.nonProxyHosts", previousHttpsProxyExclusions );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy