2011-09-08 10:23:44 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.InputStreamReader;
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
import org.apache.http.HttpResponse;
|
|
|
|
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-22 12:49:21 +00:00
|
|
|
import android.os.AsyncTask;
|
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-22 12:49:21 +00:00
|
|
|
|
|
|
|
protected void setApi(String api) {
|
|
|
|
m_api = api;
|
|
|
|
}
|
|
|
|
|
2011-11-27 07:04:28 +00:00
|
|
|
public void setTrustAny(boolean trust) {
|
|
|
|
m_trustAny = trust;
|
|
|
|
}
|
|
|
|
|
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 07:04:28 +00:00
|
|
|
//Log.d(TAG, ">>> (" + requestStr + ") " + m_api);
|
|
|
|
|
|
|
|
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/");
|
|
|
|
|
|
|
|
try {
|
|
|
|
httpPost.setEntity(new StringEntity(requestStr, "utf-8"));
|
|
|
|
HttpResponse execute = client.execute(httpPost);
|
|
|
|
|
|
|
|
InputStream content = execute.getEntity().getContent();
|
|
|
|
|
|
|
|
BufferedReader buffer = new BufferedReader(
|
|
|
|
new InputStreamReader(content));
|
|
|
|
|
|
|
|
String s = "";
|
|
|
|
String response = "";
|
|
|
|
|
|
|
|
while ((s = buffer.readLine()) != null) {
|
|
|
|
response += s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.d(TAG, "<<< " + response);
|
|
|
|
|
|
|
|
JsonParser parser = new JsonParser();
|
|
|
|
|
|
|
|
return parser.parse(response);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2011-11-27 07:04:28 +00:00
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* protected String m_sessionId;
|
2011-09-08 10:23:44 +00:00
|
|
|
protected String m_apiEndpoint;
|
2011-09-08 16:05:00 +00:00
|
|
|
protected String m_login;
|
|
|
|
protected String m_password;
|
|
|
|
protected int m_authStatus;
|
|
|
|
protected Gson m_gson = new Gson();
|
|
|
|
|
|
|
|
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;
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-09-08 16:05:00 +00:00
|
|
|
protected ApiRequest(String sessionId, String apiEndpoint, String login, String password) {
|
2011-09-08 10:23:44 +00:00
|
|
|
super();
|
|
|
|
m_sessionId = sessionId;
|
|
|
|
m_apiEndpoint = apiEndpoint;
|
2011-09-08 16:05:00 +00:00
|
|
|
m_authStatus = STATUS_OK;
|
|
|
|
m_login = login;
|
|
|
|
m_password = password;
|
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
//Log.d(TAG, "initial SID=" + sessionId);
|
2011-09-08 10:23:44 +00:00
|
|
|
}
|
|
|
|
|
2011-09-08 16:05:00 +00:00
|
|
|
protected int tryAuthenticate() {
|
2011-09-09 16:36:09 +00:00
|
|
|
JsonElement result = _sendRequest(new HashMap<String,String>() {
|
2011-09-08 16:05:00 +00:00
|
|
|
{
|
|
|
|
put("op", "login");
|
|
|
|
put("user", m_login);
|
|
|
|
put("password", m_password);
|
|
|
|
}
|
|
|
|
});
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-09-08 16:05:00 +00:00
|
|
|
if (result != null) {
|
|
|
|
try {
|
|
|
|
JsonObject rv = result.getAsJsonObject();
|
|
|
|
|
|
|
|
int status = rv.get("status").getAsInt();
|
|
|
|
|
|
|
|
if (status == 0) {
|
|
|
|
JsonObject content = rv.get("content").getAsJsonObject();
|
|
|
|
if (content != null) {
|
|
|
|
m_sessionId = content.get("session_id").getAsString();
|
|
|
|
|
|
|
|
Log.d(TAG, "<<< Authentified, sessionId=" + m_sessionId);
|
|
|
|
|
|
|
|
return STATUS_OK;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
JsonObject content = rv.get("content").getAsJsonObject();
|
|
|
|
|
|
|
|
if (content != null) {
|
|
|
|
String error = content.get("error").getAsString();
|
|
|
|
|
|
|
|
if (error.equals("LOGIN_ERROR")) {
|
|
|
|
m_sessionId = null;
|
|
|
|
return STATUS_LOGIN_FAILED;
|
|
|
|
} else if (error.equals("API_DISABLED")) {
|
|
|
|
m_sessionId = null;
|
|
|
|
return STATUS_API_DISABLED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_sessionId = null;
|
|
|
|
return STATUS_OTHER_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String getSessionId() {
|
|
|
|
return m_sessionId;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int getAuthStatus() {
|
|
|
|
return m_authStatus;
|
|
|
|
}
|
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
protected JsonElement _sendRequest(HashMap<String,String> param) {
|
2011-09-08 16:05:00 +00:00
|
|
|
|
|
|
|
HashMap<String,String> tmp = new HashMap<String,String>(param);
|
|
|
|
|
|
|
|
if (m_sessionId != null)
|
|
|
|
tmp.put("sid", m_sessionId);
|
|
|
|
|
|
|
|
String requestStr = m_gson.toJson(tmp);
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-09-08 16:05:00 +00:00
|
|
|
Log.d(TAG, ">>> (" + requestStr + ") " + m_apiEndpoint);
|
2011-09-08 10:23:44 +00:00
|
|
|
|
|
|
|
DefaultHttpClient client = new DefaultHttpClient();
|
|
|
|
HttpPost httpPost = new HttpPost(m_apiEndpoint + "/api/");
|
|
|
|
|
|
|
|
try {
|
|
|
|
httpPost.setEntity(new StringEntity(requestStr, "utf-8"));
|
|
|
|
HttpResponse execute = client.execute(httpPost);
|
|
|
|
|
|
|
|
InputStream content = execute.getEntity().getContent();
|
|
|
|
|
|
|
|
BufferedReader buffer = new BufferedReader(
|
|
|
|
new InputStreamReader(content));
|
|
|
|
|
|
|
|
String s = "";
|
|
|
|
String response = "";
|
|
|
|
|
|
|
|
while ((s = buffer.readLine()) != null) {
|
|
|
|
response += s;
|
|
|
|
}
|
|
|
|
|
2011-09-08 16:05:00 +00:00
|
|
|
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;
|
|
|
|
}
|
2011-09-08 16:05:00 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
public JsonElement sendRequest(HashMap<String, String> params) {
|
2011-09-08 16:05:00 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
JsonElement result = _sendRequest(params);
|
2011-09-08 16:05:00 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
JsonElement content = result.getAsJsonObject().get("content");
|
|
|
|
int status = result.getAsJsonObject().get("status").getAsInt();
|
|
|
|
|
|
|
|
if (status == 1) {
|
|
|
|
String error = content.getAsJsonObject().get("error").getAsString();
|
|
|
|
|
|
|
|
if (error.equals("NOT_LOGGED_IN")) {
|
|
|
|
Log.d(TAG, "<<< Session invalid, trying to authenticate...");
|
|
|
|
|
|
|
|
m_sessionId = null;
|
|
|
|
m_authStatus = tryAuthenticate();
|
|
|
|
|
|
|
|
if (m_authStatus == STATUS_OK) {
|
2011-09-09 16:36:09 +00:00
|
|
|
result = _sendRequest(params);
|
2011-09-08 16:05:00 +00:00
|
|
|
|
|
|
|
return result.getAsJsonObject().get("content");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return content;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2011-11-22 12:49:21 +00:00
|
|
|
} */
|
2011-09-08 10:23:44 +00:00
|
|
|
}
|