fedilab-Android-App/app/src/main/java/app/fedilab/android/mastodon/ui/fragment/timeline/FragmentMastodonTimeline.java

1329 lines
69 KiB
Java
Raw Normal View History

2023-01-22 15:22:59 +01:00
package app.fedilab.android.mastodon.ui.fragment.timeline;
2022-04-27 15:20:42 +02:00
/* Copyright 2021 Thomas Schneider
*
* This file is a part of Fedilab
*
* 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.
*
* Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
2022-10-23 11:59:50 +02:00
import static app.fedilab.android.BaseMainActivity.currentInstance;
2022-04-27 15:20:42 +02:00
import static app.fedilab.android.BaseMainActivity.networkAvailable;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
2022-06-28 19:30:45 +02:00
import android.content.SharedPreferences;
2022-04-27 15:20:42 +02:00
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
2022-11-02 18:37:29 +01:00
import androidx.annotation.Nullable;
2023-12-12 16:07:48 +01:00
import androidx.core.content.ContextCompat;
2022-04-27 15:20:42 +02:00
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvider;
2022-06-28 19:30:45 +02:00
import androidx.preference.PreferenceManager;
2022-04-27 15:20:42 +02:00
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import androidx.recyclerview.widget.SimpleItemAnimator;
2022-04-27 15:20:42 +02:00
2023-01-11 16:26:31 +01:00
import com.bumptech.glide.integration.recyclerview.RecyclerViewPreloader;
import com.bumptech.glide.util.ViewPreloadSizeProvider;
2022-04-27 15:20:42 +02:00
import java.util.ArrayList;
import java.util.List;
import app.fedilab.android.BaseMainActivity;
import app.fedilab.android.R;
import app.fedilab.android.activities.MainActivity;
2022-04-27 15:20:42 +02:00
import app.fedilab.android.databinding.FragmentPaginationBinding;
2023-01-22 15:22:59 +01:00
import app.fedilab.android.mastodon.client.entities.api.Account;
import app.fedilab.android.mastodon.client.entities.api.Attachment;
import app.fedilab.android.mastodon.client.entities.api.Pagination;
import app.fedilab.android.mastodon.client.entities.api.Status;
import app.fedilab.android.mastodon.client.entities.api.Statuses;
import app.fedilab.android.mastodon.client.entities.app.BaseAccount;
2023-01-22 15:22:59 +01:00
import app.fedilab.android.mastodon.client.entities.app.BubbleTimeline;
import app.fedilab.android.mastodon.client.entities.app.CachedBundle;
2023-01-22 15:22:59 +01:00
import app.fedilab.android.mastodon.client.entities.app.PinnedTimeline;
import app.fedilab.android.mastodon.client.entities.app.RemoteInstance;
import app.fedilab.android.mastodon.client.entities.app.TagTimeline;
import app.fedilab.android.mastodon.client.entities.app.Timeline;
2024-01-11 10:58:22 +01:00
import app.fedilab.android.mastodon.exception.DBException;
2023-01-22 15:22:59 +01:00
import app.fedilab.android.mastodon.helper.CrossActionHelper;
import app.fedilab.android.mastodon.helper.GlideApp;
import app.fedilab.android.mastodon.helper.Helper;
import app.fedilab.android.mastodon.helper.MastodonHelper;
import app.fedilab.android.mastodon.ui.drawer.StatusAdapter;
import app.fedilab.android.mastodon.viewmodel.mastodon.AccountsVM;
import app.fedilab.android.mastodon.viewmodel.mastodon.SearchVM;
import app.fedilab.android.mastodon.viewmodel.mastodon.TimelinesVM;
2022-07-30 18:47:30 +02:00
import es.dmoral.toasty.Toasty;
2022-04-27 15:20:42 +02:00
public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.FetchMoreCallBack {
2022-04-27 15:20:42 +02:00
2023-01-12 14:55:53 +01:00
private static final int PRELOAD_AHEAD_ITEMS = 10;
2022-11-02 18:37:29 +01:00
public UpdateCounters update;
2023-07-27 14:47:22 +02:00
private boolean scrollingUp;
2022-04-27 15:20:42 +02:00
private FragmentPaginationBinding binding;
private TimelinesVM timelinesVM;
private AccountsVM accountsVM;
private boolean flagLoading;
private String search, searchCache;
2023-07-11 17:08:42 +02:00
private Status statusReport, initialStatus /*Used to put a message at the top*/;
private String max_id, min_id, min_id_fetch_more, max_id_fetch_more;
private Integer offset;
2022-04-27 15:20:42 +02:00
private StatusAdapter statusAdapter;
private Timeline.TimeLineEnum timelineType;
2022-09-27 11:19:49 +02:00
private List<Status> timelineStatuses;
//Handle actions that can be done in other fragments
private final BroadcastReceiver receive_action = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
2024-01-11 17:05:35 +01:00
Bundle args = intent.getExtras();
if (args != null) {
long bundleId = args.getLong(Helper.ARG_INTENT_ID, -1);
2024-01-29 15:02:56 +01:00
new CachedBundle(requireActivity()).getBundle(bundleId, Helper.getCurrentAccount(requireActivity()), bundle -> {
2024-01-11 17:05:35 +01:00
Status receivedStatus = (Status) bundle.getSerializable(Helper.ARG_STATUS_ACTION);
String delete_statuses_for_user = bundle.getString(Helper.ARG_STATUS_ACCOUNT_ID_DELETED);
String delete_all_for_account_id = bundle.getString(Helper.ARG_DELETE_ALL_FOR_ACCOUNT_ID);
Status status_to_delete = (Status) bundle.getSerializable(Helper.ARG_STATUS_DELETED);
Status status_to_update = (Status) bundle.getSerializable(Helper.ARG_STATUS_UPDATED);
Status statusPosted = (Status) bundle.getSerializable(Helper.ARG_STATUS_DELETED);
boolean refreshAll = bundle.getBoolean(Helper.ARG_TIMELINE_REFRESH_ALL, false);
if (receivedStatus != null && statusAdapter != null) {
int position = getPosition(receivedStatus);
if (position >= 0) {
if (receivedStatus.reblog != null) {
timelineStatuses.get(position).reblog = receivedStatus.reblog;
}
if (timelineStatuses.get(position).reblog != null) {
timelineStatuses.get(position).reblog.reblogged = receivedStatus.reblogged;
timelineStatuses.get(position).reblog.favourited = receivedStatus.favourited;
timelineStatuses.get(position).reblog.bookmarked = receivedStatus.bookmarked;
timelineStatuses.get(position).reblog.reblogs_count = receivedStatus.reblogs_count;
timelineStatuses.get(position).reblog.favourites_count = receivedStatus.favourites_count;
} else {
timelineStatuses.get(position).reblogged = receivedStatus.reblogged;
timelineStatuses.get(position).favourited = receivedStatus.favourited;
timelineStatuses.get(position).bookmarked = receivedStatus.bookmarked;
timelineStatuses.get(position).reblogs_count = receivedStatus.reblogs_count;
timelineStatuses.get(position).favourites_count = receivedStatus.favourites_count;
}
2024-01-11 17:05:35 +01:00
statusAdapter.notifyItemChanged(position);
}
2024-01-11 17:05:35 +01:00
} else if (delete_statuses_for_user != null && statusAdapter != null) {
List<Status> statusesToRemove = new ArrayList<>();
for (Status status : timelineStatuses) {
if (status != null && status.account != null && status.account.id != null && status.account.id.equals(delete_statuses_for_user)) {
statusesToRemove.add(status);
}
}
for (Status statusToRemove : statusesToRemove) {
int position = getPosition(statusToRemove);
if (position >= 0) {
timelineStatuses.remove(position);
statusAdapter.notifyItemRemoved(position);
}
}
} else if (status_to_delete != null && statusAdapter != null) {
int position = getPosition(status_to_delete);
if (position >= 0) {
2022-09-27 11:19:49 +02:00
timelineStatuses.remove(position);
statusAdapter.notifyItemRemoved(position);
}
2024-01-11 17:05:35 +01:00
} else if (status_to_update != null && statusAdapter != null) {
int position = getPosition(status_to_update);
if (position >= 0) {
timelineStatuses.set(position, status_to_update);
statusAdapter.notifyItemChanged(position);
}
} else if (statusPosted != null && statusAdapter != null && timelineType == Timeline.TimeLineEnum.HOME) {
timelineStatuses.add(0, statusPosted);
statusAdapter.notifyItemInserted(0);
} else if (delete_all_for_account_id != null) {
List<Status> toRemove = new ArrayList<>();
if (timelineStatuses != null) {
for (int position = 0; position < timelineStatuses.size(); position++) {
if (timelineStatuses.get(position).account.id.equals(delete_all_for_account_id)) {
toRemove.add(timelineStatuses.get(position));
}
}
}
2024-01-11 17:05:35 +01:00
if (toRemove.size() > 0) {
for (int i = 0; i < toRemove.size(); i++) {
int position = getPosition(toRemove.get(i));
if (position >= 0) {
timelineStatuses.remove(position);
statusAdapter.notifyItemRemoved(position);
}
}
}
2024-01-11 17:05:35 +01:00
} else if (refreshAll) {
refreshAllAdapters();
}
2024-01-11 17:05:35 +01:00
});
}
}
};
2024-01-23 16:02:28 +01:00
private Bundle arguments;
2023-07-27 14:47:22 +02:00
private boolean retry_for_home_done;
private String lemmy_post_id;
2023-01-01 11:55:32 +01:00
private boolean checkRemotely;
private String accountIDInRemoteInstance;
2022-11-02 18:37:29 +01:00
private boolean isViewInitialized;
private Statuses initialStatuses;
2022-05-24 10:12:04 +02:00
private String list_id;
private TagTimeline tagTimeline;
private BubbleTimeline bubbleTimeline;
2022-05-24 10:12:04 +02:00
private LinearLayoutManager mLayoutManager;
private Account accountTimeline;
private boolean exclude_replies, exclude_reblogs, show_pinned, media_only, minified;
private String viewModelKey, remoteInstance;
2022-06-27 18:16:41 +02:00
private PinnedTimeline pinnedTimeline;
2022-05-24 10:12:04 +02:00
private String ident;
2022-09-26 17:09:28 +02:00
private String slug;
2022-06-29 16:33:11 +02:00
private boolean canBeFederated;
private boolean rememberPosition;
private String publicTrendsDomain;
2022-11-26 18:10:47 +01:00
private int lockForResumeCall;
private boolean isNotPinnedTimeline;
2023-03-08 15:07:52 +01:00
2023-01-01 11:55:32 +01:00
//Allow to recreate data when detaching/attaching fragment
public void recreate() {
initialStatuses = null;
if (timelineStatuses != null && timelineStatuses.size() > 0) {
int count = timelineStatuses.size();
timelineStatuses.clear();
timelineStatuses = new ArrayList<>();
if (statusAdapter != null) {
statusAdapter.notifyItemRangeRemoved(0, count);
max_id = statusReport != null ? statusReport.id : null;
offset = 0;
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
rememberPosition = sharedpreferences.getBoolean(getString(R.string.SET_REMEMBER_POSITION), true);
//Inner marker are only for pinned timelines and main timelines, they have isViewInitialized set to false
2023-07-14 10:14:09 +02:00
if (max_id == null && !isViewInitialized && rememberPosition) {
max_id = sharedpreferences.getString(getString(R.string.SET_INNER_MARKER) + BaseMainActivity.currentUserID + BaseMainActivity.currentInstance + slug, null);
}
//Only fragment in main view pager should not have the view initialized
//AND Only the first fragment will initialize its view
flagLoading = false;
router(null);
}
}
}
@Override
public void onResume() {
super.onResume();
if (!isViewInitialized) {
isViewInitialized = true;
if (initialStatuses != null) {
initializeStatusesCommonView(initialStatuses);
} else {
2022-11-20 11:39:49 +01:00
router(null);
}
2022-11-20 16:30:13 +01:00
} else {
if (isNotPinnedTimeline && lockForResumeCall == 0) {
2022-11-26 18:10:47 +01:00
router(null);
lockForResumeCall++;
2022-12-01 18:26:46 +01:00
} /*else if (!isNotPinnedTimeline) {
2022-11-26 18:10:47 +01:00
router(null);
2022-12-01 18:26:46 +01:00
}*/
}
if (timelineStatuses != null && timelineStatuses.size() > 0) {
2022-11-26 18:10:47 +01:00
route(DIRECTION.FETCH_NEW, true);
}
}
/**
* Return the position of the status in the ArrayList
*
* @param status - Status to fetch
* @return position or -1 if not found
*/
private int getPosition(Status status) {
int position = 0;
boolean found = false;
2022-06-12 11:28:13 +02:00
if (status.id == null) {
return -1;
}
2022-09-27 11:19:49 +02:00
for (Status _status : timelineStatuses) {
if (_status.reblog == null && _status.id != null && _status.id.compareTo(status.id) == 0) {
found = true;
break;
} else if (_status.reblog != null && _status.reblog.id != null && _status.reblog.id.compareTo(status.id) == 0) {
found = true;
break;
}
position++;
}
return found ? position : -1;
}
2023-03-12 16:16:42 +01:00
private int getDirectPosition(Status status) {
int position = 0;
boolean found = false;
if (status.id == null) {
return -1;
}
for (Status _status : timelineStatuses) {
if (_status.id != null && _status.id.compareTo(status.id) == 0) {
found = true;
break;
}
position++;
}
return found ? position : -1;
}
/**
* Return the position of the status in the ArrayList
*
* @param status - Status to fetch
* @return position or -1 if not found
*/
private int getAbsolutePosition(Status status) {
int position = 0;
boolean found = false;
if (status.id == null) {
return -1;
}
for (Status _status : timelineStatuses) {
if (_status.id != null && _status.id.compareTo(status.id) == 0) {
found = true;
break;
}
position++;
}
return found ? position : -1;
}
2022-05-25 14:41:27 +02:00
/**
* Returned list of checked status id for reports
*
* @return List<String>
*/
public List<String> getCheckedStatusesId() {
List<String> stringList = new ArrayList<>();
2022-09-27 11:19:49 +02:00
for (Status status : timelineStatuses) {
2022-05-25 14:41:27 +02:00
if (status.isChecked) {
stringList.add(status.id);
}
}
return stringList;
}
public void scrollToTop() {
if (binding != null && search == null) {
2022-07-19 15:49:47 +02:00
binding.swipeContainer.setRefreshing(true);
flagLoading = false;
route(DIRECTION.SCROLL_TOP, true);
}
2022-05-25 14:41:27 +02:00
}
public void goTop() {
if (binding != null && search == null) {
binding.recyclerView.scrollToPosition(0);
}
}
2024-01-19 11:34:53 +01:00
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
2022-04-27 15:20:42 +02:00
public View onCreateView(@NonNull LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
2024-01-11 10:58:22 +01:00
2024-01-11 12:02:22 +01:00
timelineType = Timeline.TimeLineEnum.HOME;
2022-04-27 15:20:42 +02:00
binding = FragmentPaginationBinding.inflate(inflater, container, false);
2024-01-19 11:34:53 +01:00
arguments = getArguments();
return binding.getRoot();
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
binding.loader.setVisibility(View.VISIBLE);
binding.recyclerView.setVisibility(View.GONE);
if (search != null) {
binding.swipeContainer.setRefreshing(false);
binding.swipeContainer.setEnabled(false);
}
if (arguments != null) {
long bundleId = arguments.getLong(Helper.ARG_INTENT_ID, -1);
2024-01-09 16:00:35 +01:00
if (bundleId != -1) {
2024-01-29 15:02:56 +01:00
new CachedBundle(requireActivity()).getBundle(bundleId, Helper.getCurrentAccount(requireActivity()), this::initializeAfterBundle);
} else {
2024-01-19 11:34:53 +01:00
if (arguments.containsKey(Helper.ARG_CACHED_ACCOUNT_ID)) {
2024-01-11 12:02:22 +01:00
try {
2024-01-29 15:02:56 +01:00
accountTimeline = new CachedBundle(requireActivity()).getCachedAccount(Helper.getCurrentAccount(requireActivity()), arguments.getString(Helper.ARG_CACHED_ACCOUNT_ID));
2024-01-11 12:02:22 +01:00
} catch (DBException e) {
e.printStackTrace();
}
2024-01-11 10:58:22 +01:00
}
2024-01-19 11:34:53 +01:00
initializeAfterBundle(arguments);
}
}
2022-05-25 14:41:27 +02:00
}
2024-01-23 16:02:28 +01:00
private void initializeAfterBundle(Bundle bundle) {
2024-01-11 12:02:22 +01:00
if (bundle != null) {
timelineType = (Timeline.TimeLineEnum) bundle.get(Helper.ARG_TIMELINE_TYPE);
lemmy_post_id = bundle.getString(Helper.ARG_LEMMY_POST_ID, null);
list_id = bundle.getString(Helper.ARG_LIST_ID, null);
search = bundle.getString(Helper.ARG_SEARCH_KEYWORD, null);
searchCache = bundle.getString(Helper.ARG_SEARCH_KEYWORD_CACHE, null);
pinnedTimeline = (PinnedTimeline) bundle.getSerializable(Helper.ARG_REMOTE_INSTANCE);
if (pinnedTimeline != null && pinnedTimeline.remoteInstance != null) {
if (pinnedTimeline.remoteInstance.type != RemoteInstance.InstanceType.NITTER) {
remoteInstance = pinnedTimeline.remoteInstance.host;
} else {
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
remoteInstance = sharedpreferences.getString(getString(R.string.SET_NITTER_HOST), getString(R.string.DEFAULT_NITTER_HOST)).toLowerCase();
canBeFederated = false;
}
}
2024-01-11 12:02:22 +01:00
if (timelineType == Timeline.TimeLineEnum.TREND_MESSAGE_PUBLIC) {
canBeFederated = false;
}
publicTrendsDomain = bundle.getString(Helper.ARG_REMOTE_INSTANCE_STRING, null);
isViewInitialized = bundle.getBoolean(Helper.ARG_INITIALIZE_VIEW, true);
isNotPinnedTimeline = isViewInitialized;
tagTimeline = (TagTimeline) bundle.getSerializable(Helper.ARG_TAG_TIMELINE);
bubbleTimeline = (BubbleTimeline) bundle.getSerializable(Helper.ARG_BUBBLE_TIMELINE);
if (bundle.containsKey(Helper.ARG_ACCOUNT)) {
accountTimeline = (Account) bundle.getSerializable(Helper.ARG_ACCOUNT);
}
exclude_replies = !bundle.getBoolean(Helper.ARG_SHOW_REPLIES, true);
checkRemotely = bundle.getBoolean(Helper.ARG_CHECK_REMOTELY, false);
show_pinned = bundle.getBoolean(Helper.ARG_SHOW_PINNED, false);
exclude_reblogs = !bundle.getBoolean(Helper.ARG_SHOW_REBLOGS, true);
media_only = bundle.getBoolean(Helper.ARG_SHOW_MEDIA_ONY, false);
viewModelKey = bundle.getString(Helper.ARG_VIEW_MODEL_KEY, "");
minified = bundle.getBoolean(Helper.ARG_MINIFIED, false);
statusReport = (Status) bundle.getSerializable(Helper.ARG_STATUS_REPORT);
initialStatus = (Status) bundle.getSerializable(Helper.ARG_STATUS);
}
//When visiting a profile without being authenticated
if (checkRemotely) {
String[] acctArray = accountTimeline.acct.split("@");
if (acctArray.length > 1) {
remoteInstance = acctArray[1];
}
if (remoteInstance != null && remoteInstance.equalsIgnoreCase(currentInstance)) {
checkRemotely = false;
} else if (remoteInstance == null) {
checkRemotely = false;
}
}
if (tagTimeline != null) {
ident = "@T@" + tagTimeline.name;
if (tagTimeline.isART) {
timelineType = Timeline.TimeLineEnum.ART;
}
} else if (bubbleTimeline != null) {
ident = "@B@Bubble";
} else if (list_id != null) {
ident = "@l@" + list_id;
} else if (remoteInstance != null && !checkRemotely) {
if (pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.NITTER) {
ident = "@R@" + pinnedTimeline.remoteInstance.host;
} else {
ident = "@R@" + remoteInstance;
}
} else if (search != null) {
ident = "@S@" + search;
} else {
ident = null;
}
if (timelineType != null) {
slug = timelineType != Timeline.TimeLineEnum.ART ? timelineType.getValue() + (ident != null ? "|" + ident : "") : Timeline.TimeLineEnum.TAG.getValue() + (ident != null ? "|" + ident : "");
}
2024-01-11 10:58:22 +01:00
2024-01-13 16:27:35 +01:00
timelinesVM = new ViewModelProvider(FragmentMastodonTimeline.this).get(viewModelKey, TimelinesVM.class);
accountsVM = new ViewModelProvider(FragmentMastodonTimeline.this).get(viewModelKey, AccountsVM.class);
initialStatuses = null;
lockForResumeCall = 0;
canBeFederated = true;
retry_for_home_done = false;
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
boolean displayScrollBar = sharedpreferences.getBoolean(getString(R.string.SET_TIMELINE_SCROLLBAR), false);
binding.recyclerView.setVerticalScrollBarEnabled(displayScrollBar);
max_id = statusReport != null ? statusReport.id : null;
offset = 0;
rememberPosition = sharedpreferences.getBoolean(getString(R.string.SET_REMEMBER_POSITION), true);
//Inner marker are only for pinned timelines and main timelines, they have isViewInitialized set to false
if (max_id == null && !isViewInitialized && rememberPosition) {
max_id = sharedpreferences.getString(getString(R.string.SET_INNER_MARKER) + BaseMainActivity.currentUserID + BaseMainActivity.currentInstance + slug, null);
}
//Only fragment in main view pager should not have the view initialized
//AND Only the first fragment will initialize its view
flagLoading = false;
2024-01-11 12:02:22 +01:00
ContextCompat.registerReceiver(requireActivity(), receive_action, new IntentFilter(Helper.RECEIVE_STATUS_ACTION), ContextCompat.RECEIVER_NOT_EXPORTED);
}
2022-10-01 17:00:03 +02:00
/**
* Update view and pagination when scrolling down
*
* @param fetched_statuses Statuses
*/
2023-03-11 11:12:21 +01:00
private synchronized void dealWithPagination(Statuses fetched_statuses, DIRECTION direction, boolean fetchingMissing, boolean canScroll, Status fetchStatus) {
2022-10-01 17:00:03 +02:00
if (binding == null || !isAdded() || getActivity() == null) {
return;
}
2023-03-12 16:16:42 +01:00
2023-03-11 11:12:21 +01:00
if (fetchStatus != null) {
2023-03-12 16:16:42 +01:00
int position = getDirectPosition(fetchStatus);
2023-03-11 11:12:21 +01:00
if (position >= 0 && position < timelineStatuses.size()) {
timelineStatuses.get(position).isFetching = false;
statusAdapter.notifyItemChanged(position);
}
}
2022-10-01 17:00:03 +02:00
binding.swipeContainer.setRefreshing(false);
binding.loadingNextElements.setVisibility(View.GONE);
flagLoading = false;
if (timelineStatuses != null && fetched_statuses != null && fetched_statuses.statuses != null && fetched_statuses.statuses.size() > 0) {
flagLoading = fetched_statuses.pagination.max_id == null;
binding.noAction.setVisibility(View.GONE);
2022-10-28 17:19:24 +02:00
2022-11-03 16:53:42 +01:00
2022-10-01 17:00:03 +02:00
if (timelineType == Timeline.TimeLineEnum.ART) {
//We have to split media in different statuses
List<Status> mediaStatuses = new ArrayList<>();
for (Status status : fetched_statuses.statuses) {
2022-11-03 16:53:42 +01:00
if (!tagTimeline.isNSFW && status.sensitive) {
continue;
}
for (Attachment attachment : status.media_attachments) {
try {
Status statusTmp = (Status) status.clone();
statusTmp.art_attachment = attachment;
mediaStatuses.add(statusTmp);
} catch (CloneNotSupportedException e) {
e.printStackTrace();
2022-10-01 17:00:03 +02:00
}
2022-11-03 16:53:42 +01:00
2022-10-01 17:00:03 +02:00
}
}
2022-11-03 16:53:42 +01:00
if (mediaStatuses.size() > 0) {
fetched_statuses.statuses = mediaStatuses;
}
2022-10-01 17:00:03 +02:00
}
//Update the timeline with new statuses
int insertedStatus;
if (timelineType != Timeline.TimeLineEnum.TREND_MESSAGE_PUBLIC && timelineType != Timeline.TimeLineEnum.TREND_MESSAGE && search == null) {
insertedStatus = updateStatusListWith(fetched_statuses.statuses);
} else { //Trends cannot be ordered by id
insertedStatus = fetched_statuses.statuses.size();
int fromPosition = timelineStatuses.size();
timelineStatuses.addAll(fetched_statuses.statuses);
statusAdapter.notifyItemRangeInserted(fromPosition, insertedStatus);
}
2022-10-01 17:00:03 +02:00
//For these directions, the app will display counters for new messages
2022-10-04 09:37:20 +02:00
if (insertedStatus >= 0 && update != null && direction != DIRECTION.FETCH_NEW && !fetchingMissing) {
2022-10-01 17:00:03 +02:00
update.onUpdate(insertedStatus, timelineType, slug);
2022-10-08 18:00:22 +02:00
} else if (update != null && insertedStatus == 0 && direction == DIRECTION.REFRESH) {
update.onUpdate(0, timelineType, slug);
2022-10-01 17:00:03 +02:00
}
if (direction == DIRECTION.TOP && fetchingMissing && canScroll) {
int position = getAbsolutePosition(fetched_statuses.statuses.get(fetched_statuses.statuses.size() - 1));
if (position != -1) {
binding.recyclerView.scrollToPosition(position + 1);
2023-01-03 17:29:53 +01:00
}
2022-10-01 17:00:03 +02:00
}
if (!fetchingMissing) {
if (fetched_statuses.pagination.max_id == null) {
flagLoading = true;
} else if (max_id == null || Helper.compareTo(fetched_statuses.pagination.max_id, max_id) < 0 || timelineType.getValue().startsWith("TREND_")) {
2022-10-01 17:00:03 +02:00
max_id = fetched_statuses.pagination.max_id;
}
2023-07-12 16:33:49 +02:00
if (pinnedTimeline != null && pinnedTimeline.remoteInstance != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.LEMMY) {
max_id = fetched_statuses.pagination.max_id;
}
if (min_id == null || (fetched_statuses.pagination.min_id != null && Helper.compareTo(fetched_statuses.pagination.min_id, min_id) > 0)) {
2022-10-01 17:00:03 +02:00
min_id = fetched_statuses.pagination.min_id;
}
}
if (search != null) {
offset += MastodonHelper.SEARCH_PER_CALL;
}
2022-10-01 17:00:03 +02:00
} else if (direction == DIRECTION.BOTTOM) {
flagLoading = true;
}
if (direction == DIRECTION.SCROLL_TOP) {
new Handler().postDelayed(() -> binding.recyclerView.scrollToPosition(0), 200);
2022-10-01 17:00:03 +02:00
}
2023-03-11 11:12:21 +01:00
}
2022-12-16 17:15:46 +01:00
2022-04-27 15:20:42 +02:00
/**
* Intialize the common view for statuses on different timelines
*
* @param statuses {@link Statuses}
*/
2022-09-26 17:09:28 +02:00
private void initializeStatusesCommonView(final Statuses statuses) {
2022-05-30 15:22:11 +02:00
flagLoading = false;
if (!isViewInitialized) {
return;
}
2022-06-25 19:35:12 +02:00
if (binding == null || !isAdded() || getActivity() == null) {
2022-10-21 15:29:21 +02:00
if (binding != null) {
binding.loader.setVisibility(View.GONE);
}
2022-04-27 15:20:42 +02:00
return;
}
2022-04-27 15:20:42 +02:00
binding.loader.setVisibility(View.GONE);
binding.noAction.setVisibility(View.GONE);
binding.swipeContainer.setRefreshing(false);
2022-07-09 17:34:08 +02:00
if (searchCache == null && timelineType != Timeline.TimeLineEnum.TREND_MESSAGE) {
binding.swipeContainer.setOnRefreshListener(() -> {
binding.swipeContainer.setRefreshing(true);
flagLoading = false;
route(DIRECTION.REFRESH, true);
});
}
2023-07-12 16:33:49 +02:00
if (initialStatus == null && (statuses == null || statuses.statuses == null || statuses.statuses.size() == 0)) {
2022-04-27 15:20:42 +02:00
binding.noAction.setVisibility(View.VISIBLE);
return;
2022-05-14 17:41:35 +02:00
} else if (timelineType == Timeline.TimeLineEnum.ART) {
//We have to split media in different statuses
List<Status> mediaStatuses = new ArrayList<>();
for (Status status : statuses.statuses) {
if (!tagTimeline.isNSFW && status.sensitive) {
continue;
}
for (Attachment attachment : status.media_attachments) {
try {
Status statusTmp = (Status) status.clone();
statusTmp.art_attachment = attachment;
mediaStatuses.add(statusTmp);
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
}
}
if (mediaStatuses.size() > 0) {
statuses.statuses = mediaStatuses;
}
2022-04-27 15:20:42 +02:00
}
flagLoading = statuses.pagination.max_id == null;
2022-04-27 15:20:42 +02:00
binding.recyclerView.setVisibility(View.VISIBLE);
2022-09-27 11:19:49 +02:00
if (statusAdapter != null && timelineStatuses != null) {
int size = timelineStatuses.size();
timelineStatuses.clear();
timelineStatuses = new ArrayList<>();
2022-04-27 15:20:42 +02:00
statusAdapter.notifyItemRangeRemoved(0, size);
}
2022-09-27 11:19:49 +02:00
if (timelineStatuses == null) {
timelineStatuses = new ArrayList<>();
2022-04-27 15:20:42 +02:00
}
if (statusReport != null) {
2022-09-27 11:19:49 +02:00
timelineStatuses.add(statusReport);
2022-04-27 15:20:42 +02:00
}
2023-07-11 17:08:42 +02:00
if (initialStatus != null) {
timelineStatuses.add(initialStatus);
}
2022-09-27 11:19:49 +02:00
timelineStatuses.addAll(statuses.statuses);
if (max_id == null || (statuses.pagination.max_id != null && Helper.compareTo(statuses.pagination.max_id, max_id) < 0) || timelineType.getValue().startsWith("TREND_")) {
2022-05-04 16:13:30 +02:00
max_id = statuses.pagination.max_id;
}
2023-07-12 16:33:49 +02:00
//For Lemmy pagination
if (pinnedTimeline != null && pinnedTimeline.remoteInstance != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.LEMMY) {
max_id = statuses.pagination.max_id;
}
if (min_id == null || (statuses.pagination.min_id != null && Helper.compareTo(statuses.pagination.min_id, min_id) > 0)) {
2022-05-04 16:13:30 +02:00
min_id = statuses.pagination.min_id;
}
if (search != null) {
offset += MastodonHelper.SEARCH_PER_CALL;
}
2022-11-19 16:50:55 +01:00
statusAdapter = new StatusAdapter(timelineStatuses, timelineType, minified, canBeFederated, checkRemotely);
2022-06-11 18:19:37 +02:00
statusAdapter.fetchMoreCallBack = this;
2023-07-08 16:17:13 +02:00
statusAdapter.pinnedTimeline = pinnedTimeline;
//------Specifications for Lemmy timelines
if (pinnedTimeline != null && pinnedTimeline.remoteInstance != null) {
statusAdapter.type = pinnedTimeline.remoteInstance.type;
}
//---------------
2022-04-27 15:20:42 +02:00
if (statusReport != null) {
scrollToTop();
}
RecyclerView.ItemAnimator animator = binding.recyclerView.getItemAnimator();
if (animator instanceof SimpleItemAnimator) {
((SimpleItemAnimator) animator).setSupportsChangeAnimations(false);
}
2022-04-27 15:20:42 +02:00
mLayoutManager = new LinearLayoutManager(requireActivity());
2022-06-29 16:33:11 +02:00
mLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
2022-04-27 15:20:42 +02:00
binding.recyclerView.setLayoutManager(mLayoutManager);
binding.recyclerView.setAdapter(statusAdapter);
2023-01-11 16:26:31 +01:00
2023-03-08 15:07:52 +01:00
ViewPreloadSizeProvider<Attachment> preloadSizeProvider = new ViewPreloadSizeProvider<>();
2023-01-11 16:26:31 +01:00
RecyclerViewPreloader<Attachment> preloader =
new RecyclerViewPreloader<>(
GlideApp.with(this), statusAdapter, preloadSizeProvider, PRELOAD_AHEAD_ITEMS);
binding.recyclerView.addOnScrollListener(preloader);
binding.recyclerView.setItemViewCacheSize(0);
if (timelineType != Timeline.TimeLineEnum.TREND_MESSAGE) {
2022-04-27 15:20:42 +02:00
binding.recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
2023-02-01 18:52:55 +01:00
scrollingUp = dy < 0;
2022-04-27 15:20:42 +02:00
if (requireActivity() instanceof BaseMainActivity) {
if (dy < 0 && !((BaseMainActivity) requireActivity()).getFloatingVisibility())
((BaseMainActivity) requireActivity()).manageFloatingButton(true);
if (dy > 0 && ((BaseMainActivity) requireActivity()).getFloatingVisibility())
((BaseMainActivity) requireActivity()).manageFloatingButton(false);
}
int firstVisibleItem = mLayoutManager.findFirstVisibleItemPosition();
if (dy > 0) {
int visibleItemCount = mLayoutManager.getChildCount();
int totalItemCount = mLayoutManager.getItemCount();
if (firstVisibleItem + visibleItemCount == totalItemCount) {
if (!flagLoading) {
flagLoading = true;
binding.loadingNextElements.setVisibility(View.VISIBLE);
2022-06-11 18:19:37 +02:00
router(DIRECTION.BOTTOM);
2022-04-27 15:20:42 +02:00
}
} else {
binding.loadingNextElements.setVisibility(View.GONE);
}
} else if (firstVisibleItem == 0) { //Scroll top and item is zero
if (!flagLoading) {
flagLoading = true;
binding.loadingNextElements.setVisibility(View.VISIBLE);
2022-06-11 18:19:37 +02:00
router(DIRECTION.TOP);
2022-04-27 15:20:42 +02:00
}
}
}
});
//For first tab we fetch new messages, if we keep position
2022-12-31 18:12:31 +01:00
if (slug != null /*&& slug.compareTo(Helper.getSlugOfFirstFragment(requireActivity(), currentUserID, currentInstance)) == 0*/ && rememberPosition) {
2022-10-20 17:29:04 +02:00
route(DIRECTION.FETCH_NEW, true);
}
2022-04-27 15:20:42 +02:00
}
2022-10-02 12:18:13 +02:00
2022-04-27 15:20:42 +02:00
}
2022-06-18 18:39:55 +02:00
/**
* Update the timeline with received statuses
*
* @param statusListReceived - List<Status> Statuses received
*/
2022-10-01 17:00:03 +02:00
private int updateStatusListWith(List<Status> statusListReceived) {
int insertedStatus = 0;
2022-06-11 18:19:37 +02:00
if (statusListReceived != null && statusListReceived.size() > 0) {
for (Status statusReceived : statusListReceived) {
2022-09-26 17:09:28 +02:00
int position = 0;
2022-09-27 11:19:49 +02:00
if (timelineStatuses != null) {
2022-09-26 17:09:28 +02:00
//First we refresh statuses
2022-09-27 11:19:49 +02:00
statusAdapter.notifyItemRangeChanged(0, timelineStatuses.size());
2022-09-26 17:09:28 +02:00
//We loop through messages already in the timeline
2022-09-27 11:19:49 +02:00
for (Status statusAlreadyPresent : timelineStatuses) {
2022-09-26 17:09:28 +02:00
//We compare the id of each status and we only add status having an id greater than the another, it is inserted at this position
//Pinned messages are ignored because their date can be older
if (Helper.compareTo(statusReceived.id, statusAlreadyPresent.id) > 0 && !statusAlreadyPresent.pinned) {
2022-09-26 17:09:28 +02:00
//We add the status to a list of id - thus we know it is already in the timeline
2022-10-25 10:32:10 +02:00
if (!timelineStatuses.contains(statusReceived)) {
2022-09-27 11:19:49 +02:00
timelineStatuses.add(position, statusReceived);
2022-09-26 17:09:28 +02:00
statusAdapter.notifyItemInserted(position);
2022-10-02 12:18:13 +02:00
if (!statusReceived.cached) {
insertedStatus++;
}
2022-09-26 17:09:28 +02:00
}
break;
}
position++;
2022-06-18 18:39:55 +02:00
}
2022-09-26 17:09:28 +02:00
//Statuses added at the bottom
2022-09-27 11:19:49 +02:00
if (position == timelineStatuses.size() && !timelineStatuses.contains(statusReceived)) {
2022-09-26 17:09:28 +02:00
//We add the status to a list of id - thus we know it is already in the timeline
2022-09-27 11:19:49 +02:00
timelineStatuses.add(position, statusReceived);
2022-09-26 17:09:28 +02:00
statusAdapter.notifyItemInserted(position);
2022-06-18 18:39:55 +02:00
}
}
2022-06-11 18:19:37 +02:00
}
}
2022-10-01 17:00:03 +02:00
return insertedStatus;
2022-06-11 18:19:37 +02:00
}
2022-04-27 15:20:42 +02:00
2022-09-24 15:27:57 +02:00
/**
2022-09-24 17:26:44 +02:00
* Router for common timelines that can have the same treatments
* - HOME / LOCAL / PUBLIC / LIST / TAG
2022-09-24 15:27:57 +02:00
*
* @param direction - DIRECTION null if first call, then is set to TOP or BOTTOM depending of scroll
*/
2023-03-12 16:16:42 +01:00
private void routeCommon(DIRECTION direction, boolean fetchingMissing, Status fetchStatus) {
2023-02-08 17:57:50 +01:00
if (binding == null || !isAdded() || getActivity() == null) {
2022-09-24 15:27:57 +02:00
return;
}
//Initialize with default params
2023-02-08 17:42:27 +01:00
TimelinesVM.TimelineParams timelineParams = new TimelinesVM.TimelineParams(requireActivity(), timelineType, direction, ident);
2022-09-24 15:27:57 +02:00
timelineParams.limit = MastodonHelper.statusesPerCall(requireActivity());
if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP || direction == DIRECTION.FETCH_NEW) {
2022-09-26 10:17:25 +02:00
timelineParams.maxId = null;
timelineParams.minId = null;
} else if (direction == DIRECTION.BOTTOM) {
timelineParams.maxId = fetchingMissing ? max_id_fetch_more : max_id;
timelineParams.minId = null;
2022-09-26 17:09:28 +02:00
} else if (direction == DIRECTION.TOP) {
2022-09-26 10:17:25 +02:00
timelineParams.minId = fetchingMissing ? min_id_fetch_more : min_id;
timelineParams.maxId = null;
2022-09-26 17:09:28 +02:00
} else {
timelineParams.maxId = max_id;
2022-09-26 10:17:25 +02:00
}
2022-09-24 15:27:57 +02:00
timelineParams.fetchingMissing = fetchingMissing;
switch (timelineType) {
2023-12-22 11:00:32 +01:00
case LOCAL -> {
2022-09-24 15:27:57 +02:00
timelineParams.local = true;
timelineParams.remote = false;
2023-12-22 11:00:32 +01:00
}
case PUBLIC -> {
2022-09-24 15:27:57 +02:00
timelineParams.local = false;
timelineParams.remote = true;
2023-12-22 11:00:32 +01:00
}
case BUBBLE -> {
2023-01-02 15:06:31 +01:00
if (bubbleTimeline != null) {
timelineParams.onlyMedia = bubbleTimeline.only_media;
timelineParams.remote = bubbleTimeline.remote;
timelineParams.replyVisibility = bubbleTimeline.reply_visibility;
timelineParams.excludeVisibilities = bubbleTimeline.exclude_visibilities;
}
2023-12-22 11:00:32 +01:00
}
case LIST -> timelineParams.listId = list_id;
case ART, TAG -> {
2022-09-24 15:27:57 +02:00
if (tagTimeline == null) {
tagTimeline = new TagTimeline();
tagTimeline.name = search;
}
timelineParams.onlyMedia = timelineType == Timeline.TimeLineEnum.ART;
timelineParams.none = tagTimeline.none;
timelineParams.all = tagTimeline.all;
timelineParams.any = tagTimeline.any;
timelineParams.hashtagTrim = tagTimeline.name;
2022-10-06 10:19:59 +02:00
if (timelineParams.hashtagTrim != null && timelineParams.hashtagTrim.startsWith("#")) {
timelineParams.hashtagTrim = tagTimeline.name.substring(1);
}
2023-12-22 11:00:32 +01:00
}
case REMOTE -> {
2022-09-26 17:09:28 +02:00
timelineParams.instance = remoteInstance;
timelineParams.token = null;
2023-12-22 11:00:32 +01:00
}
2022-09-24 15:27:57 +02:00
}
2022-09-24 17:26:44 +02:00
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
boolean useCache = sharedpreferences.getBoolean(getString(R.string.SET_USE_CACHE), true);
2022-11-03 11:50:23 +01:00
if (useCache && direction != DIRECTION.SCROLL_TOP && direction != DIRECTION.FETCH_NEW) {
2023-03-12 16:16:42 +01:00
getCachedStatus(direction, fetchingMissing, timelineParams, fetchStatus);
2023-05-30 08:59:28 +02:00
2022-11-03 11:50:23 +01:00
} else {
2023-03-12 16:16:42 +01:00
getLiveStatus(direction, fetchingMissing, timelineParams, true, fetchStatus);
2022-11-03 11:50:23 +01:00
}
2022-09-24 17:26:44 +02:00
}
2022-10-01 17:00:03 +02:00
@Override
public void onPause() {
2024-01-29 15:02:56 +01:00
storeMarker(Helper.getCurrentAccount(requireActivity()));
2022-10-01 17:00:03 +02:00
super.onPause();
}
@Override
public void onDestroyView() {
//Update last read id for home timeline
if (isAdded()) {
2024-01-29 15:02:56 +01:00
storeMarker(Helper.getCurrentAccount(requireActivity()));
2022-10-01 17:00:03 +02:00
}
2022-10-22 11:53:09 +02:00
try {
2023-12-12 15:47:15 +01:00
requireActivity().unregisterReceiver(receive_action);
2022-10-22 11:53:09 +02:00
} catch (Exception ignored) {
}
2022-10-01 17:00:03 +02:00
super.onDestroyView();
}
private void storeMarker(BaseAccount connectedAccount) {
2022-10-05 17:26:15 +02:00
if (mLayoutManager != null) {
2022-10-01 17:00:03 +02:00
int position = mLayoutManager.findFirstVisibleItemPosition();
if (timelineStatuses != null && timelineStatuses.size() > position) {
try {
Status status = timelineStatuses.get(position);
SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(requireActivity());
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(getString(R.string.SET_INNER_MARKER) + connectedAccount.user_id + connectedAccount.instance + slug, status.id);
2022-10-01 17:00:03 +02:00
editor.apply();
2022-10-05 17:26:15 +02:00
if (timelineType == Timeline.TimeLineEnum.HOME) {
timelinesVM.addMarker(connectedAccount.instance, connectedAccount.token, status.id, null);
2022-10-05 17:26:15 +02:00
}
2022-10-01 17:00:03 +02:00
} catch (Exception ignored) {
}
}
}
}
private void router(DIRECTION direction) {
if (networkAvailable == BaseMainActivity.status.UNKNOWN) {
new Thread(() -> {
if (networkAvailable == BaseMainActivity.status.UNKNOWN) {
networkAvailable = Helper.isConnectedToInternet(requireActivity(), BaseMainActivity.currentInstance);
}
Handler mainHandler = new Handler(Looper.getMainLooper());
Runnable myRunnable = () -> route(direction, false);
mainHandler.post(myRunnable);
}).start();
} else {
route(direction, false);
}
}
2023-03-12 16:16:42 +01:00
private void getCachedStatus(DIRECTION direction, boolean fetchingMissing, TimelinesVM.TimelineParams timelineParams, Status fetchStatus) {
2022-09-24 17:26:44 +02:00
if (direction == null) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimelineCache(timelineStatuses, timelineParams)
2022-09-24 17:26:44 +02:00
.observe(getViewLifecycleOwner(), statusesCached -> {
if (statusesCached == null || statusesCached.statuses == null || statusesCached.statuses.size() == 0) {
2023-03-12 16:16:42 +01:00
getLiveStatus(null, fetchingMissing, timelineParams, true, fetchStatus);
2022-09-24 17:26:44 +02:00
} else {
2022-10-28 17:19:24 +02:00
initialStatuses = statusesCached;
2022-09-24 17:26:44 +02:00
initializeStatusesCommonView(statusesCached);
}
});
} else if (direction == DIRECTION.BOTTOM) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimelineCache(timelineStatuses, timelineParams)
2022-09-24 17:26:44 +02:00
.observe(getViewLifecycleOwner(), statusesCachedBottom -> {
if (statusesCachedBottom == null || statusesCachedBottom.statuses == null || statusesCachedBottom.statuses.size() == 0) {
2023-03-12 16:16:42 +01:00
getLiveStatus(DIRECTION.BOTTOM, fetchingMissing, timelineParams, true, fetchStatus);
2022-09-24 17:26:44 +02:00
} else {
2023-03-12 16:16:42 +01:00
dealWithPagination(statusesCachedBottom, DIRECTION.BOTTOM, fetchingMissing, true, fetchStatus);
//Also check remotely to detect potential holes
if (fetchingMissing) {
2023-03-12 16:16:42 +01:00
getLiveStatus(direction, true, timelineParams, false, fetchStatus);
}
2022-09-24 17:26:44 +02:00
}
});
} else if (direction == DIRECTION.TOP) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimelineCache(timelineStatuses, timelineParams)
2022-09-24 17:26:44 +02:00
.observe(getViewLifecycleOwner(), statusesCachedTop -> {
if (statusesCachedTop == null || statusesCachedTop.statuses == null || statusesCachedTop.statuses.size() == 0) {
2023-03-12 16:16:42 +01:00
getLiveStatus(DIRECTION.TOP, fetchingMissing, timelineParams, true, fetchStatus);
2022-09-24 17:26:44 +02:00
} else {
2023-03-12 16:16:42 +01:00
dealWithPagination(statusesCachedTop, DIRECTION.TOP, fetchingMissing, true, fetchStatus);
//Also check remotely to detect potential holes
2023-03-12 16:16:42 +01:00
getLiveStatus(direction, true, timelineParams, false, fetchStatus);
2022-09-24 17:26:44 +02:00
}
});
2022-10-01 17:00:03 +02:00
} else if (direction == DIRECTION.REFRESH) {
timelinesVM.getTimelineCache(timelineStatuses, timelineParams)
2022-09-24 17:26:44 +02:00
.observe(getViewLifecycleOwner(), statusesRefresh -> {
2022-09-26 17:09:28 +02:00
if (statusesRefresh == null || statusesRefresh.statuses == null || statusesRefresh.statuses.size() == 0) {
2023-03-12 16:16:42 +01:00
getLiveStatus(direction, fetchingMissing, timelineParams, true, fetchStatus);
2022-09-24 17:26:44 +02:00
} else {
2022-09-26 17:09:28 +02:00
if (statusAdapter != null) {
2023-03-12 16:16:42 +01:00
dealWithPagination(statusesRefresh, direction, true, true, fetchStatus);
2022-09-26 17:09:28 +02:00
} else {
initializeStatusesCommonView(statusesRefresh);
}
2022-09-24 17:26:44 +02:00
}
});
}
}
2023-03-12 16:16:42 +01:00
private void getLiveStatus(DIRECTION direction, boolean fetchingMissing, TimelinesVM.TimelineParams timelineParams, boolean canScroll, Status fetchStatus) {
2022-10-28 17:19:24 +02:00
2022-09-24 15:27:57 +02:00
if (direction == null) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimeline(timelineStatuses, timelineParams)
.observe(getViewLifecycleOwner(), statuses -> {
initialStatuses = statuses;
2023-07-14 18:15:47 +02:00
if (!retry_for_home_done && timelineType == Timeline.TimeLineEnum.HOME && timelineParams.maxId != null && (statuses == null || statuses.statuses == null || statuses.statuses.size() == 0)) {
2023-05-30 08:59:28 +02:00
retry_for_home_done = true;
timelineParams.maxId = null;
max_id = null;
getLiveStatus(null, fetchingMissing, timelineParams, true, fetchStatus);
} else {
initializeStatusesCommonView(statuses);
}
});
2022-09-24 15:27:57 +02:00
} else if (direction == DIRECTION.BOTTOM) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimeline(timelineStatuses, timelineParams)
2023-03-12 16:16:42 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, fetchingMissing, canScroll, fetchStatus));
2022-09-24 15:27:57 +02:00
} else if (direction == DIRECTION.TOP) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimeline(timelineStatuses, timelineParams)
2023-03-12 16:16:42 +01:00
.observe(getViewLifecycleOwner(), statusesTop -> dealWithPagination(statusesTop, DIRECTION.TOP, fetchingMissing, canScroll, fetchStatus));
2022-10-01 17:00:03 +02:00
} else if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP || direction == DIRECTION.FETCH_NEW) {
2022-09-27 11:19:49 +02:00
timelinesVM.getTimeline(timelineStatuses, timelineParams)
2022-09-24 15:27:57 +02:00
.observe(getViewLifecycleOwner(), statusesRefresh -> {
if (statusAdapter != null) {
2023-03-12 16:16:42 +01:00
dealWithPagination(statusesRefresh, direction, true, canScroll, fetchStatus);
2022-09-24 15:27:57 +02:00
} else {
initializeStatusesCommonView(statusesRefresh);
}
});
}
}
2022-09-29 17:59:53 +02:00
/**
* Router for timelines
*
* @param direction - DIRECTION null if first call, then is set to TOP or BOTTOM depending of scroll
*/
2023-03-08 15:07:52 +01:00
private void route(DIRECTION direction, boolean fetchingMissing) {
2023-03-11 11:12:21 +01:00
route(direction, fetchingMissing, null);
}
/**
* Router for timelines
*
* @param direction - DIRECTION null if first call, then is set to TOP or BOTTOM depending of scroll
*/
private void route(DIRECTION direction, boolean fetchingMissing, Status fetchStatus) {
2023-02-08 17:57:50 +01:00
if (binding == null || !isAdded() || getActivity() == null) {
2022-09-25 11:23:08 +02:00
return;
}
// --- HOME TIMELINE ---
if (timelineType == Timeline.TimeLineEnum.HOME) {
//for more visibility it's done through loadHomeStrategy method
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.LOCAL) { //LOCAL TIMELINE
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.PUBLIC) { //PUBLIC TIMELINE
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-12-31 18:12:31 +01:00
} else if (timelineType == Timeline.TimeLineEnum.BUBBLE) { //BUBBLE TIMELINE
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.REMOTE) { //REMOTE TIMELINE
//NITTER TIMELINES
if (pinnedTimeline != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.NITTER) {
if (direction == null) {
timelinesVM.getNitter(pinnedTimeline.remoteInstance.host, null)
.observe(getViewLifecycleOwner(), nitterStatuses -> {
initialStatuses = nitterStatuses;
initializeStatusesCommonView(nitterStatuses);
});
2022-09-25 11:23:08 +02:00
} else if (direction == DIRECTION.BOTTOM) {
timelinesVM.getNitter(pinnedTimeline.remoteInstance.host, max_id)
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
2022-09-25 11:23:08 +02:00
} else if (direction == DIRECTION.TOP) {
flagLoading = false;
} else if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP) {
timelinesVM.getNitter(pinnedTimeline.remoteInstance.host, null)
.observe(getViewLifecycleOwner(), statusesRefresh -> {
if (statusAdapter != null) {
2023-03-11 11:12:21 +01:00
dealWithPagination(statusesRefresh, direction, true, true, fetchStatus);
2022-09-25 11:23:08 +02:00
} else {
initializeStatusesCommonView(statusesRefresh);
}
});
}
}//MISSKEY TIMELINES
else if (pinnedTimeline != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.MISSKEY) {
if (direction == null) {
timelinesVM.getMisskey(remoteInstance, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
2023-12-22 11:00:32 +01:00
2022-09-25 11:23:08 +02:00
timelinesVM.getMisskey(remoteInstance, max_id, MastodonHelper.statusesPerCall(requireActivity()))
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
2022-09-25 11:23:08 +02:00
} else if (direction == DIRECTION.TOP) {
flagLoading = false;
} else if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP) {
timelinesVM.getMisskey(remoteInstance, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), statusesRefresh -> {
if (statusAdapter != null) {
2023-03-11 11:12:21 +01:00
dealWithPagination(statusesRefresh, direction, true, true, fetchStatus);
2022-09-25 11:23:08 +02:00
} else {
initializeStatusesCommonView(statusesRefresh);
}
});
}
2023-07-08 16:17:13 +02:00
} //LEMMY TIMELINES
else if (pinnedTimeline != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.LEMMY) {
if (direction == null) {
timelinesVM.getLemmy(remoteInstance, lemmy_post_id, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
timelinesVM.getLemmy(remoteInstance, lemmy_post_id, max_id, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
} else if (direction == DIRECTION.TOP) {
flagLoading = false;
} else if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP) {
timelinesVM.getLemmy(remoteInstance, lemmy_post_id, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), statusesRefresh -> {
if (statusAdapter != null) {
dealWithPagination(statusesRefresh, direction, true, true, fetchStatus);
} else {
initializeStatusesCommonView(statusesRefresh);
}
});
}
}//PEERTUBE TIMELINES
2022-09-25 11:23:08 +02:00
else if (pinnedTimeline != null && pinnedTimeline.remoteInstance.type == RemoteInstance.InstanceType.PEERTUBE) {
if (direction == null) {
timelinesVM.getPeertube(remoteInstance, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
2022-09-27 11:19:49 +02:00
timelinesVM.getPeertube(remoteInstance, String.valueOf(timelineStatuses.size()), MastodonHelper.statusesPerCall(requireActivity()))
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
2022-09-25 11:23:08 +02:00
} else if (direction == DIRECTION.TOP) {
flagLoading = false;
} else if (direction == DIRECTION.REFRESH || direction == DIRECTION.SCROLL_TOP) {
timelinesVM.getPeertube(remoteInstance, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), statusesRefresh -> {
if (statusAdapter != null) {
2023-03-11 11:12:21 +01:00
dealWithPagination(statusesRefresh, direction, true, true, fetchStatus);
2022-09-25 11:23:08 +02:00
} else {
initializeStatusesCommonView(statusesRefresh);
}
});
}
} else { //Other remote timelines
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-24 15:27:57 +02:00
}
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.LIST) { //LIST TIMELINE
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.TAG || timelineType == Timeline.TimeLineEnum.ART) { //TAG TIMELINE
2023-03-12 16:16:42 +01:00
routeCommon(direction, fetchingMissing, fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.ACCOUNT_TIMELINE) { //PROFILE TIMELINES
final String[] tempToken = new String[1];
final String[] tempInstance = new String[1];
final String[] accountId = new String[1];
if (checkRemotely) {
tempToken[0] = null;
tempInstance[0] = remoteInstance;
accountId[0] = accountIDInRemoteInstance;
if (accountIDInRemoteInstance == null) {
CrossActionHelper.fetchAccountInRemoteInstance(requireActivity(), accountTimeline.acct, tempInstance[0], new CrossActionHelper.Callback() {
@Override
public void federatedStatus(Status status) {
}
@Override
public void federatedAccount(Account account) {
2023-01-27 11:02:18 +01:00
if (account != null && isAdded() && !requireActivity().isFinishing()) {
accountIDInRemoteInstance = account.id;
accountsVM.getAccountStatuses(tempInstance[0], null, accountIDInRemoteInstance, null, null, null, null, null, false, true, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), pinnedStatuses -> accountsVM.getAccountStatuses(tempInstance[0], null, accountIDInRemoteInstance, null, null, null, exclude_replies, exclude_reblogs, media_only, false, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), otherStatuses -> {
if (otherStatuses != null && otherStatuses.statuses != null) {
if (pinnedStatuses != null && pinnedStatuses.statuses != null) {
for (Status status : pinnedStatuses.statuses) {
status.pinned = true;
}
otherStatuses.statuses.addAll(0, pinnedStatuses.statuses);
}
}
initializeStatusesCommonView(otherStatuses);
}));
2024-01-29 15:02:56 +01:00
} else if (accountTimeline != null) {
tempToken[0] = MainActivity.currentToken;
tempInstance[0] = currentInstance;
accountId[0] = accountTimeline.id;
displayStatuses(direction, accountId[0], tempInstance[0], tempToken[0], fetchStatus);
}
}
});
} else {
accountId[0] = accountIDInRemoteInstance;
}
2024-01-29 15:02:56 +01:00
} else if (accountTimeline != null) {
tempToken[0] = MainActivity.currentToken;
tempInstance[0] = currentInstance;
accountId[0] = accountTimeline.id;
}
2024-01-22 09:49:08 +01:00
if (accountId[0] == null && accountTimeline != null) {
accountId[0] = accountTimeline.id;
2022-09-25 11:23:08 +02:00
}
displayStatuses(direction, accountId[0], tempInstance[0], tempToken[0], fetchStatus);
2022-09-25 11:23:08 +02:00
} else if (search != null) {
SearchVM searchVM = new ViewModelProvider(FragmentMastodonTimeline.this).get(viewModelKey, SearchVM.class);
if (direction == null) {
searchVM.search(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, search.trim(), null, null, false, true, false, 0, null, null, MastodonHelper.SEARCH_PER_CALL)
.observe(getViewLifecycleOwner(), results -> {
if (results != null) {
Statuses statuses = new Statuses();
statuses.statuses = results.statuses;
statuses.pagination = new Pagination();
initializeStatusesCommonView(statuses);
} else {
Toasty.error(requireActivity(), getString(R.string.toast_error), Toasty.LENGTH_LONG).show();
}
});
} else if (direction == DIRECTION.BOTTOM) {
searchVM.search(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, search.trim(), null, null, false, true, false, offset, null, null, MastodonHelper.SEARCH_PER_CALL)
.observe(getViewLifecycleOwner(), results -> {
if (results != null) {
Statuses statuses = new Statuses();
statuses.statuses = results.statuses;
statuses.pagination = new Pagination();
2023-03-11 11:12:21 +01:00
dealWithPagination(statuses, direction, false, true, fetchStatus);
}
});
} else {
flagLoading = false;
}
2022-09-25 11:23:08 +02:00
} else if (searchCache != null) {
SearchVM searchVM = new ViewModelProvider(FragmentMastodonTimeline.this).get(viewModelKey, SearchVM.class);
searchVM.searchCache(BaseMainActivity.currentInstance, BaseMainActivity.currentUserID, searchCache.trim())
.observe(getViewLifecycleOwner(), results -> {
if (results != null) {
Statuses statuses = new Statuses();
statuses.statuses = results.statuses;
statuses.pagination = new Pagination();
initializeStatusesCommonView(statuses);
2022-05-06 19:18:53 +02:00
} else {
2022-09-25 11:23:08 +02:00
Toasty.error(requireActivity(), getString(R.string.toast_error), Toasty.LENGTH_LONG).show();
2022-05-06 19:18:53 +02:00
}
2022-09-25 11:23:08 +02:00
});
} else if (timelineType == Timeline.TimeLineEnum.FAVOURITE_TIMELINE) {
if (direction == null) {
accountsVM.getFavourites(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, String.valueOf(MastodonHelper.statusesPerCall(requireActivity())), null, null)
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
accountsVM.getFavourites(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, String.valueOf(MastodonHelper.statusesPerCall(requireActivity())), null, max_id)
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
2022-09-25 11:23:08 +02:00
} else {
flagLoading = false;
2022-04-27 15:20:42 +02:00
}
2022-09-25 11:23:08 +02:00
} else if (timelineType == Timeline.TimeLineEnum.BOOKMARK_TIMELINE) {
if (direction == null) {
accountsVM.getBookmarks(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, String.valueOf(MastodonHelper.statusesPerCall(requireActivity())), null, null, null)
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
accountsVM.getBookmarks(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, String.valueOf(MastodonHelper.statusesPerCall(requireActivity())), max_id, null, null)
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
2022-09-25 11:23:08 +02:00
} else {
flagLoading = false;
}
} else if (timelineType == Timeline.TimeLineEnum.TREND_MESSAGE) {
if (direction == null) {
timelinesVM.getStatusTrends(BaseMainActivity.currentToken, BaseMainActivity.currentInstance, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
timelinesVM.getStatusTrends(BaseMainActivity.currentToken, BaseMainActivity.currentInstance, max_id, MastodonHelper.statusesPerCall(requireActivity()))
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
} else {
flagLoading = false;
}
} else if (timelineType == Timeline.TimeLineEnum.TREND_MESSAGE_PUBLIC) {
if (direction == null) {
timelinesVM.getStatusTrends(null, publicTrendsDomain, null, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
} else if (direction == DIRECTION.BOTTOM) {
timelinesVM.getStatusTrends(null, publicTrendsDomain, max_id, MastodonHelper.statusesPerCall(requireActivity()))
2023-03-11 11:12:21 +01:00
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
} else {
flagLoading = false;
2022-09-25 11:23:08 +02:00
}
}
}
2022-05-06 19:18:53 +02:00
/**
* FallBack when remote profile is enabled
*
* @param direction - DIRECTION
* @param accountId - String account id
* @param tempInstance - Used instance
* @param tempToken - Token
* @param fetchStatus - Status fetched
*/
private void displayStatuses(DIRECTION direction, String accountId, String tempInstance, String tempToken, Status fetchStatus) {
if (direction == null && !checkRemotely) {
if (show_pinned) {
//Fetch pinned statuses to display them at the top
accountsVM.getAccountStatuses(currentInstance, MainActivity.currentToken, accountId, null, null, null, null, null, false, true, MastodonHelper.statusesPerCall(requireActivity()))
2024-02-02 18:28:33 +01:00
.observe(getViewLifecycleOwner(), pinnedStatuses -> accountsVM.getAccountStatuses(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, accountId, null, null, null, exclude_replies, exclude_reblogs, media_only, false, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), otherStatuses -> {
if (otherStatuses != null && otherStatuses.statuses != null && pinnedStatuses != null && pinnedStatuses.statuses != null) {
for (Status status : pinnedStatuses.statuses) {
status.pinned = true;
}
otherStatuses.statuses.addAll(0, pinnedStatuses.statuses);
initializeStatusesCommonView(otherStatuses);
}
}));
} else {
accountsVM.getAccountStatuses(tempInstance, tempToken, accountId, null, null, null, exclude_replies, exclude_reblogs, media_only, false, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), this::initializeStatusesCommonView);
}
} else if (direction == DIRECTION.BOTTOM) {
accountsVM.getAccountStatuses(tempInstance, tempToken, accountId, max_id, null, null, exclude_replies, exclude_reblogs, media_only, false, MastodonHelper.statusesPerCall(requireActivity()))
.observe(getViewLifecycleOwner(), statusesBottom -> dealWithPagination(statusesBottom, DIRECTION.BOTTOM, false, true, fetchStatus));
} else {
flagLoading = false;
}
2022-04-27 15:20:42 +02:00
}
/**
* Refresh status in list
*/
public void refreshAllAdapters() {
2022-09-27 11:19:49 +02:00
if (statusAdapter != null && timelineStatuses != null) {
statusAdapter.notifyItemRangeChanged(0, timelineStatuses.size());
}
}
@Override
2023-03-11 11:12:21 +01:00
public void onClickMinId(String min_id, Status fetchStatus) {
//Fetch more has been pressed
min_id_fetch_more = min_id;
2023-03-12 16:16:42 +01:00
route(DIRECTION.TOP, true, fetchStatus);
}
@Override
2023-03-11 11:12:21 +01:00
public void onClickMaxId(String max_id, Status fetchStatus) {
max_id_fetch_more = max_id;
2023-03-11 11:12:21 +01:00
route(DIRECTION.BOTTOM, true, fetchStatus);
}
2023-02-01 17:56:20 +01:00
@Override
2023-03-11 11:12:21 +01:00
public void autoFetch(String min_id, String max_id, Status fetchStatus) {
2023-02-01 17:56:20 +01:00
if (scrollingUp) {
min_id_fetch_more = min_id;
2023-03-11 11:12:21 +01:00
route(DIRECTION.TOP, true, fetchStatus);
2023-02-01 17:56:20 +01:00
} else {
max_id_fetch_more = max_id;
2023-03-11 11:12:21 +01:00
route(DIRECTION.BOTTOM, true, fetchStatus);
2023-02-01 17:56:20 +01:00
}
}
2022-11-02 18:37:29 +01:00
public enum DIRECTION {
TOP,
BOTTOM,
REFRESH,
SCROLL_TOP,
FETCH_NEW
}
2022-10-01 17:00:03 +02:00
public interface UpdateCounters {
void onUpdate(int count, Timeline.TimeLineEnum type, String slug);
2022-04-27 15:20:42 +02:00
}
}