fedilab-Android-App/app/src/main/java/app/fedilab/android/fragments/DisplayPeertubeNotification...

287 lines
12 KiB
Java
Raw Normal View History

2019-05-18 11:10:30 +02:00
package app.fedilab.android.fragments;
2019-01-24 15:44:01 +01:00
/* Copyright 2019 Thomas Schneider
*
2019-05-18 11:10:30 +02:00
* This file is a part of Fedilab
2019-01-24 15:44:01 +01: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.
*
2019-05-18 11:10:30 +02:00
* Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2019-01-24 15:44:01 +01:00
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
2019-05-18 11:10:30 +02:00
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
2019-01-24 15:44:01 +01:00
* see <http://www.gnu.org/licenses>. */
import android.content.Context;
import android.content.SharedPreferences;
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 android.widget.RelativeLayout;
import android.widget.Toast;
2019-11-15 16:32:25 +01:00
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
2021-01-19 17:43:51 +01:00
import org.jetbrains.annotations.NotNull;
2019-01-24 15:44:01 +01:00
import java.util.ArrayList;
import java.util.List;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.R;
import app.fedilab.android.activities.MainActivity;
import app.fedilab.android.asynctasks.RetrievePeertubeNotificationsAsyncTask;
2019-05-18 11:10:30 +02:00
import app.fedilab.android.client.APIResponse;
import app.fedilab.android.client.Entities.Account;
import app.fedilab.android.client.Entities.PeertubeNotification;
import app.fedilab.android.drawers.PeertubeNotificationsListAdapter;
import app.fedilab.android.helper.Helper;
import app.fedilab.android.interfaces.OnRetrievePeertubeNotificationsInterface;
2019-11-15 16:32:25 +01:00
import es.dmoral.toasty.Toasty;
2019-01-24 15:44:01 +01:00
/**
* Created by Thomas on 24/01/2019.
* Fragment to display peertube notifications
*/
2019-09-06 17:55:14 +02:00
public class DisplayPeertubeNotificationsFragment extends Fragment implements OnRetrievePeertubeNotificationsInterface {
2019-01-24 15:44:01 +01:00
2019-11-15 16:32:25 +01:00
//Peertube notification type
public static int NEW_VIDEO_FROM_SUBSCRIPTION = 1;
public static int NEW_COMMENT_ON_MY_VIDEO = 2;
public static int NEW_VIDEO_ABUSE_FOR_MODERATORS = 3;
public static int BLACKLIST_ON_MY_VIDEO = 4;
public static int UNBLACKLIST_ON_MY_VIDEO = 5;
public static int MY_VIDEO_PUBLISHED = 6;
public static int MY_VIDEO_IMPORT_SUCCESS = 7;
public static int MY_VIDEO_IMPORT_ERROR = 8;
public static int NEW_USER_REGISTRATION = 9;
public static int NEW_FOLLOW = 10;
public static int COMMENT_MENTION = 11;
LinearLayoutManager mLayoutManager;
2019-01-24 15:44:01 +01:00
private boolean flag_loading;
private Context context;
2019-01-24 17:41:53 +01:00
private PeertubeNotificationsListAdapter notificationsListAdapter;
2019-01-24 15:44:01 +01:00
private String max_id;
2019-01-24 17:41:53 +01:00
private List<PeertubeNotification> notifications;
2019-01-24 15:44:01 +01:00
private RelativeLayout mainLoader, nextElementLoader, textviewNoAction;
private boolean firstLoad;
private SwipeRefreshLayout swipeRefreshLayout;
private boolean swiped;
private RecyclerView lv_notifications;
private String userId, instance;
private SharedPreferences sharedpreferences;
2019-09-06 17:55:14 +02:00
public DisplayPeertubeNotificationsFragment() {
2019-01-24 15:44:01 +01:00
}
@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_notifications, container, false);
max_id = null;
context = getContext();
firstLoad = true;
flag_loading = true;
notifications = new ArrayList<>();
swiped = false;
swipeRefreshLayout = rootView.findViewById(R.id.swipeContainer);
2019-11-12 21:27:02 +01:00
int c1 = getResources().getColor(R.color.cyanea_accent);
int c2 = getResources().getColor(R.color.cyanea_primary_dark);
int c3 = getResources().getColor(R.color.cyanea_primary);
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(c3);
swipeRefreshLayout.setColorSchemeColors(
c1, c2, c1
);
2019-01-24 15:44:01 +01:00
sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
lv_notifications = rootView.findViewById(R.id.lv_notifications);
mainLoader = rootView.findViewById(R.id.loader);
nextElementLoader = rootView.findViewById(R.id.loading_next_notifications);
textviewNoAction = rootView.findViewById(R.id.no_action);
mainLoader.setVisibility(View.VISIBLE);
nextElementLoader.setVisibility(View.GONE);
boolean isOnWifi = Helper.isOnWIFI(context);
int behaviorWithAttachments = sharedpreferences.getInt(Helper.SET_ATTACHMENT_ACTION, Helper.ATTACHMENT_ALWAYS);
userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null);
2019-09-06 17:55:14 +02:00
instance = sharedpreferences.getString(Helper.PREF_INSTANCE, context != null ? Helper.getLiveInstance(context) : null);
2019-08-19 09:11:23 +02:00
notificationsListAdapter = new PeertubeNotificationsListAdapter(this.notifications);
2019-01-24 15:44:01 +01:00
lv_notifications.setAdapter(notificationsListAdapter);
mLayoutManager = new LinearLayoutManager(context);
lv_notifications.setLayoutManager(mLayoutManager);
lv_notifications.addOnScrollListener(new RecyclerView.OnScrollListener() {
2021-01-19 17:43:51 +01:00
public void onScrolled(@NotNull RecyclerView recyclerView, int dx, int dy) {
2019-09-06 17:55:14 +02:00
if (dy > 0) {
2019-01-24 15:44:01 +01:00
int visibleItemCount = mLayoutManager.getChildCount();
int totalItemCount = mLayoutManager.getItemCount();
int firstVisibleItem = mLayoutManager.findFirstVisibleItemPosition();
if (firstVisibleItem + visibleItemCount == totalItemCount && context != null) {
if (!flag_loading) {
flag_loading = true;
2021-01-19 17:43:51 +01:00
new RetrievePeertubeNotificationsAsyncTask(context, null, max_id, DisplayPeertubeNotificationsFragment.this);
2019-01-24 15:44:01 +01:00
nextElementLoader.setVisibility(View.VISIBLE);
}
} else {
nextElementLoader.setVisibility(View.GONE);
}
}
}
});
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
max_id = null;
firstLoad = true;
flag_loading = true;
swiped = true;
try {
((MainActivity) context).updateNotifCounter();
2019-09-06 17:55:14 +02:00
} catch (Exception ignored) {
}
if (context != null) {
2021-01-19 17:43:51 +01:00
new RetrievePeertubeNotificationsAsyncTask(context, null, max_id, DisplayPeertubeNotificationsFragment.this);
2019-01-24 17:41:53 +01:00
}
2019-01-24 15:44:01 +01:00
}
});
2019-09-06 17:55:14 +02:00
if (context != null)
2021-01-19 17:43:51 +01:00
new RetrievePeertubeNotificationsAsyncTask(context, null, max_id, DisplayPeertubeNotificationsFragment.this);
2019-01-24 15:44:01 +01:00
else
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
@Override
public void run() {
2019-09-06 17:55:14 +02:00
if (context != null)
2021-01-19 17:43:51 +01:00
new RetrievePeertubeNotificationsAsyncTask(context, null, max_id, DisplayPeertubeNotificationsFragment.this);
2019-01-24 15:44:01 +01:00
}
}, 500);
return rootView;
}
@Override
2019-09-06 17:55:14 +02:00
public void onCreate(Bundle saveInstance) {
2019-01-24 15:44:01 +01:00
super.onCreate(saveInstance);
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
this.context = context;
}
public void onDestroy() {
super.onDestroy();
}
2019-09-06 17:55:14 +02:00
public void scrollToTop() {
if (lv_notifications != null)
2019-01-24 15:44:01 +01:00
lv_notifications.setAdapter(notificationsListAdapter);
//Store last toot id for home timeline to avoid to notify for those that have been already seen
if (this.notifications != null && this.notifications.size() > 0) {
updateNotificationLastId(this.notifications.get(0).getId());
}
}
2019-09-06 17:55:14 +02:00
public void refreshAll() {
if (context == null)
2019-01-24 15:44:01 +01:00
return;
max_id = null;
firstLoad = true;
flag_loading = true;
swiped = true;
2021-01-19 17:43:51 +01:00
new RetrievePeertubeNotificationsAsyncTask(context, null, null, DisplayPeertubeNotificationsFragment.this);
2019-01-24 15:44:01 +01:00
}
/**
* Records the id of the notification only if its greater than the previous one.
2019-09-06 17:55:14 +02:00
*
2019-01-24 15:44:01 +01:00
* @param notificationId String current notification id to check
*/
2019-09-06 17:55:14 +02:00
private void updateNotificationLastId(String notificationId) {
2019-01-24 15:44:01 +01:00
String lastNotif = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + userId + instance, null);
2019-09-06 17:55:14 +02:00
if (lastNotif == null || notificationId.compareTo(lastNotif) > 0) {
2019-01-24 15:44:01 +01:00
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(Helper.LAST_NOTIFICATION_MAX_ID + userId + instance, notificationId);
editor.apply();
}
}
2019-01-24 16:24:25 +01:00
@Override
public void onRetrievePeertubeNotifications(APIResponse apiResponse, Account account) {
mainLoader.setVisibility(View.GONE);
nextElementLoader.setVisibility(View.GONE);
String lastReadNotifications = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + userId + instance, null);
2019-09-06 17:55:14 +02:00
if (apiResponse.getError() != null) {
2019-11-15 16:32:25 +01:00
if (apiResponse.getError().getError().length() < 100) {
2019-09-30 18:14:46 +02:00
Toasty.error(context, apiResponse.getError().getError(), Toast.LENGTH_LONG).show();
2019-11-15 16:32:25 +01:00
} else {
Toasty.error(context, getString(R.string.long_api_error, "\ud83d\ude05"), Toast.LENGTH_LONG).show();
2019-09-30 18:14:46 +02:00
}
2019-01-24 16:24:25 +01:00
flag_loading = false;
swipeRefreshLayout.setRefreshing(false);
swiped = false;
return;
}
int previousPosition = notifications.size();
max_id = apiResponse.getMax_id();
2019-01-24 17:41:53 +01:00
List<PeertubeNotification> notifications = apiResponse.getPeertubeNotifications();
2019-01-24 16:24:25 +01:00
2019-09-06 17:55:14 +02:00
if (!swiped && firstLoad && (notifications == null || notifications.size() == 0))
2019-01-24 16:24:25 +01:00
textviewNoAction.setVisibility(View.VISIBLE);
else
textviewNoAction.setVisibility(View.GONE);
2019-09-06 17:55:14 +02:00
if (swiped) {
2019-01-24 16:24:25 +01:00
if (previousPosition > 0) {
for (int i = 0; i < previousPosition; i++) {
this.notifications.remove(0);
}
notificationsListAdapter.notifyItemRangeRemoved(0, previousPosition);
}
swiped = false;
}
2019-09-06 17:55:14 +02:00
if (notifications != null && notifications.size() > 0) {
for (PeertubeNotification tmpNotification : notifications) {
2019-01-24 16:24:25 +01:00
try {
((MainActivity) context).updateNotifCounter();
2019-09-06 17:55:14 +02:00
} catch (Exception ignored) {
}
2019-01-24 16:24:25 +01:00
this.notifications.add(tmpNotification);
}
2019-09-06 17:55:14 +02:00
if (firstLoad) {
2019-01-24 16:24:25 +01:00
//Update the id of the last notification retrieved
2019-09-06 17:55:14 +02:00
if (MainActivity.lastNotificationId == null || notifications.get(0).getId().compareTo(MainActivity.lastNotificationId) > 0)
2019-01-24 16:24:25 +01:00
MainActivity.lastNotificationId = notifications.get(0).getId();
updateNotificationLastId(notifications.get(0).getId());
}
notificationsListAdapter.notifyItemRangeInserted(previousPosition, notifications.size());
2019-09-06 17:55:14 +02:00
} else {
if (firstLoad)
2019-01-24 16:24:25 +01:00
textviewNoAction.setVisibility(View.VISIBLE);
}
2019-09-06 17:55:14 +02:00
if (firstLoad)
((MainActivity) context).updateNotifCounter();
2019-01-24 16:24:25 +01:00
swipeRefreshLayout.setRefreshing(false);
firstLoad = false;
//The initial call comes from a classic tab refresh
2019-09-06 17:55:14 +02:00
flag_loading = (max_id == null);
2019-01-24 16:24:25 +01:00
}
2019-01-24 15:44:01 +01:00
}