2011-09-08 12:45:08 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
import java.lang.reflect.Type;
|
2011-11-24 10:01:51 +00:00
|
|
|
import java.text.DateFormat;
|
|
|
|
import java.text.SimpleDateFormat;
|
2011-11-23 10:55:05 +00:00
|
|
|
import java.util.ArrayList;
|
2011-11-24 10:01:51 +00:00
|
|
|
import java.util.Date;
|
2011-11-23 10:55:05 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.jsoup.Jsoup;
|
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.app.Fragment;
|
2011-11-23 10:55:05 +00:00
|
|
|
import android.content.Context;
|
2011-09-08 12:45:08 +00:00
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.preference.PreferenceManager;
|
2011-11-24 11:51:23 +00:00
|
|
|
import android.util.Log;
|
2011-09-08 12:45:08 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2011-09-09 11:58:11 +00:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
2011-11-23 10:55:05 +00:00
|
|
|
import android.widget.ArrayAdapter;
|
2011-11-24 11:51:23 +00:00
|
|
|
import android.widget.CheckBox;
|
|
|
|
import android.widget.CompoundButton;
|
|
|
|
import android.widget.CompoundButton.OnCheckedChangeListener;
|
2011-09-09 09:50:15 +00:00
|
|
|
import android.widget.ListView;
|
2011-11-23 10:55:05 +00:00
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.google.gson.JsonArray;
|
|
|
|
import com.google.gson.JsonElement;
|
|
|
|
import com.google.gson.JsonObject;
|
|
|
|
import com.google.gson.reflect.TypeToken;
|
2011-09-08 12:45:08 +00:00
|
|
|
|
2011-09-09 11:58:11 +00:00
|
|
|
public class HeadlinesFragment extends Fragment implements OnItemClickListener {
|
2011-09-08 12:45:08 +00:00
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
protected SharedPreferences m_prefs;
|
2011-09-09 09:50:15 +00:00
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
private String m_sessionId;
|
2011-11-23 16:38:21 +00:00
|
|
|
private Feed m_feed;
|
|
|
|
//private int m_activeArticleId;
|
2011-11-24 10:01:51 +00:00
|
|
|
private int m_selectedArticleId;
|
2011-11-23 10:55:05 +00:00
|
|
|
|
|
|
|
private ArticleListAdapter m_adapter;
|
|
|
|
private List<Article> m_articles = new ArrayList<Article>();
|
2011-11-23 16:38:21 +00:00
|
|
|
private OnArticleSelectedListener m_articleSelectedListener;
|
2011-11-23 10:55:05 +00:00
|
|
|
|
2011-11-23 16:38:21 +00:00
|
|
|
public interface OnArticleSelectedListener {
|
|
|
|
public void onArticleSelected(Article article);
|
|
|
|
}
|
2011-09-08 12:45:08 +00:00
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
if (savedInstanceState != null) {
|
|
|
|
m_sessionId = savedInstanceState.getString("sessionId");
|
2011-11-23 16:38:21 +00:00
|
|
|
//m_feedId = savedInstanceState.getInt("feedId");
|
|
|
|
//m_activeArticleId = savedInstanceState.getInt("activeArticleId");
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
View view = inflater.inflate(R.layout.headlines_fragment, container, false);
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
ListView list = (ListView)view.findViewById(R.id.headlines);
|
|
|
|
m_adapter = new ArticleListAdapter(getActivity(), R.layout.headlines_row, (ArrayList<Article>)m_articles);
|
|
|
|
list.setAdapter(m_adapter);
|
|
|
|
list.setOnItemClickListener(this);
|
2011-11-23 12:14:41 +00:00
|
|
|
|
2011-11-24 06:06:47 +00:00
|
|
|
if (m_feed != null)
|
|
|
|
refresh();
|
|
|
|
else
|
|
|
|
view.findViewById(R.id.loading_container).setVisibility(View.GONE);
|
2011-11-23 20:18:18 +00:00
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
2011-11-23 12:14:41 +00:00
|
|
|
public void showLoading(boolean show) {
|
|
|
|
View v = getView();
|
|
|
|
|
|
|
|
if (v != null) {
|
|
|
|
v = v.findViewById(R.id.loading_container);
|
|
|
|
|
|
|
|
if (v != null)
|
|
|
|
v.setVisibility(show ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(getActivity().getApplicationContext());
|
2011-11-23 16:38:21 +00:00
|
|
|
|
|
|
|
m_sessionId = ((MainActivity)activity).getSessionId();
|
|
|
|
m_feed = ((MainActivity)activity).getActiveFeed();
|
|
|
|
|
|
|
|
m_articleSelectedListener = (OnArticleSelectedListener) activity;
|
2011-09-08 12:45:08 +00:00
|
|
|
}
|
|
|
|
|
2011-09-09 11:58:11 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> av, View view, int position, long id) {
|
2011-11-23 12:51:15 +00:00
|
|
|
ListView list = (ListView)av;
|
|
|
|
|
|
|
|
if (list != null) {
|
|
|
|
Article article = (Article)list.getItemAtPosition(position);
|
2011-11-23 16:38:21 +00:00
|
|
|
m_articleSelectedListener.onArticleSelected(article);
|
2011-11-24 10:01:51 +00:00
|
|
|
|
|
|
|
article.unread = false;
|
|
|
|
m_selectedArticleId = article.id;
|
|
|
|
m_adapter.notifyDataSetChanged();
|
2011-11-23 12:51:15 +00:00
|
|
|
}
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
|
|
|
HeadlinesRequest req = new HeadlinesRequest();
|
2011-09-09 11:58:11 +00:00
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
req.setApi(m_prefs.getString("ttrss_url", null));
|
|
|
|
|
|
|
|
HashMap<String,String> map = new HashMap<String,String>() {
|
|
|
|
{
|
|
|
|
put("op", "getHeadlines");
|
|
|
|
put("sid", m_sessionId);
|
2011-11-23 16:38:21 +00:00
|
|
|
put("feed_id", String.valueOf(m_feed.id));
|
2011-11-23 10:55:05 +00:00
|
|
|
put("show_content", "true");
|
|
|
|
put("limit", String.valueOf(30));
|
|
|
|
put("offset", String.valueOf(0));
|
|
|
|
put("view_mode", "adaptive");
|
2011-11-24 10:01:51 +00:00
|
|
|
//put("view_mode", "all_articles");
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
req.execute(map);
|
2011-09-09 11:58:11 +00:00
|
|
|
}
|
|
|
|
|
2011-09-10 08:16:59 +00:00
|
|
|
@Override
|
2011-11-23 10:55:05 +00:00
|
|
|
public void onSaveInstanceState (Bundle out) {
|
2011-09-10 08:16:59 +00:00
|
|
|
super.onSaveInstanceState(out);
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
out.putString("sessionId", m_sessionId);
|
2011-11-23 16:38:21 +00:00
|
|
|
//out.putInt("feedId", m_feedId);
|
|
|
|
//out.putInt("activeArticleId", m_activeArticleId);
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private class HeadlinesRequest extends ApiRequest {
|
|
|
|
|
|
|
|
protected void onPostExecute(JsonElement result) {
|
|
|
|
if (result != null) {
|
|
|
|
try {
|
|
|
|
JsonObject rv = result.getAsJsonObject();
|
|
|
|
|
|
|
|
Gson gson = new Gson();
|
|
|
|
|
|
|
|
int status = rv.get("status").getAsInt();
|
|
|
|
|
|
|
|
if (status == 0) {
|
|
|
|
JsonArray content = rv.get("content").getAsJsonArray();
|
|
|
|
if (content != null) {
|
|
|
|
Type listType = new TypeToken<List<Article>>() {}.getType();
|
|
|
|
final List<Article> articles = gson.fromJson(content, listType);
|
|
|
|
|
|
|
|
getActivity().runOnUiThread(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
m_articles.clear();
|
|
|
|
|
|
|
|
for (Article f : articles)
|
|
|
|
m_articles.add(f);
|
|
|
|
|
|
|
|
m_adapter.notifyDataSetInvalidated();
|
|
|
|
|
2011-11-23 12:14:41 +00:00
|
|
|
showLoading(false);
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} 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);
|
|
|
|
} */
|
|
|
|
|
|
|
|
// TODO report error back to MainActivity
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
MainActivity ma = (MainActivity)getActivity();
|
|
|
|
ma.toast("Error parsing headlines: incorrect format");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
MainActivity ma = (MainActivity)getActivity();
|
|
|
|
ma.toast("Error parsing headlines: null object.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class ArticleListAdapter extends ArrayAdapter<Article> {
|
|
|
|
private ArrayList<Article> items;
|
2011-11-24 10:01:51 +00:00
|
|
|
|
|
|
|
public static final int VIEW_NORMAL = 0;
|
|
|
|
public static final int VIEW_UNREAD = 1;
|
|
|
|
public static final int VIEW_SELECTED = 2;
|
|
|
|
|
|
|
|
public static final int VIEW_COUNT = VIEW_SELECTED+1;
|
2011-11-24 11:51:23 +00:00
|
|
|
|
|
|
|
private ArrayList<Article> m_selectedArticles = new ArrayList<Article>();
|
|
|
|
|
|
|
|
/* private class ArticleCheckListener implements OnCheckedChangeListener {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView,
|
|
|
|
boolean isChecked) {
|
|
|
|
|
|
|
|
Log.d(TAG, "onCheckedChanged: " + buttonView + "/" + getContext());
|
|
|
|
}
|
2011-11-23 10:55:05 +00:00
|
|
|
|
2011-11-24 11:51:23 +00:00
|
|
|
} */
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
public ArticleListAdapter(Context context, int textViewResourceId, ArrayList<Article> items) {
|
|
|
|
super(context, textViewResourceId, items);
|
|
|
|
this.items = items;
|
|
|
|
}
|
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
public int getViewTypeCount() {
|
|
|
|
return VIEW_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
Article a = items.get(position);
|
|
|
|
|
|
|
|
if (a.id == m_selectedArticleId) {
|
|
|
|
return VIEW_SELECTED;
|
|
|
|
} else if (a.unread) {
|
|
|
|
return VIEW_UNREAD;
|
|
|
|
} else {
|
|
|
|
return VIEW_NORMAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
@Override
|
|
|
|
public View getView(int position, View convertView, ViewGroup parent) {
|
|
|
|
|
|
|
|
View v = convertView;
|
|
|
|
|
2011-11-24 11:51:23 +00:00
|
|
|
final Article article = items.get(position);
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
if (v == null) {
|
2011-11-24 10:01:51 +00:00
|
|
|
int layoutId = R.layout.headlines_row;
|
|
|
|
|
|
|
|
switch (getItemViewType(position)) {
|
|
|
|
case VIEW_UNREAD:
|
|
|
|
layoutId = R.layout.headlines_row_unread;
|
|
|
|
break;
|
|
|
|
case VIEW_SELECTED:
|
|
|
|
layoutId = R.layout.headlines_row_selected;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
LayoutInflater vi = (LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
2011-11-24 10:01:51 +00:00
|
|
|
v = vi.inflate(layoutId, null);
|
2011-11-23 10:55:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TextView tt = (TextView) v.findViewById(R.id.title);
|
|
|
|
|
|
|
|
if (tt != null) {
|
|
|
|
tt.setText(article.title);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView te = (TextView) v.findViewById(R.id.excerpt);
|
|
|
|
|
|
|
|
if (te != null) {
|
|
|
|
String excerpt = Jsoup.parse(article.content).text();
|
|
|
|
|
|
|
|
if (excerpt.length() > 250)
|
2011-11-24 10:01:51 +00:00
|
|
|
excerpt = excerpt.substring(0, 100) + "...";
|
2011-11-23 10:55:05 +00:00
|
|
|
|
|
|
|
te.setText(excerpt);
|
|
|
|
}
|
|
|
|
|
2011-11-24 10:01:51 +00:00
|
|
|
TextView dv = (TextView) v.findViewById(R.id.date);
|
|
|
|
|
|
|
|
if (dv != null) {
|
|
|
|
Date d = new Date((long)article.updated * 1000);
|
|
|
|
DateFormat df = new SimpleDateFormat("MMM dd, HH:mm");
|
|
|
|
dv.setText(df.format(d));
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:51:23 +00:00
|
|
|
CheckBox cb = (CheckBox) v.findViewById(R.id.selected);
|
|
|
|
|
|
|
|
if (cb != null) {
|
|
|
|
cb.setChecked(m_selectedArticles.contains(article));
|
|
|
|
|
|
|
|
cb.setOnCheckedChangeListener(new OnCheckedChangeListener() {
|
|
|
|
@Override
|
|
|
|
public void onCheckedChanged(CompoundButton buttonView,
|
|
|
|
boolean isChecked) {
|
|
|
|
|
|
|
|
if (isChecked) {
|
|
|
|
m_selectedArticles.add(article);
|
|
|
|
} else {
|
|
|
|
m_selectedArticles.remove(article);
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.d(TAG, "num selected: " + m_selectedArticles.size());
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2011-11-23 10:55:05 +00:00
|
|
|
return v;
|
|
|
|
}
|
2011-09-10 08:16:59 +00:00
|
|
|
}
|
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
}
|