mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 14:35:45 +01:00
use proxy settings for hg package download
This commit is contained in:
@@ -87,15 +87,15 @@ public class HgConfigResource
|
|||||||
*
|
*
|
||||||
* @param client
|
* @param client
|
||||||
* @param handler
|
* @param handler
|
||||||
* @param cacheManager
|
* @param pkgReader
|
||||||
*/
|
*/
|
||||||
@Inject
|
@Inject
|
||||||
public HgConfigResource(HttpClient client, HgRepositoryHandler handler,
|
public HgConfigResource(HttpClient client, HgRepositoryHandler handler,
|
||||||
CacheManager cacheManager)
|
HgPackageReader pkgReader)
|
||||||
{
|
{
|
||||||
this.client = client;
|
this.client = client;
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
this.pkgReader = new HgPackageReader(cacheManager);
|
this.pkgReader = pkgReader;
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- methods --------------------------------------------------------------
|
//~--- methods --------------------------------------------------------------
|
||||||
|
|||||||
@@ -35,12 +35,18 @@ package sonia.scm.installer;
|
|||||||
|
|
||||||
//~--- non-JDK imports --------------------------------------------------------
|
//~--- non-JDK imports --------------------------------------------------------
|
||||||
|
|
||||||
|
import com.google.inject.Inject;
|
||||||
|
import com.google.inject.Provider;
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
import sonia.scm.PlatformType;
|
import sonia.scm.PlatformType;
|
||||||
import sonia.scm.cache.Cache;
|
import sonia.scm.cache.Cache;
|
||||||
import sonia.scm.cache.CacheManager;
|
import sonia.scm.cache.CacheManager;
|
||||||
|
import sonia.scm.net.HttpClient;
|
||||||
|
import sonia.scm.net.HttpRequest;
|
||||||
|
import sonia.scm.net.HttpResponse;
|
||||||
import sonia.scm.util.IOUtil;
|
import sonia.scm.util.IOUtil;
|
||||||
import sonia.scm.util.SystemUtil;
|
import sonia.scm.util.SystemUtil;
|
||||||
import sonia.scm.util.Util;
|
import sonia.scm.util.Util;
|
||||||
@@ -50,11 +56,8 @@ import sonia.scm.util.Util;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
|
||||||
import java.net.URL;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.zip.GZIPInputStream;
|
|
||||||
|
|
||||||
import javax.xml.bind.JAXB;
|
import javax.xml.bind.JAXB;
|
||||||
|
|
||||||
@@ -83,10 +86,14 @@ public class HgPackageReader
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param cacheManager
|
* @param cacheManager
|
||||||
|
* @param httpClientProvider
|
||||||
*/
|
*/
|
||||||
public HgPackageReader(CacheManager cacheManager)
|
@Inject
|
||||||
|
public HgPackageReader(CacheManager cacheManager,
|
||||||
|
Provider<HttpClient> httpClientProvider)
|
||||||
{
|
{
|
||||||
cache = cacheManager.getCache(String.class, HgPackages.class, CACHENAME);
|
cache = cacheManager.getCache(String.class, HgPackages.class, CACHENAME);
|
||||||
|
this.httpClientProvider = httpClientProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
//~--- get methods ----------------------------------------------------------
|
//~--- get methods ----------------------------------------------------------
|
||||||
@@ -216,17 +223,13 @@ public class HgPackageReader
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
URL url = new URL(PACKAGEURL);
|
HttpRequest request = new HttpRequest(PACKAGEURL);
|
||||||
|
|
||||||
if (PACKAGEURL.endsWith(".gz"))
|
request.setDecodeGZip(true);
|
||||||
{
|
|
||||||
input = new GZIPInputStream(url.openStream());
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
input = url.openStream();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
HttpResponse response = httpClientProvider.get().get(request);
|
||||||
|
|
||||||
|
input = response.getContent();
|
||||||
packages = JAXB.unmarshal(input, HgPackages.class);
|
packages = JAXB.unmarshal(input, HgPackages.class);
|
||||||
}
|
}
|
||||||
catch (IOException ex)
|
catch (IOException ex)
|
||||||
@@ -251,4 +254,7 @@ public class HgPackageReader
|
|||||||
|
|
||||||
/** Field description */
|
/** Field description */
|
||||||
private Cache<String, HgPackages> cache;
|
private Cache<String, HgPackages> cache;
|
||||||
|
|
||||||
|
/** Field description */
|
||||||
|
private Provider<HttpClient> httpClientProvider;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ package sonia.scm.web;
|
|||||||
|
|
||||||
import com.google.inject.servlet.ServletModule;
|
import com.google.inject.servlet.ServletModule;
|
||||||
|
|
||||||
|
import sonia.scm.installer.HgPackageReader;
|
||||||
import sonia.scm.plugin.ext.Extension;
|
import sonia.scm.plugin.ext.Extension;
|
||||||
import sonia.scm.repository.HgContext;
|
import sonia.scm.repository.HgContext;
|
||||||
import sonia.scm.repository.HgHookManager;
|
import sonia.scm.repository.HgHookManager;
|
||||||
@@ -67,6 +68,9 @@ public class HgServletModule extends ServletModule
|
|||||||
{
|
{
|
||||||
bind(HgContext.class);
|
bind(HgContext.class);
|
||||||
bind(HgHookManager.class);
|
bind(HgHookManager.class);
|
||||||
|
bind(HgPackageReader.class);
|
||||||
|
|
||||||
|
// bind servlets
|
||||||
serve(MAPPING_HOOK).with(HgHookCallbackServlet.class);
|
serve(MAPPING_HOOK).with(HgHookCallbackServlet.class);
|
||||||
|
|
||||||
// register hg cgi servlet
|
// register hg cgi servlet
|
||||||
|
|||||||
Reference in New Issue
Block a user