summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/service/download
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-12-31 21:34:10 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2012-12-31 21:34:10 +0100
commit0eaa564e2c2197f95547e9ff4fe8192c8b18ec0e (patch)
treeda0dcda18a6f896aebb39ef872da331135d276a4 /src/de/danoeh/antennapod/service/download
parent4de65bdd4b030376622d38d928c377e139864811 (diff)
downloadAntennaPod-0eaa564e2c2197f95547e9ff4fe8192c8b18ec0e.zip
removed unused code
Diffstat (limited to 'src/de/danoeh/antennapod/service/download')
-rw-r--r--src/de/danoeh/antennapod/service/download/HttpDownloader.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/de/danoeh/antennapod/service/download/HttpDownloader.java b/src/de/danoeh/antennapod/service/download/HttpDownloader.java
index aa7a73431..05df9163b 100644
--- a/src/de/danoeh/antennapod/service/download/HttpDownloader.java
+++ b/src/de/danoeh/antennapod/service/download/HttpDownloader.java
@@ -8,23 +8,15 @@ import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
-import java.net.MalformedURLException;
import java.net.SocketTimeoutException;
-import java.net.URL;
import java.net.UnknownHostException;
import org.apache.commons.io.IOUtils;
-import org.apache.http.HttpConnection;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
-import org.apache.http.HttpStatus;
-import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.params.HttpClientParams;
-import org.apache.http.conn.ClientConnectionManager;
import org.apache.http.params.HttpParams;
-import org.apache.http.protocol.BasicHttpContext;
-import org.apache.http.protocol.HttpContext;
import android.net.http.AndroidHttpClient;
import android.util.Log;
@@ -59,63 +51,6 @@ public class HttpDownloader extends Downloader {
return httpClient;
}
- /**
- * This method is called by establishConnection(String). Don't call it
- * directly.
- * */
- private HttpURLConnection establishConnection(String location,
- int redirectCount) throws MalformedURLException, IOException {
- URL url = new URL(location);
- HttpURLConnection connection = null;
- int responseCode = -1;
- connection = (HttpURLConnection) url.openConnection();
- connection.setConnectTimeout(CONNECTION_TIMEOUT);
- // try with 'follow redirect'
- connection.setInstanceFollowRedirects(true);
- try {
- responseCode = connection.getResponseCode();
- } catch (IOException e) {
- e.printStackTrace();
- if (AppConfig.DEBUG)
- Log.d(TAG,
- "Failed to establish connection with 'follow redirects. Disabling 'follow redirects'");
- connection.disconnect();
- connection.setInstanceFollowRedirects(false);
- responseCode = connection.getResponseCode();
- }
- if (AppConfig.DEBUG)
- Log.d(TAG, "Response Code: " + responseCode);
- switch (responseCode) {
- case HttpStatus.SC_TEMPORARY_REDIRECT:
- if (redirectCount < MAX_REDIRECTS) {
- final String redirect = connection.getHeaderField("Location");
- if (redirect != null) {
- return establishConnection(redirect, redirectCount + 1);
- }
- }
- case HttpStatus.SC_OK:
- return connection;
- default:
- onFail(DownloadError.ERROR_HTTP_DATA_ERROR,
- String.valueOf(responseCode));
- return null;
- }
- }
-
- /**
- * Establish connection to resource. This method will also try to handle
- * different response codes / redirect issues.
- *
- * @return the HttpURLConnection object if the connection could be opened,
- * null otherwise.
- * @throws MalformedURLException
- * , IOException
- * */
- private HttpURLConnection establishConnection(String location)
- throws MalformedURLException, IOException {
- return establishConnection(location, 0);
- }
-
@Override
protected void download() {
AndroidHttpClient httpClient = null;