2011-09-08 10:23:44 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.InputStreamReader;
|
2011-11-27 13:57:05 +00:00
|
|
|
import java.net.MalformedURLException;
|
|
|
|
import java.net.URL;
|
2011-09-08 10:23:44 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
import org.apache.http.HttpHost;
|
2011-09-08 10:23:44 +00:00
|
|
|
import org.apache.http.HttpResponse;
|
2011-11-27 13:57:05 +00:00
|
|
|
import org.apache.http.auth.AuthScope;
|
|
|
|
import org.apache.http.auth.UsernamePasswordCredentials;
|
2011-09-08 10:23:44 +00:00
|
|
|
import org.apache.http.client.methods.HttpPost;
|
2011-11-27 07:04:28 +00:00
|
|
|
import org.apache.http.conn.scheme.PlainSocketFactory;
|
|
|
|
import org.apache.http.conn.scheme.Scheme;
|
|
|
|
import org.apache.http.conn.scheme.SchemeRegistry;
|
2011-09-08 10:23:44 +00:00
|
|
|
import org.apache.http.entity.StringEntity;
|
|
|
|
import org.apache.http.impl.client.DefaultHttpClient;
|
2011-11-27 07:04:28 +00:00
|
|
|
import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
|
|
|
|
import org.apache.http.params.BasicHttpParams;
|
|
|
|
import org.apache.http.params.HttpParams;
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-11-27 10:18:04 +00:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
2011-11-22 12:49:21 +00:00
|
|
|
import android.os.AsyncTask;
|
2011-11-27 10:18:04 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2011-09-08 11:28:38 +00:00
|
|
|
import android.util.Log;
|
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.google.gson.JsonElement;
|
|
|
|
import com.google.gson.JsonParser;
|
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
public class ApiRequest extends AsyncTask<HashMap<String,String>, Integer, JsonElement> {
|
2011-09-08 10:23:44 +00:00
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
protected static final int STATUS_LOGIN_FAILED = 0;
|
|
|
|
protected static final int STATUS_OK = 1;
|
|
|
|
protected static final int STATUS_API_DISABLED = 2;
|
|
|
|
protected static final int STATUS_OTHER_ERROR = 3;
|
|
|
|
|
|
|
|
private String m_api;
|
2011-11-27 07:04:28 +00:00
|
|
|
private boolean m_trustAny = false;
|
2011-11-27 10:18:04 +00:00
|
|
|
private boolean m_transportDebugging = false;
|
|
|
|
private Context m_context;
|
2011-11-27 13:57:05 +00:00
|
|
|
private SharedPreferences m_prefs;
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-27 10:18:04 +00:00
|
|
|
public ApiRequest(Context context) {
|
|
|
|
m_context = context;
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(m_context);
|
2011-11-27 10:18:04 +00:00
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
m_api = m_prefs.getString("ttrss_url", null);
|
|
|
|
m_trustAny = m_prefs.getBoolean("ssl_trust_any", false);
|
|
|
|
m_transportDebugging = m_prefs.getBoolean("transport_debugging", false);
|
2011-11-27 07:04:28 +00:00
|
|
|
}
|
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
@Override
|
|
|
|
protected JsonElement doInBackground(HashMap<String, String>... params) {
|
|
|
|
|
|
|
|
Gson gson = new Gson();
|
|
|
|
|
|
|
|
String requestStr = gson.toJson(new HashMap<String,String>(params[0]));
|
|
|
|
|
2011-11-27 10:18:04 +00:00
|
|
|
if (m_transportDebugging) Log.d(TAG, ">>> (" + requestStr + ") " + m_api);
|
2011-11-27 07:04:28 +00:00
|
|
|
|
|
|
|
DefaultHttpClient client;
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-27 07:04:28 +00:00
|
|
|
if (m_trustAny) {
|
|
|
|
SchemeRegistry schemeRegistry = new SchemeRegistry();
|
|
|
|
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
|
|
|
|
schemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));
|
|
|
|
|
|
|
|
HttpParams httpParams = new BasicHttpParams();
|
|
|
|
|
|
|
|
client = new DefaultHttpClient(new ThreadSafeClientConnManager(httpParams, schemeRegistry), httpParams);
|
|
|
|
} else {
|
|
|
|
client = new DefaultHttpClient();
|
|
|
|
}
|
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
HttpPost httpPost = new HttpPost(m_api + "/api/");
|
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
String httpLogin = m_prefs.getString("http_login", "");
|
|
|
|
String httpPassword = m_prefs.getString("http_password", "");
|
|
|
|
|
|
|
|
if (httpLogin.length() > 0) {
|
|
|
|
if (m_transportDebugging) Log.d(TAG, "Using HTTP Basic authentication.");
|
|
|
|
|
|
|
|
URL targetUrl;
|
|
|
|
try {
|
|
|
|
targetUrl = new URL(m_api);
|
|
|
|
} catch (MalformedURLException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
return null;
|
2011-11-22 12:49:21 +00:00
|
|
|
}
|
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
HttpHost targetHost = new HttpHost(targetUrl.getHost(), targetUrl.getPort(), targetUrl.getProtocol());
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
client.getCredentialsProvider().setCredentials(
|
|
|
|
new AuthScope(targetHost.getHostName(), targetHost.getPort()),
|
|
|
|
new UsernamePasswordCredentials(httpLogin, httpPassword));
|
2011-11-22 12:49:21 +00:00
|
|
|
}
|
2011-11-27 07:04:28 +00:00
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
try {
|
|
|
|
httpPost.setEntity(new StringEntity(requestStr, "utf-8"));
|
|
|
|
HttpResponse execute = client.execute(httpPost);
|
|
|
|
|
|
|
|
InputStream content = execute.getEntity().getContent();
|
|
|
|
|
|
|
|
BufferedReader buffer = new BufferedReader(
|
2011-11-28 14:20:56 +00:00
|
|
|
new InputStreamReader(content), 8192);
|
2011-09-08 10:23:44 +00:00
|
|
|
|
|
|
|
String s = "";
|
|
|
|
String response = "";
|
|
|
|
|
|
|
|
while ((s = buffer.readLine()) != null) {
|
|
|
|
response += s;
|
|
|
|
}
|
|
|
|
|
2011-11-27 13:57:05 +00:00
|
|
|
if (m_transportDebugging) Log.d(TAG, "<<< " + response);
|
2011-09-08 10:23:44 +00:00
|
|
|
|
|
|
|
JsonParser parser = new JsonParser();
|
|
|
|
|
|
|
|
return parser.parse(response);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|