fedilab-Android-App/app/src/main/java/app/fedilab/android/drawers/AccountsListAdapter.java

398 lines
19 KiB
Java
Raw Normal View History

2019-05-18 11:10:30 +02:00
package app.fedilab.android.drawers;
2017-05-05 16:36:04 +02:00
/* Copyright 2017 Thomas Schneider
*
2019-05-18 11:10:30 +02:00
* This file is a part of Fedilab
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.
*
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
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.
*
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,
2017-05-05 16:36:04 +02:00
* see <http://www.gnu.org/licenses>. */
import android.content.Context;
import android.content.Intent;
2019-09-04 18:45:12 +02:00
import android.content.SharedPreferences;
import android.content.res.ColorStateList;
2018-10-22 19:19:39 +02:00
import android.database.sqlite.SQLiteDatabase;
2017-05-05 16:36:04 +02:00
import android.os.AsyncTask;
import android.os.Build;
import android.os.Bundle;
import android.text.Html;
import android.text.util.Linkify;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
2017-12-02 11:02:25 +01:00
2019-11-15 16:32:25 +01:00
import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import androidx.core.content.ContextCompat;
import androidx.recyclerview.widget.RecyclerView;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
2017-05-05 16:36:04 +02:00
import java.util.ArrayList;
import java.util.List;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.R;
2019-07-24 10:05:15 +02:00
import app.fedilab.android.activities.GroupActivity;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.activities.MainActivity;
import app.fedilab.android.activities.ShowAccountActivity;
import app.fedilab.android.asynctasks.PostActionAsyncTask;
import app.fedilab.android.asynctasks.RetrieveAccountsAsyncTask;
import app.fedilab.android.asynctasks.UpdateAccountInfoAsyncTask;
2019-05-18 11:10:30 +02:00
import app.fedilab.android.client.API;
import app.fedilab.android.client.Entities.Account;
import app.fedilab.android.client.Entities.Error;
import app.fedilab.android.helper.CrossActions;
import app.fedilab.android.helper.Helper;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.interfaces.OnPostActionInterface;
import app.fedilab.android.interfaces.OnRetrieveEmojiAccountInterface;
2019-05-18 11:10:30 +02:00
import app.fedilab.android.sqlite.InstancesDAO;
import app.fedilab.android.sqlite.Sqlite;
2018-11-25 10:45:16 +01:00
import es.dmoral.toasty.Toasty;
2017-11-25 11:01:34 +01:00
2020-06-19 17:17:17 +02:00
import static app.fedilab.android.helper.Helper.makeEmojis;
2017-05-05 16:36:04 +02:00
/**
* Created by Thomas on 27/04/2017.
* Adapter for accounts
*/
2020-06-16 18:23:13 +02:00
public class AccountsListAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> implements OnPostActionInterface, OnRetrieveEmojiAccountInterface {
2017-05-05 16:36:04 +02:00
private List<Account> accounts;
private RetrieveAccountsAsyncTask.Type action;
private Context context;
private AccountsListAdapter accountsListAdapter;
private String targetedId;
2020-07-06 18:39:33 +02:00
private boolean crossAction;
public AccountsListAdapter(RetrieveAccountsAsyncTask.Type action, String targetedId, boolean crossAction, List<Account> accounts) {
this.accounts = accounts;
this.action = action;
this.accountsListAdapter = this;
this.targetedId = targetedId;
this.crossAction = crossAction;
}
2017-05-05 16:36:04 +02:00
2019-09-06 17:55:14 +02:00
public AccountsListAdapter(RetrieveAccountsAsyncTask.Type action, String targetedId, List<Account> accounts) {
2017-05-05 16:36:04 +02:00
this.accounts = accounts;
this.action = action;
this.accountsListAdapter = this;
this.targetedId = targetedId;
2020-07-06 18:39:33 +02:00
crossAction = false;
2017-05-05 16:36:04 +02:00
}
2018-10-22 17:37:29 +02:00
@NonNull
2017-05-05 16:36:04 +02:00
@Override
2018-10-22 17:37:29 +02:00
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
2019-08-19 09:11:23 +02:00
context = parent.getContext();
LayoutInflater layoutInflater = LayoutInflater.from(context);
2017-10-24 11:38:58 +02:00
return new ViewHolder(layoutInflater.inflate(R.layout.drawer_account, parent, false));
2017-05-05 16:36:04 +02:00
}
@Override
2018-10-22 17:37:29 +02:00
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder viewHolder, int position) {
2017-10-24 11:38:58 +02:00
final AccountsListAdapter.ViewHolder holder = (AccountsListAdapter.ViewHolder) viewHolder;
2017-05-05 16:36:04 +02:00
final Account account = accounts.get(position);
2017-08-13 11:30:28 +02:00
2017-05-05 16:36:04 +02:00
2019-04-28 18:41:30 +02:00
API.StatusAction doAction = null;
2020-03-08 10:29:06 +01:00
if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PIXELFED) {
2019-01-22 10:24:19 +01:00
holder.account_mute_notification.hide();
2019-01-03 18:59:44 +01:00
if (action == RetrieveAccountsAsyncTask.Type.BLOCKED)
account.setFollowType(Account.followAction.BLOCK);
else if (action == RetrieveAccountsAsyncTask.Type.MUTED)
account.setFollowType(Account.followAction.MUTE);
if (action == RetrieveAccountsAsyncTask.Type.CHANNELS)
account.setFollowType(Account.followAction.NOT_FOLLOW);
2019-09-06 17:55:14 +02:00
holder.account_follow.setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(context, R.color.mastodonC4)));
2019-01-03 18:59:44 +01:00
if (account.getFollowType() == Account.followAction.NOTHING) {
holder.account_follow.hide();
holder.account_follow_request.setVisibility(View.GONE);
doAction = null;
} else if (account.getFollowType() == Account.followAction.REQUEST_SENT) {
holder.account_follow.hide();
holder.account_follow_request.setVisibility(View.VISIBLE);
doAction = null;
} else if (account.getFollowType() == Account.followAction.FOLLOW) {
2019-09-06 17:55:14 +02:00
holder.account_follow.setBackgroundTintList(ColorStateList.valueOf(ContextCompat.getColor(context, R.color.unfollow)));
2019-11-10 10:48:43 +01:00
holder.account_follow.setImageResource(R.drawable.ic_user_minus);
2019-01-03 18:59:44 +01:00
doAction = API.StatusAction.UNFOLLOW;
holder.account_follow.show();
holder.account_follow_request.setVisibility(View.GONE);
} else if (account.getFollowType() == Account.followAction.NOT_FOLLOW) {
holder.account_follow.setImageResource(R.drawable.ic_user_plus);
doAction = API.StatusAction.FOLLOW;
holder.account_follow.show();
holder.account_follow_request.setVisibility(View.GONE);
} else if (account.getFollowType() == Account.followAction.BLOCK) {
holder.account_follow.setImageResource(R.drawable.ic_lock_open);
doAction = API.StatusAction.UNBLOCK;
holder.account_follow.show();
holder.account_follow_request.setVisibility(View.GONE);
} else if (account.getFollowType() == Account.followAction.MUTE) {
if (account.isMuting_notifications())
holder.account_mute_notification.setImageResource(R.drawable.ic_notifications_active);
else
holder.account_mute_notification.setImageResource(R.drawable.ic_notifications_off);
holder.account_mute_notification.show();
holder.account_follow.setImageResource(R.drawable.ic_volume_up);
doAction = API.StatusAction.UNMUTE;
holder.account_follow.show();
holder.account_follow_request.setVisibility(View.GONE);
final int positionFinal = position;
2020-03-07 14:16:28 +01:00
holder.account_mute_notification.setOnClickListener(view -> {
account.setMuting_notifications(!account.isMuting_notifications());
new PostActionAsyncTask(context, API.StatusAction.MUTE_NOTIFICATIONS, account.getId(), account.isMuting_notifications(), AccountsListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
accountsListAdapter.notifyItemChanged(positionFinal);
2019-01-03 18:59:44 +01:00
});
}
2018-10-22 17:37:29 +02:00
2017-05-05 16:36:04 +02:00
2019-01-03 18:59:44 +01:00
if (action != RetrieveAccountsAsyncTask.Type.CHANNELS) {
2020-03-07 14:16:28 +01:00
holder.account_container.setOnClickListener(v -> {
if (holder.account_info.getVisibility() == View.VISIBLE)
holder.account_info.setVisibility(View.GONE);
else
holder.account_info.setVisibility(View.VISIBLE);
2019-01-03 18:59:44 +01:00
});
} else {
2020-03-07 14:16:28 +01:00
holder.account_container.setOnClickListener(v -> {
2018-10-22 19:19:39 +02:00
2019-01-03 18:59:44 +01:00
});
}
2019-09-06 17:55:14 +02:00
} else {
2019-01-03 18:59:44 +01:00
holder.account_follow.hide();
2018-10-22 19:19:39 +02:00
}
2020-04-08 17:42:28 +02:00
2020-04-09 11:04:38 +02:00
if (account.getDisplayNameSpan() == null || account.getDisplayNameSpan().toString().trim().equals("")) {
2019-09-06 17:55:14 +02:00
if (account.getDisplay_name() != null && !account.getDisplay_name().trim().equals(""))
2020-04-08 15:29:02 +02:00
holder.account_dn.setText(account.getDisplay_name());
2018-11-11 12:09:58 +01:00
else
2019-09-06 17:55:14 +02:00
holder.account_dn.setText(account.getUsername().replace("@", ""));
2020-06-19 17:17:17 +02:00
} else {
2020-04-09 11:04:38 +02:00
holder.account_dn.setText(account.getDisplayNameSpan(), TextView.BufferType.SPANNABLE);
2020-06-19 17:17:17 +02:00
makeEmojis(context, holder.account_dn, account.getDisplayNameSpan(), account.getEmojis());
}
2019-09-06 17:55:14 +02:00
holder.account_un.setText(String.format("@%s", account.getUsername()));
2017-05-05 16:36:04 +02:00
holder.account_ac.setText(account.getAcct());
2019-09-06 17:55:14 +02:00
if (account.getUsername().equals(account.getAcct()))
2017-05-05 16:36:04 +02:00
holder.account_ac.setVisibility(View.GONE);
else
holder.account_ac.setVisibility(View.VISIBLE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
holder.account_ds.setText(Html.fromHtml(account.getNote(), Html.FROM_HTML_MODE_LEGACY));
2017-05-05 16:36:04 +02:00
else
holder.account_ds.setText(Html.fromHtml(account.getNote()));
holder.account_ds.setAutoLinkMask(Linkify.WEB_URLS);
2019-05-18 11:10:30 +02:00
holder.account_sc.setText(Helper.withSuffix(account.getStatuses_count()));
holder.account_fgc.setText(Helper.withSuffix(account.getFollowing_count()));
holder.account_frc.setText(Helper.withSuffix(account.getFollowers_count()));
2017-05-05 16:36:04 +02:00
//Profile picture
Helper.loadGiF(context, account, holder.account_pp);
2019-09-06 17:55:14 +02:00
if (account.isMakingAction()) {
2017-09-17 11:28:50 +02:00
holder.account_follow.setEnabled(false);
2019-09-06 17:55:14 +02:00
} else {
2017-09-17 11:28:50 +02:00
holder.account_follow.setEnabled(true);
}
//Follow button
2019-04-28 18:41:30 +02:00
API.StatusAction finalDoAction = doAction;
2020-03-07 14:16:28 +01:00
holder.account_follow.setOnClickListener(v -> {
if (action != RetrieveAccountsAsyncTask.Type.CHANNELS) {
if (finalDoAction != null) {
if (finalDoAction != API.StatusAction.UNFOLLOW) {
account.setMakingAction(true);
new PostActionAsyncTask(context, finalDoAction, account.getId(), AccountsListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
} else {
final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
boolean confirm_unfollow = sharedpreferences.getBoolean(Helper.SET_UNFOLLOW_VALIDATION, true);
if (confirm_unfollow) {
int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK);
int style;
if (theme == Helper.THEME_DARK) {
style = R.style.DialogDark;
} else if (theme == Helper.THEME_BLACK) {
style = R.style.DialogBlack;
2019-09-04 18:45:12 +02:00
} else {
2020-03-07 14:16:28 +01:00
style = R.style.Dialog;
}
AlertDialog.Builder unfollowConfirm = new AlertDialog.Builder(context, style);
unfollowConfirm.setTitle(context.getString(R.string.unfollow_confirm));
unfollowConfirm.setMessage(account.getAcct());
unfollowConfirm.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss());
unfollowConfirm.setPositiveButton(R.string.yes, (dialog, which) -> {
2019-09-04 18:45:12 +02:00
account.setMakingAction(true);
new PostActionAsyncTask(context, finalDoAction, account.getId(), AccountsListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2020-03-07 14:16:28 +01:00
dialog.dismiss();
});
unfollowConfirm.show();
} else {
account.setMakingAction(true);
new PostActionAsyncTask(context, finalDoAction, account.getId(), AccountsListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2019-09-04 18:45:12 +02:00
}
2020-03-07 14:16:28 +01:00
2018-10-22 17:37:29 +02:00
}
2017-09-17 11:28:50 +02:00
}
2020-03-07 14:16:28 +01:00
} else {
CrossActions.followPeertubeChannel(context, account, AccountsListAdapter.this);
2017-09-17 11:28:50 +02:00
}
});
2019-09-06 17:55:14 +02:00
if (action != RetrieveAccountsAsyncTask.Type.GROUPS) {
2020-03-07 14:16:28 +01:00
holder.account_pp.setOnClickListener(v -> {
2020-07-08 09:48:45 +02:00
if (!crossAction && (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE || action != RetrieveAccountsAsyncTask.Type.CHANNELS)) {
2020-03-07 14:16:28 +01:00
//Avoid to reopen details about the current account
if (targetedId == null || !targetedId.equals(account.getId())) {
Intent intent = new Intent(context, ShowAccountActivity.class);
Bundle b = new Bundle();
if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) {
b.putBoolean("peertubeaccount", true);
b.putBoolean("ischannel", true);
b.putString("targetedid", account.getAcct());
2019-01-03 18:59:44 +01:00
}
2020-03-07 14:16:28 +01:00
b.putParcelable("account", account);
intent.putExtras(b);
context.startActivity(intent);
2018-10-22 17:37:29 +02:00
}
2020-03-07 14:16:28 +01:00
} else {
CrossActions.doCrossProfile(context, account);
2019-07-24 10:05:15 +02:00
}
2020-03-07 14:16:28 +01:00
2019-07-24 10:05:15 +02:00
});
2019-09-06 17:55:14 +02:00
} else {
2020-03-07 14:16:28 +01:00
holder.account_container.setOnClickListener(v -> {
Intent intent = new Intent(context, GroupActivity.class);
Bundle b = new Bundle();
b.putString("groupname", account.getUsername());
intent.putExtras(b);
context.startActivity(intent);
2019-07-24 10:05:15 +02:00
});
}
2017-05-05 16:36:04 +02:00
}
2017-10-24 11:38:58 +02:00
@Override
public long getItemId(int position) {
return position;
}
@Override
public int getItemCount() {
return accounts.size();
}
2019-09-06 17:55:14 +02:00
private Account getItemAt(int position) {
if (accounts.size() > position)
2018-11-11 12:09:58 +01:00
return accounts.get(position);
else
return null;
}
2017-10-24 11:38:58 +02:00
2017-05-05 16:36:04 +02:00
@Override
public void onPostAction(int statusCode, API.StatusAction statusAction, String targetedId, Error error) {
2019-09-06 17:55:14 +02:00
if (error != null) {
Toasty.error(context, error.getError(), Toast.LENGTH_LONG).show();
return;
}
2017-05-05 16:36:04 +02:00
Helper.manageMessageStatusCode(context, statusCode, statusAction);
//When unmuting or unblocking an account, it is removed from the list
List<Account> accountsToRemove = new ArrayList<>();
2019-09-06 17:55:14 +02:00
if (statusAction == API.StatusAction.UNMUTE || statusAction == API.StatusAction.UNBLOCK) {
for (Account account : accounts) {
if (account.getId().equals(targetedId))
2017-05-05 16:36:04 +02:00
accountsToRemove.add(account);
}
accounts.removeAll(accountsToRemove);
accountsListAdapter.notifyDataSetChanged();
}
2019-09-06 17:55:14 +02:00
if (statusAction == API.StatusAction.FOLLOW) {
if (action == RetrieveAccountsAsyncTask.Type.CHANNELS) {
2020-04-09 18:57:12 +02:00
SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open();
2018-10-22 19:19:39 +02:00
new InstancesDAO(context, db).insertInstance(accounts.get(0).getAcct().split("@")[1], accounts.get(0).getAcct().split("@")[0], "PEERTUBE_CHANNEL");
2019-09-06 17:55:14 +02:00
} else {
for (Account account : accounts) {
if (account.getId().equals(targetedId)) {
2018-10-22 19:19:39 +02:00
account.setFollowType(Account.followAction.FOLLOW);
2019-04-28 18:41:30 +02:00
account.setMakingAction(false);
}
2018-10-22 19:19:39 +02:00
}
accountsListAdapter.notifyDataSetChanged();
2017-09-17 15:44:32 +02:00
}
}
2019-09-06 17:55:14 +02:00
if (statusAction == API.StatusAction.UNFOLLOW) {
for (Account account : accounts) {
if (account.getId().equals(targetedId)) {
2017-09-17 15:44:32 +02:00
account.setFollowType(Account.followAction.NOT_FOLLOW);
2019-04-28 18:41:30 +02:00
account.setMakingAction(false);
}
2017-09-17 15:44:32 +02:00
}
accountsListAdapter.notifyDataSetChanged();
}
2017-05-05 16:36:04 +02:00
}
2020-03-07 14:16:28 +01:00
private void notifyAccountChanged(Account account) {
2018-11-11 12:09:58 +01:00
for (int i = 0; i < accountsListAdapter.getItemCount(); i++) {
//noinspection ConstantConditions
if (accountsListAdapter.getItemAt(i) != null && accountsListAdapter.getItemAt(i).getId().equals(account.getId())) {
try {
accountsListAdapter.notifyItemChanged(i);
} catch (Exception ignored) {
}
}
}
}
@Override
public void onRetrieveEmojiAccount(Account account) {
2019-08-04 10:14:26 +02:00
account.setEmojiFound(true);
2018-11-11 12:09:58 +01:00
notifyAccountChanged(account);
}
2017-05-05 16:36:04 +02:00
2020-03-07 14:16:28 +01:00
private static class ViewHolder extends RecyclerView.ViewHolder {
2017-05-05 16:36:04 +02:00
ImageView account_pp;
TextView account_ac;
TextView account_dn;
TextView account_un;
TextView account_ds;
TextView account_sc;
TextView account_fgc;
TextView account_frc;
2018-11-11 12:09:58 +01:00
LinearLayout account_info;
2017-12-17 11:43:29 +01:00
FloatingActionButton account_follow, account_mute_notification;
2017-09-17 11:28:50 +02:00
TextView account_follow_request;
2017-05-05 16:36:04 +02:00
LinearLayout account_container;
2017-10-24 11:38:58 +02:00
ViewHolder(View itemView) {
super(itemView);
account_pp = itemView.findViewById(R.id.account_pp);
account_dn = itemView.findViewById(R.id.account_dn);
account_ac = itemView.findViewById(R.id.account_ac);
account_un = itemView.findViewById(R.id.account_un);
account_ds = itemView.findViewById(R.id.account_ds);
account_sc = itemView.findViewById(R.id.account_sc);
account_fgc = itemView.findViewById(R.id.account_fgc);
account_frc = itemView.findViewById(R.id.account_frc);
account_follow = itemView.findViewById(R.id.account_follow);
2018-11-11 12:09:58 +01:00
account_info = itemView.findViewById(R.id.account_info);
2017-12-17 11:43:29 +01:00
account_mute_notification = itemView.findViewById(R.id.account_mute_notification);
2017-10-24 11:38:58 +02:00
account_follow_request = itemView.findViewById(R.id.account_follow_request);
account_container = itemView.findViewById(R.id.account_container);
}
2017-05-05 16:36:04 +02:00
}
}