Skip to content

Commit e553208

Browse files
committed
Add egress.sites for Indy Config
1 parent 335964d commit e553208

File tree

3 files changed

+34
-18
lines changed

3 files changed

+34
-18
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@
9494
<indyModelVersion>1.5</indyModelVersion>
9595
<indyClientVersion>3.4.0</indyClientVersion>
9696
<atlasVersion>1.1.4</atlasVersion>
97-
<galleyVersion>1.19</galleyVersion>
97+
<galleyVersion>1.20-SNAPSHOT</galleyVersion>
9898
<weftVersion>1.24</weftVersion>
9999
<webdavVersion>3.2.1</webdavVersion>
100100
<!-- TODO: partyline is still needed for standalone mode, may be removed in future -->
101101
<partylineVersion>1.16</partylineVersion>
102102
<kojijiVersion>2.13</kojijiVersion>
103103
<rwxVersion>2.3</rwxVersion>
104-
<jhttpcVersion>1.14</jhttpcVersion>
104+
<jhttpcVersion>1.15-SNAPSHOT</jhttpcVersion>
105105
<httpTestserverVersion>1.5.1</httpTestserverVersion>
106106
<propulsorVersion>1.5</propulsorVersion>
107107
<auditQueryVersion>0.13.1</auditQueryVersion>

subsys/http/src/main/java/org/commonjava/indy/subsys/http/IndyGlobalProxyConfigProducer.java

+26-16
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,6 @@ public GlobalProxyConfig getGlobalProxyConfig()
5656
private void setupGlobalProxyConfig()
5757
{
5858
logger.debug( "Setup global proxy config, host: {}", defaultSiteConfig.getProxyHost() );
59-
final String allowTypes = defaultSiteConfig.getProxyAllowHttpJobTypes();
60-
final List<String> list = new ArrayList<>();
61-
if ( isNotBlank( allowTypes ) )
62-
{
63-
String[] toks = allowTypes.split( "," );
64-
for ( String s : toks )
65-
{
66-
s = s.trim();
67-
if ( isNotBlank( s ) )
68-
{
69-
list.add( s );
70-
}
71-
}
72-
}
7359
globalProxyConfig = new GlobalProxyConfig()
7460
{
7561
@Override
@@ -93,16 +79,40 @@ public String getUser()
9379
@Override
9480
public List<String> getAllowHttpJobTypes()
9581
{
96-
return list;
82+
return getList( defaultSiteConfig.getProxyAllowHttpJobTypes() );
83+
}
84+
85+
@Override
86+
public List<String> getEgressSites()
87+
{
88+
return getList( defaultSiteConfig.getEgressSites() );
9789
}
9890

9991
@Override
10092
public String toString()
10193
{
10294
return String.format( "GlobalProxyConfig [host=%s, port=%s, allowHttpJobTypes=%s]", getHost(),
103-
getPort(), allowTypes );
95+
getPort(), defaultSiteConfig.getProxyAllowHttpJobTypes() );
10496
}
10597
};
10698
logger.debug( "Global proxy config produced: {}", globalProxyConfig );
10799
}
100+
101+
private List<String> getList( String value )
102+
{
103+
final List<String> list = new ArrayList<>();
104+
if ( isNotBlank( value ) )
105+
{
106+
String[] toks = value.split( "," );
107+
for ( String s : toks )
108+
{
109+
s = s.trim();
110+
if ( isNotBlank( s ) )
111+
{
112+
list.add( s );
113+
}
114+
}
115+
}
116+
return list;
117+
}
108118
}

subsys/http/src/main/java/org/commonjava/indy/subsys/http/conf/IndyHttpConfig.java

+6
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ public class IndyHttpConfig
6060

6161
public static final String PROXY_ALLOW_HTTP_JOB_TYPES = "proxy.allow.http.job.types";
6262

63+
public static final String EGRESS_SITES = "egress.sites";
64+
6365
public static final String TRUST_TYPE = "trust.type";
6466

6567
public static final String KEY_CERT_PEM = "key.cert.pem";
@@ -105,6 +107,7 @@ public void sectionComplete( String name ) throws ConfigurationException
105107
case PROXY_PORT:
106108
case PROXY_USER:
107109
case PROXY_ALLOW_HTTP_JOB_TYPES:
110+
case EGRESS_SITES:
108111
case TRUST_TYPE:
109112
case KEY_CERT_PEM:
110113
case KEY_CERT_PEM_PATH:
@@ -227,6 +230,9 @@ private void withEntry( SiteConfigBuilder siteConfigBuilder, String realKey, Str
227230
case PROXY_ALLOW_HTTP_JOB_TYPES:
228231
siteConfigBuilder.withProxyAllowHttpJobTypes( value );
229232
break;
233+
case EGRESS_SITES:
234+
siteConfigBuilder.withEgressSites( value );
235+
break;
230236
case TRUST_TYPE:
231237
siteConfigBuilder.withTrustType( SiteTrustType.getType( value ) );
232238
break;

0 commit comments

Comments
 (0)