2011-09-07 05:56:46 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
2011-09-09 06:02:31 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
import android.app.Activity;
|
2011-11-22 14:30:09 +00:00
|
|
|
import android.app.FragmentManager;
|
2011-09-08 11:28:38 +00:00
|
|
|
import android.app.FragmentTransaction;
|
2011-09-08 10:23:44 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
2011-09-07 05:56:46 +00:00
|
|
|
import android.os.Bundle;
|
2011-09-08 10:23:44 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2011-09-08 12:45:08 +00:00
|
|
|
import android.util.Log;
|
2011-09-08 10:23:44 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2011-11-22 14:30:09 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.TextView;
|
2011-11-23 10:55:05 +00:00
|
|
|
import android.widget.Toast;
|
2011-09-10 08:03:32 +00:00
|
|
|
import android.widget.ViewFlipper;
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2011-09-09 06:02:31 +00:00
|
|
|
import com.google.gson.JsonElement;
|
2011-11-22 14:30:09 +00:00
|
|
|
import com.google.gson.JsonObject;
|
2011-09-09 06:02:31 +00:00
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
public class MainActivity extends Activity {
|
2011-09-08 12:45:08 +00:00
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
private SharedPreferences m_prefs;
|
|
|
|
private String m_themeName = "";
|
2011-09-09 06:02:31 +00:00
|
|
|
protected String m_sessionId;
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-09 09:23:56 +00:00
|
|
|
protected MenuItem m_syncStatus;
|
2011-09-09 06:02:31 +00:00
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
public synchronized String getSessionId() {
|
2011-09-09 06:02:31 +00:00
|
|
|
return m_sessionId;
|
|
|
|
}
|
2011-11-22 14:30:09 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
/** Called when the activity is first created. */
|
2011-11-22 14:30:09 +00:00
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
public void toast(String message) {
|
|
|
|
Toast toast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT);
|
|
|
|
toast.show();
|
|
|
|
}
|
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
if (m_prefs.getString("theme", "THEME_DARK").equals("THEME_DARK")) {
|
|
|
|
setTheme(R.style.DarkTheme);
|
|
|
|
} else {
|
|
|
|
setTheme(R.style.LightTheme);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_themeName = m_prefs.getString("theme", "THEME_DARK");
|
2011-11-22 14:30:09 +00:00
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
if (savedInstanceState != null) {
|
2011-09-09 06:02:31 +00:00
|
|
|
m_sessionId = savedInstanceState.getString("sessionId");
|
2011-09-08 10:23:44 +00:00
|
|
|
}
|
2011-11-23 10:55:05 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
setContentView(R.layout.main);
|
2011-11-23 10:55:05 +00:00
|
|
|
|
|
|
|
/* HeadlinesFragment hf = new HeadlinesFragment();
|
|
|
|
FeedsFragment ff = new FeedsFragment();
|
|
|
|
ArticleFragment af = new ArticleFragment();
|
|
|
|
|
|
|
|
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
|
|
|
|
|
|
|
ft.add(R.id.main, ff);
|
|
|
|
ft.add(R.id.main, hf);
|
|
|
|
ft.add(R.id.main, af);
|
|
|
|
ft.hide(hf);
|
|
|
|
ft.hide(af);
|
|
|
|
ft.commit(); */
|
|
|
|
|
|
|
|
FragmentTransaction ft = getFragmentManager().beginTransaction();
|
|
|
|
//ft.hide(getFragmentManager().findFragmentById(R.id.headlines_fragment));
|
|
|
|
ft.hide(getFragmentManager().findFragmentById(R.id.article_fragment));
|
|
|
|
ft.commit();
|
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
LoginRequest ar = new LoginRequest();
|
2011-11-22 12:49:21 +00:00
|
|
|
ar.setApi(m_prefs.getString("ttrss_url", null));
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
HashMap<String,String> map = new HashMap<String,String>() {
|
2011-11-22 12:49:21 +00:00
|
|
|
{
|
|
|
|
put("op", "login");
|
|
|
|
put("user", m_prefs.getString("login", null));
|
|
|
|
put("password", m_prefs.getString("password", null));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
ar.execute(map);
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
setLoadingStatus(R.string.login_in_progress, true);
|
|
|
|
|
2011-11-22 12:49:21 +00:00
|
|
|
/* ViewFlipper vf = (ViewFlipper) findViewById(R.id.main_flipper);
|
2011-09-09 09:23:56 +00:00
|
|
|
|
2011-11-22 12:13:02 +00:00
|
|
|
if (vf != null) {
|
|
|
|
vf.showNext();
|
2011-11-23 10:55:05 +00:00
|
|
|
} */
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
}
|
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
public void setLoadingStatus(int status, boolean showProgress) {
|
|
|
|
TextView tv = (TextView)findViewById(R.id.loading_message);
|
|
|
|
|
|
|
|
if (tv != null) {
|
|
|
|
tv.setText(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
View pb = findViewById(R.id.loading_progress);
|
|
|
|
|
|
|
|
if (pb != null) {
|
|
|
|
pb.setVisibility(showProgress ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
@Override
|
|
|
|
public void onSaveInstanceState (Bundle out) {
|
|
|
|
super.onSaveInstanceState(out);
|
|
|
|
|
2011-09-09 06:02:31 +00:00
|
|
|
out.putString("sessionId", m_sessionId);
|
2011-09-08 10:23:44 +00:00
|
|
|
}
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
if (!m_prefs.getString("theme", "THEME_DARK").equals(m_themeName)) {
|
2011-09-08 16:05:00 +00:00
|
|
|
Intent refresh = new Intent(this, MainActivity.class);
|
2011-09-08 10:23:44 +00:00
|
|
|
startActivity(refresh);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-09 06:02:31 +00:00
|
|
|
@Override
|
|
|
|
public void onDestroy() {
|
|
|
|
super.onDestroy();
|
2011-09-11 09:04:48 +00:00
|
|
|
|
2011-09-09 06:02:31 +00:00
|
|
|
}
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
MenuInflater inflater = getMenuInflater();
|
|
|
|
inflater.inflate(R.menu.main_menu, menu);
|
2011-09-09 16:36:09 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.preferences:
|
|
|
|
Intent intent = new Intent(this, PreferencesActivity.class);
|
|
|
|
startActivityForResult(intent, 0);
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
2011-11-22 12:49:21 +00:00
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
private class LoginRequest extends ApiRequest {
|
|
|
|
|
|
|
|
protected void onPostExecute(JsonElement result) {
|
|
|
|
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();
|
|
|
|
|
|
|
|
setLoadingStatus(R.string.loading_message, true);
|
|
|
|
|
|
|
|
FragmentManager fm = getFragmentManager();
|
2011-11-23 10:55:05 +00:00
|
|
|
FeedsFragment ff = (FeedsFragment) fm.findFragmentById(R.id.feeds_fragment);
|
|
|
|
|
2011-11-22 14:30:09 +00:00
|
|
|
if (ff != null) {
|
|
|
|
ff.initialize(m_sessionId);
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewFlipper vf = (ViewFlipper) findViewById(R.id.main_flipper);
|
|
|
|
|
|
|
|
if (vf != null) {
|
|
|
|
vf.showNext();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
JsonObject content = rv.get("content").getAsJsonObject();
|
|
|
|
|
|
|
|
if (content != null) {
|
|
|
|
String error = content.get("error").getAsString();
|
|
|
|
|
|
|
|
m_sessionId = null;
|
|
|
|
|
|
|
|
if (error.equals("LOGIN_ERROR")) {
|
|
|
|
setLoadingStatus(R.string.login_wrong_password, false);
|
|
|
|
} else if (error.equals("API_DISABLED")) {
|
|
|
|
setLoadingStatus(R.string.login_api_disabled, false);
|
|
|
|
} else {
|
|
|
|
setLoadingStatus(R.string.login_failed, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-07 05:56:46 +00:00
|
|
|
}
|