fedilab-Android-App/app/src/main/java/fr/gouv/etalab/mastodon/fragments/DisplayStatusFragment.java

990 lines
50 KiB
Java
Raw Normal View History

2017-05-05 16:36:04 +02:00
package fr.gouv.etalab.mastodon.fragments;
/* Copyright 2017 Thomas Schneider
*
2017-07-10 10:33:24 +02:00
* This file is a part of Mastalab
2017-05-05 16:36:04 +02:00
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
2017-07-10 10:33:24 +02:00
* Mastalab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2017-05-05 16:36:04 +02:00
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
2017-08-04 11:11:27 +02:00
* You should have received a copy of the GNU General Public License along with Mastalab; if not,
2017-05-05 16:36:04 +02:00
* see <http://www.gnu.org/licenses>. */
2018-11-17 14:31:03 +01:00
2018-10-20 14:39:24 +02:00
import android.app.Activity;
2019-01-10 11:51:25 +01:00
import android.content.BroadcastReceiver;
2017-05-05 16:36:04 +02:00
import android.content.Context;
2017-08-26 19:39:11 +02:00
import android.content.Intent;
2019-01-10 11:51:25 +01:00
import android.content.IntentFilter;
2017-05-05 16:36:04 +02:00
import android.content.SharedPreferences;
import android.database.sqlite.SQLiteDatabase;
2017-05-05 16:36:04 +02:00
import android.os.AsyncTask;
import android.os.Bundle;
2017-11-03 10:18:47 +01:00
import android.os.Handler;
import android.os.Looper;
import android.support.annotation.NonNull;
2017-05-05 16:36:04 +02:00
import android.support.v4.app.Fragment;
2018-05-11 16:33:16 +02:00
import android.support.v4.content.ContextCompat;
2019-01-10 11:51:25 +01:00
import android.support.v4.content.LocalBroadcastManager;
2017-05-05 16:36:04 +02:00
import android.support.v4.widget.SwipeRefreshLayout;
2017-10-14 14:36:48 +02:00
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
2017-05-05 16:36:04 +02:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
2019-01-12 17:55:18 +01:00
import android.widget.TextView;
import android.widget.Toast;
2018-11-17 14:31:03 +01:00
2017-05-05 16:36:04 +02:00
import java.util.ArrayList;
2018-11-21 18:04:10 +01:00
import java.util.Iterator;
2017-05-05 16:36:04 +02:00
import java.util.List;
2017-09-13 08:47:59 +02:00
2018-11-25 10:45:16 +01:00
import es.dmoral.toasty.Toasty;
import fr.gouv.etalab.mastodon.R;
import fr.gouv.etalab.mastodon.activities.BaseMainActivity;
2017-09-13 08:47:59 +02:00
import fr.gouv.etalab.mastodon.activities.MainActivity;
2018-12-21 18:49:02 +01:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveFeedsAfterBookmarkAsyncTask;
2018-11-17 14:31:03 +01:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveFeedsAsyncTask;
2017-09-27 17:52:23 +02:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveMissingFeedsAsyncTask;
2018-10-20 12:22:35 +02:00
import fr.gouv.etalab.mastodon.asynctasks.RetrievePeertubeSearchAsyncTask;
2019-01-03 17:11:53 +01:00
import fr.gouv.etalab.mastodon.asynctasks.UpdateAccountInfoAsyncTask;
2019-01-12 09:26:18 +01:00
import fr.gouv.etalab.mastodon.client.API;
2017-06-03 18:18:27 +02:00
import fr.gouv.etalab.mastodon.client.APIResponse;
2018-01-05 09:46:59 +01:00
import fr.gouv.etalab.mastodon.client.Entities.Account;
2018-10-29 15:49:13 +01:00
import fr.gouv.etalab.mastodon.client.Entities.Conversation;
2018-10-06 15:59:00 +02:00
import fr.gouv.etalab.mastodon.client.Entities.Peertube;
import fr.gouv.etalab.mastodon.client.Entities.RemoteInstance;
2018-11-17 14:31:03 +01:00
import fr.gouv.etalab.mastodon.client.Entities.Status;
2018-12-15 17:13:06 +01:00
import fr.gouv.etalab.mastodon.client.Entities.TagTimeline;
2019-01-14 18:16:45 +01:00
import fr.gouv.etalab.mastodon.drawers.ArtListAdapter;
2018-10-06 15:59:00 +02:00
import fr.gouv.etalab.mastodon.drawers.PeertubeAdapter;
2019-01-14 18:16:45 +01:00
import fr.gouv.etalab.mastodon.drawers.PixelfedListAdapter;
2017-05-05 16:36:04 +02:00
import fr.gouv.etalab.mastodon.drawers.StatusListAdapter;
import fr.gouv.etalab.mastodon.helper.Helper;
2018-12-21 18:49:02 +01:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveFeedsAfterBookmarkInterface;
2018-11-17 14:31:03 +01:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveFeedsInterface;
2017-09-27 17:52:23 +02:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveMissingFeedsInterface;
import fr.gouv.etalab.mastodon.services.StreamingFederatedTimelineService;
2018-12-19 10:54:26 +01:00
import fr.gouv.etalab.mastodon.services.StreamingHomeTimelineService;
2017-09-30 09:00:00 +02:00
import fr.gouv.etalab.mastodon.services.StreamingLocalTimelineService;
2018-01-05 09:46:59 +01:00
import fr.gouv.etalab.mastodon.sqlite.AccountDAO;
2018-10-06 15:59:00 +02:00
import fr.gouv.etalab.mastodon.sqlite.InstancesDAO;
2018-12-15 17:13:06 +01:00
import fr.gouv.etalab.mastodon.sqlite.SearchDAO;
import fr.gouv.etalab.mastodon.sqlite.Sqlite;
import fr.gouv.etalab.mastodon.sqlite.TempMuteDAO;
2017-05-05 16:36:04 +02:00
/**
* Created by Thomas on 24/04/2017.
* Fragment to display content related to status
*/
2018-12-21 18:49:02 +01:00
public class DisplayStatusFragment extends Fragment implements OnRetrieveFeedsInterface, OnRetrieveMissingFeedsInterface, OnRetrieveFeedsAfterBookmarkInterface {
2017-05-05 16:36:04 +02:00
private boolean flag_loading;
private Context context;
private AsyncTask<Void, Void, Void> asyncTask;
private StatusListAdapter statusListAdapter;
2018-10-06 15:59:00 +02:00
private PeertubeAdapter peertubeAdapater;
2019-01-14 18:16:45 +01:00
private ArtListAdapter artListAdapter;
private PixelfedListAdapter pixelfedListAdapter;
2017-05-05 16:36:04 +02:00
private String max_id;
private List<Status> statuses;
2018-10-06 15:59:00 +02:00
private List<Peertube> peertubes;
private RetrieveFeedsAsyncTask.Type type;
2017-05-05 16:36:04 +02:00
private RelativeLayout mainLoader, nextElementLoader, textviewNoAction;
private boolean firstLoad;
private SwipeRefreshLayout swipeRefreshLayout;
private String targetedId;
private String tag;
2017-10-14 14:36:48 +02:00
private RecyclerView lv_status;
2018-09-05 10:19:07 +02:00
private boolean showMediaOnly, showPinned, showReply;
2018-12-19 10:54:26 +01:00
private Intent streamingHomeIntent, streamingFederatedIntent, streamingLocalIntent;
2017-10-24 14:06:28 +02:00
LinearLayoutManager mLayoutManager;
2017-12-09 07:34:36 +01:00
boolean firstTootsLoaded;
2017-12-28 17:25:36 +01:00
private String userId, instance;
2017-12-28 15:33:02 +01:00
private SharedPreferences sharedpreferences;
2018-04-25 14:03:15 +02:00
private boolean isSwipped;
2018-08-20 19:00:20 +02:00
private String remoteInstance;
2018-09-26 13:45:13 +02:00
private List<String> mutedAccount;
2018-10-06 15:59:00 +02:00
private String instanceType;
2018-10-22 19:19:39 +02:00
private String search_peertube, remote_channel_name;
2018-11-25 16:29:38 +01:00
private String initialBookMark;
2018-11-28 17:31:25 +01:00
private boolean fetchMoreButtonDisplayed;
2018-12-15 17:13:06 +01:00
private TagTimeline tagTimeline;
2018-12-19 15:12:46 +01:00
private String updatedBookMark;
private String lastReadToot;
2019-01-12 17:55:18 +01:00
private TextView textviewNoActionText;
2019-01-03 18:59:44 +01:00
private boolean ischannel;
2019-01-07 19:16:15 +01:00
private boolean ownVideos;
2019-01-10 11:51:25 +01:00
private BroadcastReceiver receive_action;
2019-01-11 16:39:01 +01:00
private BroadcastReceiver receive_data;
2017-08-24 15:57:35 +02:00
public DisplayStatusFragment(){
}
2017-05-05 16:36:04 +02:00
@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
2017-05-05 16:36:04 +02:00
View rootView = inflater.inflate(R.layout.fragment_status, container, false);
2017-05-26 17:20:36 +02:00
statuses = new ArrayList<>();
2018-10-06 15:59:00 +02:00
peertubes = new ArrayList<>();
2017-05-05 16:36:04 +02:00
context = getContext();
Bundle bundle = this.getArguments();
showMediaOnly = false;
2017-12-09 07:34:36 +01:00
//Will allow to load first toots if bookmark != null
2018-12-19 15:12:46 +01:00
firstTootsLoaded = false;
2018-11-28 17:31:25 +01:00
fetchMoreButtonDisplayed = false;
showPinned = false;
2018-09-05 10:19:07 +02:00
showReply = false;
2018-12-15 17:13:06 +01:00
tagTimeline = null;
2017-05-05 16:36:04 +02:00
if (bundle != null) {
type = (RetrieveFeedsAsyncTask.Type) bundle.get("type");
2019-01-03 18:59:44 +01:00
targetedId = bundle.getString("targetedid", null);
2019-01-07 19:16:15 +01:00
ownVideos = bundle.getBoolean("ownvideos", false); //Peetube account watching its videos
2017-05-05 16:36:04 +02:00
tag = bundle.getString("tag", null);
showMediaOnly = bundle.getBoolean("showMediaOnly",false);
showPinned = bundle.getBoolean("showPinned",false);
2018-09-05 10:19:07 +02:00
showReply = bundle.getBoolean("showReply",false);
2018-08-20 19:00:20 +02:00
remoteInstance = bundle.getString("remote_instance", "");
2018-10-20 12:22:35 +02:00
search_peertube = bundle.getString("search_peertube", null);
2018-10-22 19:19:39 +02:00
remote_channel_name = bundle.getString("remote_channel_name", null);
2019-01-14 18:16:45 +01:00
instanceType = bundle.getString("instanceType", "MASTODON");
2019-01-03 18:59:44 +01:00
ischannel = bundle.getBoolean("ischannel",false);
2017-05-05 16:36:04 +02:00
}
2019-01-03 18:59:44 +01:00
if( ischannel)
type = RetrieveFeedsAsyncTask.Type.CHANNEL;
2018-10-06 15:59:00 +02:00
SQLiteDatabase db = Sqlite.getInstance(context, Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open();
2019-01-03 14:23:13 +01:00
//instanceType should not be null only for Peertube accounts
if( !remoteInstance.equals("") && instanceType == null){
2018-10-06 15:59:00 +02:00
List<RemoteInstance> remoteInstanceObj = new InstancesDAO(context, db).getInstanceByName(remoteInstance);
if( remoteInstanceObj != null && remoteInstanceObj.size() > 0)
instanceType = remoteInstanceObj.get(0).getType();
}
2018-04-25 14:03:15 +02:00
isSwipped = false;
2017-05-05 16:36:04 +02:00
max_id = null;
flag_loading = true;
firstLoad = true;
2018-12-19 15:12:46 +01:00
initialBookMark = null;
assert context != null;
2017-12-28 15:33:02 +01:00
sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
boolean isOnWifi = Helper.isOnWIFI(context);
2017-10-21 17:15:52 +02:00
swipeRefreshLayout = rootView.findViewById(R.id.swipeContainer);
lv_status = rootView.findViewById(R.id.lv_status);
mainLoader = rootView.findViewById(R.id.loader);
2017-10-21 17:15:52 +02:00
nextElementLoader = rootView.findViewById(R.id.loading_next_status);
textviewNoAction = rootView.findViewById(R.id.no_action);
2019-01-12 17:55:18 +01:00
textviewNoActionText = rootView.findViewById(R.id.no_action_text);
2017-05-05 16:36:04 +02:00
mainLoader.setVisibility(View.VISIBLE);
nextElementLoader.setVisibility(View.GONE);
2018-10-20 16:26:45 +02:00
userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null);
2018-12-19 15:12:46 +01:00
instance = sharedpreferences.getString(Helper.PREF_INSTANCE, context!=null?Helper.getLiveInstance(context):null);
2018-09-26 13:45:13 +02:00
Account account = new AccountDAO(context, db).getAccountByID(userId);
mutedAccount = new TempMuteDAO(context, db).getAllTimeMuted(account);
2018-12-19 15:12:46 +01:00
//For Home timeline, fetch stored values for bookmark and last read toot
if( type == RetrieveFeedsAsyncTask.Type.HOME) {
initialBookMark = sharedpreferences.getString(Helper.BOOKMARK_ID + userId + instance, null);
lastReadToot = sharedpreferences.getString(Helper.LAST_READ_TOOT_ID + userId + instance, null);
}
2019-01-14 18:16:45 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY") ){
if( type == RetrieveFeedsAsyncTask.Type.TAG && tag != null) {
BaseMainActivity.displayPeertube = null;
List<TagTimeline> tagTimelines = new SearchDAO(context, db).getTimelineInfo(tag);
if( tagTimelines != null && tagTimelines.size() > 0) {
tagTimeline = tagTimelines.get(0);
statusListAdapter = new StatusListAdapter(context, tagTimeline, targetedId, isOnWifi, this.statuses);
lv_status.setAdapter(statusListAdapter);
}
}else{
BaseMainActivity.displayPeertube = null;
statusListAdapter = new StatusListAdapter(context, type, targetedId, isOnWifi, this.statuses);
2018-12-15 17:13:06 +01:00
lv_status.setAdapter(statusListAdapter);
}
2019-01-14 18:16:45 +01:00
}else if( instanceType.equals("PEERTUBE")){
2019-01-06 18:18:13 +01:00
if( remoteInstance != null && MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) //if it's a Peertube account connected
2019-01-03 14:23:13 +01:00
remoteInstance = account.getInstance();
2018-10-20 14:39:24 +02:00
BaseMainActivity.displayPeertube = remoteInstance;
2019-01-07 19:16:15 +01:00
peertubeAdapater = new PeertubeAdapter(context, remoteInstance, ownVideos, this.peertubes);
2018-10-06 15:59:00 +02:00
lv_status.setAdapter(peertubeAdapater);
2019-01-14 18:16:45 +01:00
}else if( instanceType.equals("PIXELFED")){
if( remoteInstance != null && MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PIXELFED) //if it's a Peertube account connected
remoteInstance = account.getInstance();
pixelfedListAdapter = new PixelfedListAdapter(context, type, this.statuses);
2019-01-14 18:16:45 +01:00
lv_status.setAdapter(pixelfedListAdapter);
}else if( instanceType.equals("ART")){
artListAdapter = new ArtListAdapter(context, this.statuses);
lv_status.setAdapter(artListAdapter);
2018-10-06 15:59:00 +02:00
}
2017-10-24 14:06:28 +02:00
mLayoutManager = new LinearLayoutManager(context);
lv_status.setLayoutManager(mLayoutManager);
2018-01-05 09:46:59 +01:00
2018-01-10 14:39:01 +01:00
2019-01-14 18:16:45 +01:00
//Manage broadcast receiver for Mastodon timelines
if( MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) {
2019-01-10 11:51:25 +01:00
if( receive_action != null)
LocalBroadcastManager.getInstance(context).unregisterReceiver(receive_action);
receive_action = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Bundle b = intent.getExtras();
assert b != null;
Status status = b.getParcelable("status");
2019-01-12 09:26:18 +01:00
API.StatusAction statusAction = (API.StatusAction) b.getSerializable("action");
2019-01-13 11:34:32 +01:00
if( status != null && statusListAdapter != null) {
2019-01-12 09:26:18 +01:00
statusListAdapter.notifyStatusWithActionChanged(statusAction, status);
2019-01-10 11:51:25 +01:00
}
}
};
LocalBroadcastManager.getInstance(context).registerReceiver(receive_action, new IntentFilter(Helper.RECEIVE_ACTION));
2019-01-11 16:39:01 +01:00
if( type == RetrieveFeedsAsyncTask.Type.HOME || type == RetrieveFeedsAsyncTask.Type.LOCAL || type == RetrieveFeedsAsyncTask.Type.PUBLIC){
if (receive_data != null)
LocalBroadcastManager.getInstance(context).unregisterReceiver(receive_data);
receive_data = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Bundle b = intent.getExtras();
assert b != null;
String userIdService = b.getString("userIdService", null);
if (userIdService != null && userIdService.equals(userId)) {
Status status = b.getParcelable("data");
refresh(status);
}
}
};
}
if( type == RetrieveFeedsAsyncTask.Type.PUBLIC)
LocalBroadcastManager.getInstance(context).registerReceiver(receive_data, new IntentFilter(Helper.RECEIVE_FEDERATED_DATA));
else if( type == RetrieveFeedsAsyncTask.Type.HOME)
LocalBroadcastManager.getInstance(context).registerReceiver(receive_data, new IntentFilter(Helper.RECEIVE_HOME_DATA));
else if( type == RetrieveFeedsAsyncTask.Type.LOCAL)
LocalBroadcastManager.getInstance(context).registerReceiver(receive_data, new IntentFilter(Helper.RECEIVE_LOCAL_DATA));
2019-01-10 11:51:25 +01:00
}
2017-05-26 17:20:36 +02:00
2018-10-20 14:39:24 +02:00
if( type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && search_peertube != null)
((Activity)context).setTitle(remoteInstance + " - " + search_peertube);
2018-10-22 19:19:39 +02:00
if( type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && remote_channel_name != null)
((Activity)context).setTitle(remote_channel_name + " - " + remoteInstance);
2019-01-14 18:16:45 +01:00
if( type != RetrieveFeedsAsyncTask.Type.POVERVIEW ) //No paginations for Peertube Overviews (it's a fixed size content
lv_status.addOnScrollListener(new RecyclerView.OnScrollListener() {
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy)
{
if (type != RetrieveFeedsAsyncTask.Type.ART && context instanceof BaseMainActivity ) {
if( dy < 0 && !((BaseMainActivity)context).getFloatingVisibility() )
((BaseMainActivity) context).manageFloatingButton(true);
if( dy > 0 && ((BaseMainActivity)context).getFloatingVisibility() )
((BaseMainActivity) context).manageFloatingButton(false);
}
int firstVisibleItem = mLayoutManager.findFirstVisibleItemPosition();
if(dy > 0){
int visibleItemCount = mLayoutManager.getChildCount();
int totalItemCount = mLayoutManager.getItemCount();
if(firstVisibleItem + visibleItemCount == totalItemCount && context != null) {
if(!flag_loading ) {
flag_loading = true;
manageAsyncTask(true);
nextElementLoader.setVisibility(View.VISIBLE);
}
2019-01-14 18:16:45 +01:00
} else {
nextElementLoader.setVisibility(View.GONE);
2017-11-03 10:18:47 +01:00
}
2019-01-14 18:16:45 +01:00
}
if(type == RetrieveFeedsAsyncTask.Type.HOME && statuses != null && statuses.size() > firstVisibleItem && firstVisibleItem >= 0) {
Long bookmarkL = Long.parseLong(statuses.get(firstVisibleItem).getId()) + 1;
updatedBookMark = String.valueOf(bookmarkL);
if( lastReadToot == null || bookmarkL > Long.parseLong(lastReadToot)) //Last read toot, only incremented if the id of the toot is greater than the recorded one
lastReadToot = String.valueOf(bookmarkL);
2017-11-03 10:18:47 +01:00
}
2017-12-09 07:42:46 +01:00
}
2019-01-14 18:16:45 +01:00
});
if( !instanceType.equals("PEERTUBE"))
2018-10-07 14:48:51 +02:00
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
2018-11-23 19:34:44 +01:00
if( type == RetrieveFeedsAsyncTask.Type.HOME)
MainActivity.countNewStatus = 0;
isSwipped = true;
if( type != RetrieveFeedsAsyncTask.Type.CONVERSATION)
2018-11-22 17:53:09 +01:00
retrieveMissingToots(null);
2018-11-23 19:34:44 +01:00
else if( statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
2018-03-16 18:52:43 +01:00
}
2018-10-07 14:48:51 +02:00
});
else
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
if( peertubes.size() > 0) {
int size = peertubes.size();
isSwipped = true;
peertubes.clear();
peertubes = new ArrayList<>();
max_id = "0";
peertubeAdapater.notifyItemRangeRemoved(0, size);
asyncTask = new RetrieveFeedsAsyncTask(context, type, remoteInstance, "0", DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
});
2018-05-11 16:33:16 +02:00
SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK);
switch (theme){
case Helper.THEME_LIGHT:
swipeRefreshLayout.setColorSchemeResources(R.color.mastodonC4,
R.color.mastodonC2,
R.color.mastodonC3);
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ContextCompat.getColor(context, R.color.white));
break;
case Helper.THEME_DARK:
swipeRefreshLayout.setColorSchemeResources(R.color.mastodonC4__,
R.color.mastodonC4,
R.color.mastodonC4);
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ContextCompat.getColor(context, R.color.mastodonC1_));
break;
case Helper.THEME_BLACK:
swipeRefreshLayout.setColorSchemeResources(R.color.dark_icon,
R.color.mastodonC2,
R.color.mastodonC3);
2018-05-12 12:06:43 +02:00
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ContextCompat.getColor(context, R.color.black_3));
2018-05-11 16:33:16 +02:00
break;
}
if( context != null) {
2019-01-14 18:16:45 +01:00
//Load data depending of the value
manageAsyncTask(false);
2017-05-26 17:20:36 +02:00
}else {
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
@Override
public void run() {
if( context != null){
2019-01-14 18:16:45 +01:00
manageAsyncTask(false);
}
}
}, 500);
2017-05-26 17:20:36 +02:00
}
2017-05-05 16:36:04 +02:00
return rootView;
}
2018-12-19 15:12:46 +01:00
@Override
public void onPause(){
super.onPause();
//Store bookmark on pause
if (context instanceof BaseMainActivity && type == RetrieveFeedsAsyncTask.Type.HOME) {
SharedPreferences.Editor editor = sharedpreferences.edit();
if(updatedBookMark != null)
editor.putString(Helper.BOOKMARK_ID + userId + instance, updatedBookMark);
if( lastReadToot != null)
editor.putString(Helper.LAST_READ_TOOT_ID + userId + instance, lastReadToot);
if( lastReadToot != null || updatedBookMark != null)
editor.apply();
}
}
2017-05-05 16:36:04 +02:00
@Override
public void onCreate(Bundle saveInstance)
{
super.onCreate(saveInstance);
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
this.context = context;
}
@Override
public void onDestroy (){
super.onDestroy();
2017-05-05 16:36:04 +02:00
if(asyncTask != null && asyncTask.getStatus() == AsyncTask.Status.RUNNING)
asyncTask.cancel(true);
2019-01-10 11:51:25 +01:00
if( receive_action != null)
LocalBroadcastManager.getInstance(context).unregisterReceiver(receive_action);
2019-01-11 16:39:01 +01:00
if( receive_data != null)
LocalBroadcastManager.getInstance(context).unregisterReceiver(receive_data);
2017-05-05 16:36:04 +02:00
}
@Override
public void onRetrieveFeeds(APIResponse apiResponse) {
2018-12-19 15:12:46 +01:00
//hide loaders
mainLoader.setVisibility(View.GONE);
nextElementLoader.setVisibility(View.GONE);
2018-12-19 15:12:46 +01:00
//handle other API error but discards 404 - error which can often happen due to toots which have been deleted
2019-01-10 16:05:48 +01:00
if( this.peertubes == null || this.statuses == null || apiResponse == null || (apiResponse.getError() != null && apiResponse.getError().getStatusCode() != 404) ){
2018-10-10 08:33:36 +02:00
if( apiResponse == null)
2018-11-25 10:45:16 +01:00
Toasty.error(context, context.getString(R.string.toast_error),Toast.LENGTH_LONG).show();
2018-10-10 08:33:36 +02:00
else
2018-11-25 10:45:16 +01:00
Toasty.error(context, apiResponse.getError().getError(),Toast.LENGTH_LONG).show();
swipeRefreshLayout.setRefreshing(false);
2017-08-19 19:10:43 +02:00
flag_loading = false;
return;
}
2019-01-10 16:05:48 +01:00
2018-12-19 15:12:46 +01:00
//For remote Peertube remote instances
2019-01-14 18:16:45 +01:00
if(instanceType.equals("PEERTUBE")){
2018-10-07 10:45:34 +02:00
int previousPosition = this.peertubes.size();
if( max_id == null)
max_id = "0";
2018-12-19 15:12:46 +01:00
//max_id needs to work like an offset
2018-10-07 10:45:34 +02:00
max_id = String.valueOf(Integer.valueOf(max_id) + 50);
2019-01-10 16:05:48 +01:00
if( apiResponse.getPeertubes() == null){
return;
}
2018-10-07 10:45:34 +02:00
this.peertubes.addAll(apiResponse.getPeertubes());
2018-12-19 15:12:46 +01:00
//If no item were inserted previously the adapter is created
2018-10-07 14:48:51 +02:00
if( previousPosition == 0) {
2019-01-07 19:16:15 +01:00
peertubeAdapater = new PeertubeAdapter(context, remoteInstance, ownVideos, this.peertubes);
2018-10-07 14:48:51 +02:00
lv_status.setAdapter(peertubeAdapater);
}else
peertubeAdapater.notifyItemRangeInserted(previousPosition, apiResponse.getPeertubes().size());
2018-12-19 15:12:46 +01:00
//remove handlers
2018-10-07 10:45:34 +02:00
swipeRefreshLayout.setRefreshing(false);
2019-01-12 17:55:18 +01:00
if( firstLoad && (apiResponse.getPeertubes() == null || apiResponse.getPeertubes().size() ==0)){
textviewNoActionText.setText(R.string.no_video_to_display);
2019-01-12 17:55:18 +01:00
textviewNoAction.setVisibility(View.VISIBLE);
}
2018-10-07 11:57:15 +02:00
flag_loading = false;
2019-01-12 17:55:18 +01:00
firstLoad = false;
2017-12-09 12:40:53 +01:00
}else {
2019-01-14 19:27:15 +01:00
2018-12-19 15:12:46 +01:00
//When Mastodon statuses have been fetched.
if( type == RetrieveFeedsAsyncTask.Type.CONVERSATION ){ //Conversation timeline
//this timeline is dealt differently because it is embedded in Conversation entity and not directly in statuses
2018-10-29 15:49:13 +01:00
List<Conversation> conversations = apiResponse.getConversations();
2018-12-19 15:12:46 +01:00
//Statuses from conversation entity are retrieved
2018-10-29 15:49:13 +01:00
List<Status> statusesConversations = new ArrayList<>();
2018-11-22 07:47:43 +01:00
if( conversations != null) {
for (Conversation conversation : conversations) {
Status status = conversation.getLast_status();
if (status != null) {
status.setConversationId(conversation.getId());
List<String> ppConversation = new ArrayList<>();
for (Account account : conversation.getAccounts())
ppConversation.add(account.getAvatar());
status.setConversationProfilePicture(ppConversation);
}
statusesConversations.add(status);
}
2018-10-29 18:32:55 +01:00
}
2018-10-29 15:49:13 +01:00
apiResponse.setStatuses(statusesConversations);
}
2018-10-07 11:57:15 +02:00
int previousPosition = this.statuses.size();
2018-11-10 08:52:17 +01:00
List<Status> statuses = apiResponse.getStatuses();
2018-12-19 15:12:46 +01:00
//At this point all statuses are in "List<Status> statuses"
2018-12-26 15:43:36 +01:00
//Pagination for Pixelfed
2019-01-14 18:16:45 +01:00
if(instanceType.equals("PIXELFED")) {
2018-12-26 15:43:36 +01:00
if( max_id == null)
max_id = "1";
//max_id needs to work like an offset
max_id = String.valueOf(Integer.valueOf(max_id) + 1);
}else{
max_id = apiResponse.getMax_id();
}
2018-12-19 15:12:46 +01:00
//while max_id is different from null, there are some more toots to load when scrolling
2018-10-07 11:57:15 +02:00
flag_loading = (max_id == null );
2018-12-19 15:12:46 +01:00
//If it's the first load and the reply doesn't contain any toots, a message is displayed.
if( firstLoad && (statuses == null || statuses.size() == 0)) {
2018-10-07 11:57:15 +02:00
textviewNoAction.setVisibility(View.VISIBLE);
2018-12-19 15:12:46 +01:00
lv_status.setVisibility(View.GONE);
}else {
lv_status.setVisibility(View.VISIBLE);
2018-10-07 11:57:15 +02:00
textviewNoAction.setVisibility(View.GONE);
2018-12-19 15:12:46 +01:00
}
2018-10-07 11:57:15 +02:00
//First toot are loaded as soon as the bookmark has been retrieved
2018-12-19 15:12:46 +01:00
//Only for the Home timeline
2018-12-21 18:49:02 +01:00
2018-10-07 11:57:15 +02:00
if( type == RetrieveFeedsAsyncTask.Type.HOME && !firstTootsLoaded){
2018-12-21 18:49:02 +01:00
asyncTask = new RetrieveFeedsAfterBookmarkAsyncTask(context, null, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2018-10-07 11:57:15 +02:00
firstTootsLoaded = true;
}
2018-12-19 15:12:46 +01:00
//Let's deal with statuses
2018-10-07 11:57:15 +02:00
if( statuses != null && statuses.size() > 0) {
2019-01-14 19:27:15 +01:00
if ( statusListAdapter != null || ( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))) {
this.statuses.addAll(statuses);
statusListAdapter.notifyItemRangeInserted(previousPosition, statuses.size());
}else if(instanceType.equals("ART") ) {
2018-12-31 17:30:51 +01:00
boolean show_nsfw = sharedpreferences.getBoolean(Helper.SET_ART_WITH_NSFW, false);
2019-01-14 19:27:15 +01:00
if( !show_nsfw) {
2018-12-31 17:30:51 +01:00
ArrayList<Status> safeStatuses = new ArrayList<>();
for(Status status: statuses){
if( !status.isSensitive())
safeStatuses.add(status);
}
this.statuses.addAll(safeStatuses);
2019-01-14 19:27:15 +01:00
artListAdapter.notifyItemRangeInserted(previousPosition, safeStatuses.size());
}else {
2018-12-15 17:13:06 +01:00
this.statuses.addAll(statuses);
2019-01-14 19:27:15 +01:00
artListAdapter.notifyItemRangeInserted(previousPosition, statuses.size());
2018-12-15 17:13:06 +01:00
}
2019-01-14 19:27:15 +01:00
}else if(instanceType.equals("PIXELFED") ) {
this.statuses.addAll(statuses);
pixelfedListAdapter.notifyItemRangeInserted(previousPosition, statuses.size());
2018-10-07 11:57:15 +02:00
}
2017-09-24 18:44:42 +02:00
}
2018-10-07 11:57:15 +02:00
swipeRefreshLayout.setRefreshing(false);
firstLoad = false;
2017-10-28 10:10:50 +02:00
2018-10-07 11:57:15 +02:00
}
2017-05-05 16:36:04 +02:00
}
2017-09-27 17:52:23 +02:00
/**
* Deals with new status coming from the streaming api
* @param status Status
*/
public void refresh(Status status){
2017-09-06 15:26:58 +02:00
//New data are available
if (context == null)
return;
2017-11-15 19:02:33 +01:00
if( status.getId() != null && statuses != null && statuses.size() > 0 && statuses.get(0)!= null
&& Long.parseLong(status.getId()) > Long.parseLong(statuses.get(0).getId())) {
2018-11-10 08:52:17 +01:00
List<Status> tempTootResult = new ArrayList();
tempTootResult.add(status);
if( tempTootResult.size() > 0)
2018-09-26 13:45:13 +02:00
status = tempTootResult.get(0);
if (type == RetrieveFeedsAsyncTask.Type.HOME) {
2017-12-28 15:33:02 +01:00
//Makes sure the status is not already displayed
if( !statuses.contains(status)){
2017-12-28 15:33:02 +01:00
//Update the id of the last toot retrieved
MainActivity.lastHomeId = status.getId();
statuses.add(0, status);
2018-12-26 15:43:36 +01:00
if (status.getAccount() != null && !status.getAccount().getId().equals(userId)) {
2017-12-28 15:33:02 +01:00
MainActivity.countNewStatus++;
2018-12-22 14:48:36 +01:00
}
2018-12-19 15:12:46 +01:00
try {
((MainActivity) context).updateHomeCounter();
}catch (Exception ignored){}
2019-01-14 19:27:15 +01:00
statusListAdapter.notifyItemInserted(0);
2017-12-28 15:33:02 +01:00
}
2018-10-10 10:42:30 +02:00
} else if (type == RetrieveFeedsAsyncTask.Type.PUBLIC || type == RetrieveFeedsAsyncTask.Type.LOCAL|| type == RetrieveFeedsAsyncTask.Type.DIRECT) {
2017-10-21 19:19:11 +02:00
status.setNew(false);
2017-10-24 11:03:36 +02:00
statuses.add(0, status);
2017-10-24 14:06:28 +02:00
int firstVisibleItem = mLayoutManager.findFirstVisibleItemPosition();
if (firstVisibleItem > 0)
2017-10-24 14:06:28 +02:00
statusListAdapter.notifyItemInserted(0);
else
statusListAdapter.notifyDataSetChanged();
if (textviewNoAction.getVisibility() == View.VISIBLE)
textviewNoAction.setVisibility(View.GONE);
}
2017-08-28 19:12:40 +02:00
}
}
@Override
public void onResume(){
super.onResume();
boolean liveNotifications = sharedpreferences.getBoolean(Helper.SET_LIVE_NOTIFICATIONS, true);
2018-11-23 19:18:38 +01:00
int batteryProfile = sharedpreferences.getInt(Helper.SET_BATTERY_PROFILE, Helper.BATTERY_PROFILE_NORMAL);
2018-12-19 10:54:26 +01:00
if (type == RetrieveFeedsAsyncTask.Type.HOME){
if( getUserVisibleHint() ){
2018-12-19 16:31:48 +01:00
statusListAdapter.updateMuted(mutedAccount);
2018-12-19 10:54:26 +01:00
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_HOME + userId + instance, true);
editor.apply();
if(liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingHomeIntent = new Intent(context, StreamingHomeTimelineService.class);
try {
context.startService(streamingHomeIntent);
}catch (Exception ignored){}
}
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}
} else if( type == RetrieveFeedsAsyncTask.Type.PUBLIC){
2017-09-29 19:07:42 +02:00
if( getUserVisibleHint() ){
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_FEDERATED + userId + instance, true);
editor.apply();
2018-11-23 19:18:38 +01:00
if(liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingFederatedIntent = new Intent(context, StreamingFederatedTimelineService.class);
2018-09-04 07:29:42 +02:00
try {
context.startService(streamingFederatedIntent);
}catch (Exception ignored){}
}
2017-10-07 08:34:50 +02:00
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}
2017-09-30 09:00:00 +02:00
}else if (type == RetrieveFeedsAsyncTask.Type.LOCAL){
2017-09-30 09:00:00 +02:00
if( getUserVisibleHint() ){
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_LOCAL + userId + instance, true);
2017-09-30 09:00:00 +02:00
editor.apply();
2018-11-23 19:18:38 +01:00
if( liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingLocalIntent = new Intent(context, StreamingLocalTimelineService.class);
2018-09-04 07:29:42 +02:00
try {
context.startService(streamingLocalIntent);
}catch (Exception ignored){}
}
2017-10-07 08:34:50 +02:00
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
2017-09-30 09:00:00 +02:00
}
2018-10-26 17:00:38 +02:00
}else if (type == RetrieveFeedsAsyncTask.Type.DIRECT){
if( getUserVisibleHint() ){
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}
2018-11-18 17:24:12 +01:00
}else if (type == RetrieveFeedsAsyncTask.Type.CONVERSATION){
if( getUserVisibleHint() ){
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}
2018-11-21 18:04:10 +01:00
}else if (type == RetrieveFeedsAsyncTask.Type.TAG){
if( getUserVisibleHint() ){
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}
}
}
2017-09-27 17:52:23 +02:00
/**
* Called from main activity in onResume to retrieve missing toots (home timeline)
* @param sinceId String
*/
public void retrieveMissingToots(String sinceId){
2018-12-23 10:43:45 +01:00
if( type == RetrieveFeedsAsyncTask.Type.HOME)
asyncTask = new RetrieveFeedsAfterBookmarkAsyncTask(context, null, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2019-01-14 19:27:15 +01:00
if (type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE )
asyncTask = new RetrieveMissingFeedsAsyncTask(context, remoteInstance, sinceId, type, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2018-12-16 18:03:39 +01:00
else if(type == RetrieveFeedsAsyncTask.Type.TAG)
asyncTask = new RetrieveMissingFeedsAsyncTask(context, tag, sinceId, type, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2018-08-24 15:47:16 +02:00
else
asyncTask = new RetrieveMissingFeedsAsyncTask(context, sinceId, type, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-09-27 17:52:23 +02:00
}
/**
* When tab comes visible, first displayed toot is defined as read
* @param visible boolean
*/
2017-09-13 15:21:03 +02:00
@Override
public void setMenuVisibility(final boolean visible) {
super.setMenuVisibility(visible);
if( context == null)
return;
boolean liveNotifications = sharedpreferences.getBoolean(Helper.SET_LIVE_NOTIFICATIONS, true);
2018-11-23 19:18:38 +01:00
int batteryProfile = sharedpreferences.getInt(Helper.SET_BATTERY_PROFILE, Helper.BATTERY_PROFILE_NORMAL);
2017-09-13 15:21:03 +02:00
//Store last toot id for home timeline to avoid to notify for those that have been already seen
2018-12-19 10:54:26 +01:00
if (type == RetrieveFeedsAsyncTask.Type.HOME ) {
if (visible) {
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_HOME + userId + instance, true);
editor.apply();
if(liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingHomeIntent = new Intent(context, StreamingHomeTimelineService.class);
try {
context.startService(streamingHomeIntent);
}catch (Exception ignored){}
}
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}else {
if( streamingHomeIntent != null ){
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_HOME + userId + instance, false);
editor.apply();
context.stopService(streamingHomeIntent);
}
}
2017-10-07 08:34:50 +02:00
} else if( type == RetrieveFeedsAsyncTask.Type.PUBLIC ){
if (visible) {
2017-09-29 14:08:46 +02:00
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_FEDERATED + userId + instance, true);
2017-09-29 14:08:46 +02:00
editor.apply();
2018-11-23 19:18:38 +01:00
if(liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingFederatedIntent = new Intent(context, StreamingFederatedTimelineService.class);
2018-09-04 07:29:42 +02:00
try {
context.startService(streamingFederatedIntent);
}catch (Exception ignored){}
}
2017-10-07 08:34:50 +02:00
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
}else {
2017-11-11 10:05:37 +01:00
if( streamingFederatedIntent != null ){
2017-09-29 14:08:46 +02:00
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_FEDERATED + userId + instance, false);
2017-09-29 14:08:46 +02:00
editor.apply();
context.stopService(streamingFederatedIntent);
}
}
2017-09-30 09:00:00 +02:00
}else if (type == RetrieveFeedsAsyncTask.Type.LOCAL){
if (visible) {
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_LOCAL + userId + instance, true);
2017-09-30 09:00:00 +02:00
editor.apply();
2018-11-23 19:18:38 +01:00
if( liveNotifications && batteryProfile == Helper.BATTERY_PROFILE_NORMAL) {
streamingLocalIntent = new Intent(context, StreamingLocalTimelineService.class);
2018-09-04 07:29:42 +02:00
try {
context.startService(streamingLocalIntent);
}catch (Exception ignored){}
}
2017-10-07 08:34:50 +02:00
if( statuses != null && statuses.size() > 0)
retrieveMissingToots(statuses.get(0).getId());
2017-09-30 09:00:00 +02:00
}else {
2017-11-11 10:05:37 +01:00
if( streamingLocalIntent != null ){
2017-09-30 09:00:00 +02:00
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_LOCAL + userId + instance, false);
2017-09-30 09:00:00 +02:00
editor.apply();
context.stopService(streamingLocalIntent);
}
}
}
2017-09-13 15:21:03 +02:00
}
2017-09-29 14:08:46 +02:00
@Override
public void onStop(){
super.onStop();
2018-12-19 10:54:26 +01:00
if( type == RetrieveFeedsAsyncTask.Type.HOME && streamingHomeIntent != null){
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_HOME + userId + instance, false);
editor.apply();
context.stopService(streamingHomeIntent);
} else if( type == RetrieveFeedsAsyncTask.Type.PUBLIC && streamingFederatedIntent != null){
2017-09-29 14:08:46 +02:00
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_FEDERATED + userId + instance, false);
2017-09-29 14:08:46 +02:00
editor.apply();
context.stopService(streamingFederatedIntent);
2017-09-30 09:00:00 +02:00
}else if(type == RetrieveFeedsAsyncTask.Type.LOCAL && streamingLocalIntent != null){
SharedPreferences.Editor editor = sharedpreferences.edit();
2017-12-28 17:39:02 +01:00
editor.putBoolean(Helper.SHOULD_CONTINUE_STREAMING_LOCAL + userId + instance, false);
2017-09-30 09:00:00 +02:00
editor.apply();
context.stopService(streamingLocalIntent);
2017-09-29 14:08:46 +02:00
}
}
public void scrollToTop(){
2017-09-16 09:56:26 +02:00
if( lv_status != null) {
lv_status.setAdapter(statusListAdapter);
2017-09-16 09:56:26 +02:00
}
}
2018-11-10 08:52:17 +01:00
/**
* Refresh status in list
*/
public void refreshFilter(){
2019-01-14 19:27:15 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))
statusListAdapter.notifyDataSetChanged();
else if( instanceType.equals("PIXELFED"))
pixelfedListAdapter.notifyDataSetChanged();
else if( instanceType.equals("ART"))
artListAdapter.notifyDataSetChanged();
2018-11-10 08:52:17 +01:00
}
2017-09-27 17:52:23 +02:00
@Override
2018-11-10 08:52:17 +01:00
public void onRetrieveMissingFeeds(List<Status> statuses) {
2018-11-04 10:01:16 +01:00
if(swipeRefreshLayout == null)
return;
2018-03-10 12:18:31 +01:00
swipeRefreshLayout.setRefreshing(false);
2018-10-20 16:26:45 +02:00
2018-04-25 14:03:15 +02:00
if( isSwipped && this.statuses != null && this.statuses.size() > 0) {
for (Status status : this.statuses) {
status.setNew(false);
}
2019-01-14 19:27:15 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))
statusListAdapter.notifyItemRangeChanged(0, this.statuses.size());
else if( instanceType.equals("PIXELFED"))
pixelfedListAdapter.notifyItemRangeChanged(0, this.statuses.size());
else if( instanceType.equals("ART"))
artListAdapter.notifyItemRangeChanged(0, this.statuses.size());
}
2018-04-25 14:03:15 +02:00
isSwipped = false;
2017-09-27 17:52:23 +02:00
if( statuses != null && statuses.size() > 0) {
2017-10-24 14:06:28 +02:00
int inserted = 0;
2018-11-22 19:15:31 +01:00
int insertedConversation = 0;
2018-11-21 18:04:10 +01:00
if(type == RetrieveFeedsAsyncTask.Type.CONVERSATION){ //Remove conversation already displayed if new messages
int position = 0;
2018-11-23 19:34:44 +01:00
insertedConversation = statuses.size();
2018-11-21 18:04:10 +01:00
if( this.statuses != null) {
for (Iterator<Status> it = this.statuses.iterator(); it.hasNext(); ) {
Status status = it.next();
for (Status status1 : statuses) {
if (status.getConversationId() != null && status.getConversationId().equals(status1.getConversationId())) {
2019-01-14 19:27:15 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))
statusListAdapter.notifyItemRemoved(position);
else if( instanceType.equals("PIXELFED"))
pixelfedListAdapter.notifyItemRemoved(position);
else if( instanceType.equals("ART"))
artListAdapter.notifyItemRemoved(position);
2018-11-21 18:04:10 +01:00
it.remove();
}
}
position++;
}
}
}
2017-10-24 11:03:36 +02:00
for (int i = statuses.size() - 1; i >= 0; i--) {
2018-09-26 13:45:13 +02:00
if( this.statuses != null) {
2018-12-27 17:49:50 +01:00
if( type != RetrieveFeedsAsyncTask.Type.HOME){
2018-12-28 12:09:06 +01:00
if( tagTimeline == null || !tagTimeline.isART() || (tagTimeline.isART() && tagTimeline.isNSFW())) {
2019-01-02 13:31:11 +01:00
if (this.statuses.size() == 0 || Long.parseLong(statuses.get(i).getId()) > Long.parseLong(this.statuses.get(0).getId())) {
2018-12-28 12:09:06 +01:00
inserted++;
this.statuses.add(0, statuses.get(i));
2019-01-14 19:27:15 +01:00
2018-12-28 12:09:06 +01:00
}
}else{
ArrayList<Status> safeStatuses = new ArrayList<>();
for(Status status: statuses){
if( !status.isSensitive())
safeStatuses.add(status);
}
this.statuses.addAll(safeStatuses);
2019-01-14 19:27:15 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))
statusListAdapter.notifyItemRangeInserted(0, safeStatuses.size());
else if( instanceType.equals("PIXELFED"))
pixelfedListAdapter.notifyItemRangeInserted(0, safeStatuses.size());
else if( instanceType.equals("ART"))
artListAdapter.notifyItemRangeInserted(0, safeStatuses.size());
2018-12-27 17:49:50 +01:00
}
}else {
if( lastReadToot != null && Long.parseLong(statuses.get(i).getId()) > Long.parseLong(lastReadToot)) {
2018-12-28 15:21:36 +01:00
if( !this.statuses.contains(statuses.get(i)) ) {
statuses.get(i).setNew(true);
MainActivity.countNewStatus++;
inserted++;
this.statuses.add(0, statuses.get(i));
}
2018-12-22 11:08:04 +01:00
}
2018-09-26 13:45:13 +02:00
}
2017-10-07 13:00:08 +02:00
}
2017-09-27 17:52:23 +02:00
}
2019-01-14 19:27:15 +01:00
if( instanceType.equals("MASTODON") || instanceType.equals("MISSKEY"))
statusListAdapter.notifyItemRangeInserted(0, inserted);
else if( instanceType.equals("PIXELFED"))
pixelfedListAdapter.notifyItemRangeInserted(0, inserted);
else if( instanceType.equals("ART"))
artListAdapter.notifyItemRangeInserted(0, inserted);
2017-09-27 17:52:23 +02:00
try {
2017-10-25 13:45:22 +02:00
if( type == RetrieveFeedsAsyncTask.Type.HOME)
((MainActivity) context).updateHomeCounter();
2018-11-22 19:15:31 +01:00
else {
if( type != RetrieveFeedsAsyncTask.Type.CONVERSATION)
((MainActivity) context).updateTimeLine(type, inserted);
else
((MainActivity) context).updateTimeLine(type, insertedConversation);
}
2017-09-27 17:52:23 +02:00
}catch (Exception ignored){}
}
}
2017-12-06 16:56:59 +01:00
public void fetchMore(String max_id){
2018-11-28 17:31:25 +01:00
fetchMoreButtonDisplayed = false;
2018-12-21 18:49:02 +01:00
asyncTask = new RetrieveFeedsAfterBookmarkAsyncTask(context, max_id, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
@Override
public void onRetrieveFeedsAfterBookmark(APIResponse apiResponse) {
if( apiResponse == null || (apiResponse.getError() != null && apiResponse.getError().getStatusCode() != 404) ){
if( apiResponse == null)
Toasty.error(context, context.getString(R.string.toast_error),Toast.LENGTH_LONG).show();
else
Toasty.error(context, apiResponse.getError().getError(),Toast.LENGTH_LONG).show();
swipeRefreshLayout.setRefreshing(false);
flag_loading = false;
return;
}
List<Status> statuses = apiResponse.getStatuses();
2018-12-24 09:51:02 +01:00
if( statuses == null || statuses.size() == 0 )
return;
2018-12-21 18:49:02 +01:00
//Find the position of toots between those already present
int position = 0;
while (position < this.statuses.size() && Long.parseLong(statuses.get(0).getId()) < Long.parseLong(this.statuses.get(position).getId())) {
position++;
}
ArrayList<Status> tmpStatuses = new ArrayList<>();
for (Status tmpStatus : statuses) {
//Put the toot at its place in the list (id desc)
if( !this.statuses.contains(tmpStatus) ) { //Element not already added
//Mark status at new ones when their id is greater than the last read toot id
2018-12-22 11:08:04 +01:00
if (type == RetrieveFeedsAsyncTask.Type.HOME && lastReadToot != null && Long.parseLong(tmpStatus.getId()) > Long.parseLong(lastReadToot)) {
2018-12-21 18:49:02 +01:00
tmpStatus.setNew(true);
MainActivity.countNewStatus++;
}
tmpStatuses.add(tmpStatus);
}
}
2018-12-21 19:15:35 +01:00
try {
((MainActivity) context).updateHomeCounter();
}catch (Exception ignored){}
2018-12-21 18:49:02 +01:00
int tootPerPage = sharedpreferences.getInt(Helper.SET_TOOTS_PER_PAGE, 40);
//Display the fetch more toot button
if( tmpStatuses.size() >= tootPerPage) {
2018-12-24 09:51:02 +01:00
if (initialBookMark != null && !fetchMoreButtonDisplayed && tmpStatuses.size() > 0 && Long.parseLong(tmpStatuses.get(tmpStatuses.size() - 1).getId()) > Long.parseLong(initialBookMark)) {
2018-12-21 18:49:02 +01:00
tmpStatuses.get(tmpStatuses.size() - 1).setFetchMore(true);
fetchMoreButtonDisplayed = true;
}
}
this.statuses.addAll(position, tmpStatuses);
statusListAdapter.notifyItemRangeInserted(position, tmpStatuses.size());
2018-12-26 16:18:13 +01:00
if( textviewNoAction.getVisibility() == View.VISIBLE && tmpStatuses.size() > 0){
textviewNoAction.setVisibility(View.GONE);
lv_status.setVisibility(View.VISIBLE);
}
2017-12-06 16:56:59 +01:00
}
//Update last read toots value when pressing tab button
public void updateLastReadToot(){
if (type == RetrieveFeedsAsyncTask.Type.HOME && this.statuses != null && this.statuses.size() > 0) {
lastReadToot = this.statuses.get(0).getId();
}
}
2019-01-10 11:51:25 +01:00
2019-01-14 18:16:45 +01:00
private void manageAsyncTask(boolean pagination){
//Message for an account
if (type == RetrieveFeedsAsyncTask.Type.USER || type == RetrieveFeedsAsyncTask.Type.CHANNEL)
asyncTask = new RetrieveFeedsAsyncTask(context, type, targetedId, max_id, showMediaOnly, showPinned, showReply,DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
//Tag timelines
else if (type == RetrieveFeedsAsyncTask.Type.TAG)
asyncTask = new RetrieveFeedsAsyncTask(context, type, tag, targetedId, max_id, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
else if( type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE) {
//Remote instances
if( search_peertube == null) { //Not a Peertube search
if( remote_channel_name == null) { //Not a channel
asyncTask = new RetrieveFeedsAsyncTask(context, type, remoteInstance, max_id, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
else
asyncTask = new RetrieveFeedsAsyncTask(context, remoteInstance, remote_channel_name, null, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
else
asyncTask = new RetrievePeertubeSearchAsyncTask(context, remoteInstance, search_peertube, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}else {
if( !pagination) {
if (type == RetrieveFeedsAsyncTask.Type.HOME) {
if (context instanceof BaseMainActivity) {
asyncTask = new RetrieveFeedsAsyncTask(context, type, initialBookMark, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
} else { //Most classical search will be done by this call
asyncTask = new RetrieveFeedsAsyncTask(context, type, null, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}else {
if( type == RetrieveFeedsAsyncTask.Type.HOME){
asyncTask = new RetrieveFeedsAsyncTask(context, type, max_id, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}else {//Most classical search will be done by this call for pagination
asyncTask = new RetrieveFeedsAsyncTask(context, type, max_id, DisplayStatusFragment.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
}
}
2017-05-05 16:36:04 +02:00
}