]> source.dussan.org Git - archiva.git/blob
8d711b82ea571002fd4884f1630f92dd7ede2198
[archiva.git] /
1 package org.apache.archiva.proxy.common;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.commons.lang.StringUtils;
23 import org.apache.maven.wagon.Wagon;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26 import org.springframework.beans.BeansException;
27 import org.springframework.context.ApplicationContext;
28 import org.springframework.stereotype.Service;
29
30 import javax.inject.Inject;
31 import java.lang.reflect.Method;
32 import java.util.Map;
33 import java.util.Properties;
34
35 /**
36  * @author Olivier Lamy
37  * @since 1.4-M1
38  */
39 @Service ("wagonFactory")
40 public class DefaultWagonFactory
41     implements WagonFactory
42 {
43
44     private ApplicationContext applicationContext;
45
46     private Logger logger = LoggerFactory.getLogger( getClass() );
47
48     private DebugTransferListener debugTransferListener = new DebugTransferListener();
49
50     @Inject
51     public DefaultWagonFactory( ApplicationContext applicationContext )
52     {
53         this.applicationContext = applicationContext;
54     }
55
56     public Wagon getWagon( WagonFactoryRequest wagonFactoryRequest )
57         throws WagonFactoryException
58     {
59         try
60         {
61             String protocol = StringUtils.startsWith( wagonFactoryRequest.getProtocol(), "wagon#" )
62                 ? wagonFactoryRequest.getProtocol()
63                 : "wagon#" + wagonFactoryRequest.getProtocol();
64
65             Wagon wagon = applicationContext.getBean( protocol, Wagon.class );
66             wagon.addTransferListener( debugTransferListener );
67             configureUserAgent( wagon, wagonFactoryRequest );
68             return wagon;
69         }
70         catch ( BeansException e )
71         {
72             throw new WagonFactoryException( e.getMessage(), e );
73         }
74     }
75
76     protected void configureUserAgent( Wagon wagon, WagonFactoryRequest wagonFactoryRequest )
77     {
78         try
79         {
80             Class clazz = wagon.getClass();
81             Method getHttpHeaders = clazz.getMethod( "getHttpHeaders", null );
82
83             Properties headers = (Properties) getHttpHeaders.invoke( wagon, null );
84             if ( headers == null )
85             {
86                 headers = new Properties();
87             }
88
89             headers.put( "User-Agent", wagonFactoryRequest.getUserAgent() );
90
91             if ( !wagonFactoryRequest.getHeaders().isEmpty() )
92             {
93                 for ( Map.Entry<String, String> entry : wagonFactoryRequest.getHeaders().entrySet() )
94                 {
95                     headers.put( entry.getKey(), entry.getValue() );
96                 }
97             }
98
99             Method setHttpHeaders = clazz.getMethod( "setHttpHeaders", new Class[]{ Properties.class } );
100             setHttpHeaders.invoke( wagon, headers );
101
102             logger.debug( "http headers set to: {}", headers );
103         }
104         catch ( Exception e )
105         {
106             logger.warn( "fail to configure User-Agent: " + e.getMessage(), e );
107         }
108     }
109 }