diff --git a/app/src/common/java/app/fedilab/android/drawer/StatusListAdapter.java b/app/src/common/java/app/fedilab/android/drawer/StatusListAdapter.java index 05f02a618..96f27ba0a 100644 --- a/app/src/common/java/app/fedilab/android/drawer/StatusListAdapter.java +++ b/app/src/common/java/app/fedilab/android/drawer/StatusListAdapter.java @@ -1,5 +1,5 @@ -package app.fedilab.android.drawers; -/* Copyright 2017 Thomas Schneider +package app.fedilab.android.drawer; +/* Copyright 2020 Thomas Schneider * * This file is a part of Fedilab * @@ -13,4270 +13,61 @@ package app.fedilab.android.drawers; * * You should have received a copy of the GNU General Public License along with Fedilab; if not, * see . */ - -import android.annotation.SuppressLint; -import android.app.Activity; -import android.content.ClipData; -import android.content.ClipboardManager; -import android.content.Context; -import android.content.Intent; -import android.content.SharedPreferences; -import android.database.sqlite.SQLiteDatabase; -import android.graphics.Bitmap; -import android.graphics.PorterDuff; -import android.graphics.Typeface; -import android.graphics.drawable.Drawable; -import android.net.Uri; import android.os.AsyncTask; -import android.os.Build; -import android.os.Bundle; -import android.os.CountDownTimer; -import android.os.Handler; -import android.text.Html; -import android.text.InputType; -import android.text.Spannable; -import android.text.SpannableString; -import android.text.Spanned; -import android.text.TextPaint; -import android.text.TextUtils; -import android.text.TextWatcher; -import android.text.method.LinkMovementMethod; -import android.text.style.ClickableSpan; -import android.text.style.ForegroundColorSpan; -import android.text.style.URLSpan; -import android.util.TypedValue; -import android.view.LayoutInflater; -import android.view.MenuItem; -import android.view.MotionEvent; -import android.view.View; -import android.view.ViewGroup; import android.view.inputmethod.InputMethodManager; -import android.widget.ArrayAdapter; -import android.widget.Button; -import android.widget.CheckBox; -import android.widget.DatePicker; -import android.widget.EditText; -import android.widget.FrameLayout; -import android.widget.GridView; -import android.widget.ImageButton; -import android.widget.ImageView; -import android.widget.LinearLayout; -import android.widget.ProgressBar; -import android.widget.RadioButton; -import android.widget.RadioGroup; -import android.widget.RelativeLayout; -import android.widget.TextView; -import android.widget.TimePicker; -import android.widget.Toast; -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; -import androidx.appcompat.app.AlertDialog; -import androidx.appcompat.widget.PopupMenu; -import androidx.appcompat.widget.SwitchCompat; -import androidx.appcompat.widget.TooltipCompat; -import androidx.constraintlayout.widget.ConstraintLayout; -import androidx.core.app.ActivityOptionsCompat; -import androidx.core.content.ContextCompat; -import androidx.preference.PreferenceManager; -import androidx.recyclerview.widget.LinearLayoutManager; -import androidx.recyclerview.widget.RecyclerView; - -import com.bumptech.glide.Glide; -import com.bumptech.glide.load.resource.bitmap.CenterCrop; -import com.bumptech.glide.load.resource.bitmap.RoundedCorners; -import com.bumptech.glide.load.resource.drawable.DrawableTransitionOptions; -import com.bumptech.glide.request.RequestOptions; -import com.bumptech.glide.request.target.CustomTarget; -import com.bumptech.glide.request.transition.Transition; -import com.github.stom79.mytransl.MyTransL; -import com.github.stom79.mytransl.client.HttpsConnectionException; -import com.github.stom79.mytransl.client.Results; -import com.github.stom79.mytransl.translate.Translate; -import com.google.android.material.floatingactionbutton.FloatingActionButton; -import com.vanniktech.emoji.EmojiManager; -import com.vanniktech.emoji.EmojiPopup; -import com.vanniktech.emoji.one.EmojiOneProvider; -import com.varunest.sparkbutton.SparkButton; - -import org.jetbrains.annotations.NotNull; - -import java.util.ArrayList; -import java.util.Calendar; -import java.util.Date; -import java.util.GregorianCalendar; -import java.util.Iterator; -import java.util.List; -import java.util.Objects; -import java.util.Timer; -import java.util.TimerTask; -import java.util.regex.Matcher; -import java.util.regex.Pattern; - -import app.fedilab.android.R; -import app.fedilab.android.activities.AccountReportActivity; -import app.fedilab.android.activities.BaseActivity; -import app.fedilab.android.activities.BaseMainActivity; -import app.fedilab.android.activities.CustomSharingActivity; -import app.fedilab.android.activities.MainActivity; -import app.fedilab.android.activities.OwnerNotificationChartsActivity; -import app.fedilab.android.activities.PeertubeActivity; -import app.fedilab.android.activities.ShowAccountActivity; -import app.fedilab.android.activities.ShowConversationActivity; -import app.fedilab.android.activities.SlideMediaActivity; -import app.fedilab.android.activities.TootActivity; -import app.fedilab.android.activities.TootInfoActivity; -import app.fedilab.android.asynctasks.ManageCachedStatusAsyncTask; -import app.fedilab.android.asynctasks.ManagePollAsyncTask; import app.fedilab.android.asynctasks.PostActionAsyncTask; -import app.fedilab.android.asynctasks.PostStatusAsyncTask; import app.fedilab.android.asynctasks.RetrieveFeedsAsyncTask; -import app.fedilab.android.asynctasks.RetrieveRelationshipQuickReplyAsyncTask; -import app.fedilab.android.asynctasks.SyncBookmarksAsyncTask; -import app.fedilab.android.asynctasks.UpdateAccountInfoAsyncTask; import app.fedilab.android.client.API; -import app.fedilab.android.client.APIResponse; -import app.fedilab.android.client.Entities.Account; -import app.fedilab.android.client.Entities.Application; -import app.fedilab.android.client.Entities.Attachment; -import app.fedilab.android.client.Entities.Card; -import app.fedilab.android.client.Entities.Emojis; -import app.fedilab.android.client.Entities.Error; -import app.fedilab.android.client.Entities.ManageTimelines; -import app.fedilab.android.client.Entities.Notification; -import app.fedilab.android.client.Entities.Poll; -import app.fedilab.android.client.Entities.PollOptions; import app.fedilab.android.client.Entities.Reaction; -import app.fedilab.android.client.Entities.Relationship; -import app.fedilab.android.client.Entities.Status; import app.fedilab.android.client.Entities.StatusDrawerParams; -import app.fedilab.android.client.Entities.StoredStatus; -import app.fedilab.android.client.Entities.TagTimeline; -import app.fedilab.android.fragments.DisplayStatusFragment; -import app.fedilab.android.helper.CrossActions; -import app.fedilab.android.helper.CustomTextView; -import app.fedilab.android.helper.Helper; -import app.fedilab.android.helper.LongClickLinkMovementMethod; -import app.fedilab.android.helper.MastalabAutoCompleteTextView; -import app.fedilab.android.helper.ThemeHelper; -import app.fedilab.android.interfaces.OnPollInterface; -import app.fedilab.android.interfaces.OnPostActionInterface; -import app.fedilab.android.interfaces.OnPostStatusActionInterface; -import app.fedilab.android.interfaces.OnRefreshCachedStatusInterface; -import app.fedilab.android.interfaces.OnRetrieveCardInterface; -import app.fedilab.android.interfaces.OnRetrieveEmojiInterface; -import app.fedilab.android.interfaces.OnRetrieveFeedsInterface; -import app.fedilab.android.interfaces.OnRetrieveImageInterface; -import app.fedilab.android.interfaces.OnRetrieveRelationshipQuickReplyInterface; -import app.fedilab.android.interfaces.OnRetrieveRepliesInterface; -import app.fedilab.android.interfaces.OnRetrieveSearcAccountshInterface; -import app.fedilab.android.interfaces.OnRetrieveSearchInterface; -import app.fedilab.android.interfaces.OnSyncBookmarksInterface; -import app.fedilab.android.jobs.ScheduledBoostsSyncJob; -import app.fedilab.android.sqlite.AccountDAO; -import app.fedilab.android.sqlite.CustomEmojiDAO; -import app.fedilab.android.sqlite.Sqlite; -import app.fedilab.android.sqlite.StatusCacheDAO; -import app.fedilab.android.sqlite.StatusStoredDAO; -import app.fedilab.android.sqlite.TempMuteDAO; -import app.fedilab.android.sqlite.TimelineCacheDAO; -import app.fedilab.android.sqlite.TimelinesDAO; -import es.dmoral.toasty.Toasty; -import jp.wasabeef.glide.transformations.BlurTransformation; +import app.fedilab.android.drawers.BaseStatusListAdapter; import static android.content.Context.INPUT_METHOD_SERVICE; -import static android.content.Context.MODE_PRIVATE; -import static app.fedilab.android.activities.BaseMainActivity.mPageReferenceMap; -import static app.fedilab.android.activities.BaseMainActivity.mutedAccount; -import static app.fedilab.android.activities.BaseMainActivity.social; -import static app.fedilab.android.asynctasks.RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE_FILTERED; -import static app.fedilab.android.helper.Helper.makeEmojis; +public class StatusListAdapter extends BaseStatusListAdapter { + public StatusListAdapter(StatusDrawerParams statusDrawerParams) { + super(statusDrawerParams); + } -/** - * Created by Thomas on 24/04/2017. - * Adapter for Status - */ -public class BaseStatusListAdapter extends RecyclerView.Adapter implements OnPostActionInterface, OnRetrieveFeedsInterface, OnRetrieveImageInterface, OnRetrieveEmojiInterface, OnRetrieveRepliesInterface, OnRetrieveCardInterface, OnPollInterface, OnRefreshCachedStatusInterface, OnRetrieveSearcAccountshInterface, OnRetrieveSearchInterface, OnPostStatusActionInterface, OnRetrieveRelationshipQuickReplyInterface, OnSyncBookmarksInterface { - - public static final int DISPLAYED_STATUS = 1; - public static final int COMPACT_STATUS = 3; - public static final int CONSOLE_STATUS = 4; - private static final int HIDDEN_STATUS = 0; - private static final int FOCUSED_STATUS = 2; - public static boolean fetch_all_more = false; - private final Object lock = new Object(); - private Context context; - private List statuses; - private boolean isOnWifi; - private BaseStatusListAdapter statusListAdapter; - private RetrieveFeedsAsyncTask.Type type; - private String targetedId; - private int conversationPosition; - private boolean redraft; - private Status toot; - private TagTimeline tagTimeline; - private AlertDialog alertDialogEmoji; - private MastalabAutoCompleteTextView toot_content; - private EditText toot_cw_content; - private TextView toot_space_left; - private ArrayList splitToot; - private int stepSpliToot; - private String in_reply_to_status; - private TextView warning_message; - private Status tootReply; - private long currentToId; - private RecyclerView mRecyclerView; - private List emojisPicker; - private Status statusForQuickReply; - private String instanceType; - - private Runnable updateAnimatedEmoji = new Runnable() { - @Override - public void run() { - synchronized (lock) { - if (mRecyclerView != null && (mRecyclerView.getLayoutManager()) != null) { - int firstPosition = ((LinearLayoutManager) mRecyclerView.getLayoutManager()).findFirstCompletelyVisibleItemPosition(); - int lastPosition = ((LinearLayoutManager) mRecyclerView.getLayoutManager()).findLastCompletelyVisibleItemPosition(); - for (int i = firstPosition; i <= lastPosition; i++) { - if (mRecyclerView.findViewHolderForAdapterPosition(i) != null && mRecyclerView.findViewHolderForAdapterPosition(i) instanceof ViewHolder) { - ((ViewHolder) Objects.requireNonNull(mRecyclerView.findViewHolderForAdapterPosition(i))).updateAnimatedEmoji(); - } + protected void statusAddReactionClick(){ + EmojiManager.install(new EmojiOneProvider()); + final EmojiPopup emojiPopup = EmojiPopup.Builder.fromRootView(holder.status_add_reaction).setOnEmojiPopupDismissListener(() -> { + InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); + assert imm != null; + imm.hideSoftInputFromWindow(holder.status_add_reaction.getWindowToken(), 0); + }).setOnEmojiClickListener((emoji, imageView) -> { + String emojiStr = imageView.getUnicode(); + boolean alreadyAdded = false; + for (Reaction reaction : status.getReactions()) { + if (reaction.getName().compareTo(emojiStr) == 0) { + alreadyAdded = true; + reaction.setCount(reaction.getCount() - 1); + if (reaction.getCount() == 0) { + status.getReactions().remove(reaction); } - } - } - } - }; - private Handler mHandler = new Handler(); - private int style; - - public BaseStatusListAdapter(StatusDrawerParams statusDrawerParams) { - statuses = statusDrawerParams.getStatuses(); - isOnWifi = statusDrawerParams.isOnWifi(); - statusListAdapter = this; - type = statusDrawerParams.getType(); - targetedId = statusDrawerParams.getTargetedId(); - tagTimeline = statusDrawerParams.getTagTimeline(); - conversationPosition = statusDrawerParams.getPosition(); - redraft = false; - toot_content = null; - toot_cw_content = null; - tootReply = null; - currentToId = -1; - instanceType = statusDrawerParams.getInstanceType(); - } - - @Override - public void onAttachedToRecyclerView(@NotNull RecyclerView recyclerView) { - super.onAttachedToRecyclerView(recyclerView); - mRecyclerView = recyclerView; - } - - @Override - public void onDetachedFromRecyclerView(@NotNull RecyclerView recyclerView) { - super.onDetachedFromRecyclerView(recyclerView); - mRecyclerView = null; - } - - @Override - public long getItemId(int position) { - return position; - } - - @Override - public int getItemCount() { - return statuses.size(); - } - - private Status getItemAt(int position) { - if (statuses.size() > position) - return statuses.get(position); - else - return null; - } - - @Override - public void onRetrieveReplies(APIResponse apiResponse) { - if (apiResponse.getError() != null || apiResponse.getStatuses() == null || apiResponse.getStatuses().size() == 0) { - return; - } - List modifiedStatus = apiResponse.getStatuses(); - notifyStatusChanged(modifiedStatus.get(0)); - } - - @Override - public void onPoll(Status status, Poll poll) { - if (status.getReblog() != null) { - status.getReblog().setPoll(poll); - } else { - status.setPoll(poll); - } - notifyStatusChanged(status); - } - - @Override - public void onRefresh(Status refreshedStatus) { - if (refreshedStatus.getCreated_at() == null) { - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - new TimelineCacheDAO(context, db).remove(refreshedStatus.getId()); - new PostActionAsyncTask(context, API.StatusAction.UNSTATUS, refreshedStatus.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } - statusListAdapter.notifyStatusChanged(refreshedStatus); - } - - @Override - public void onRetrieveSearchAccounts(APIResponse apiResponse) { - if (apiResponse.getError() != null) - return; - - final List accounts = apiResponse.getAccounts(); - if (accounts != null && accounts.size() > 0 && toot_content != null) { - int currentCursorPosition = toot_content.getSelectionStart(); - AccountsSearchAdapter accountsListAdapter = new AccountsSearchAdapter(context, accounts); - toot_content.setThreshold(1); - toot_content.setAdapter(accountsListAdapter); - final String oldContent = toot_content.getText().toString(); - if (oldContent.length() >= currentCursorPosition) { - String[] searchA = oldContent.substring(0, currentCursorPosition).split("@"); - if (searchA.length > 0) { - final String search = searchA[searchA.length - 1]; - toot_content.setOnItemClickListener((parent, view, position, id) -> { - Account account = accounts.get(position); - String deltaSearch = ""; - int searchLength = 15; - if (currentCursorPosition < 15) { //Less than 15 characters are written before the cursor position - searchLength = currentCursorPosition; - } - if (currentCursorPosition - searchLength > 0 && currentCursorPosition < oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength, currentCursorPosition); - else { - if (currentCursorPosition >= oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength); - } - if (!search.equals("")) - deltaSearch = deltaSearch.replace("@" + search, ""); - String newContent = oldContent.substring(0, currentCursorPosition - searchLength); - newContent += deltaSearch; - newContent += "@" + account.getAcct() + " "; - int newPosition = newContent.length(); - if (currentCursorPosition < oldContent.length()) - newContent += oldContent.substring(currentCursorPosition); - toot_content.setText(newContent); - toot_space_left.setText(String.valueOf(TootActivity.countLength(social, toot_content, toot_cw_content))); - toot_content.setSelection(newPosition); - AccountsSearchAdapter accountsListAdapter1 = new AccountsSearchAdapter(context, new ArrayList<>()); - toot_content.setThreshold(1); - toot_content.setAdapter(accountsListAdapter1); - }); - } - } - } - } - - @Override - public void onRetrieveContact(APIResponse apiResponse) { - - } - - - @Override - public void onRetrieveSearchEmoji(List emojis) { - - if (emojis != null && emojis.size() > 0 && toot_content != null) { - int currentCursorPosition = toot_content.getSelectionStart(); - EmojisSearchAdapter emojisSearchAdapter = new EmojisSearchAdapter(context, emojis); - toot_content.setThreshold(1); - toot_content.setAdapter(emojisSearchAdapter); - final String oldContent = toot_content.getText().toString(); - String[] searchA = oldContent.substring(0, currentCursorPosition).split(":"); - final String search = searchA[searchA.length - 1]; - toot_content.setOnItemClickListener((parent, view, position, id) -> { - String shortcode = emojis.get(position).getShortcode(); - String deltaSearch = ""; - int searchLength = 15; - if (currentCursorPosition < 15) { //Less than 15 characters are written before the cursor position - searchLength = currentCursorPosition; - } - if (currentCursorPosition - searchLength > 0 && currentCursorPosition < oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength, currentCursorPosition); - else { - if (currentCursorPosition >= oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength); - } - - if (!search.equals("")) - deltaSearch = deltaSearch.replace(":" + search, ""); - String newContent = oldContent.substring(0, currentCursorPosition - searchLength); - newContent += deltaSearch; - newContent += ":" + shortcode + ": "; - int newPosition = newContent.length(); - if (currentCursorPosition < oldContent.length()) - newContent += oldContent.substring(currentCursorPosition); - toot_content.setText(newContent); - toot_space_left.setText(String.valueOf(TootActivity.countLength(social, toot_content, toot_cw_content))); - toot_content.setSelection(newPosition); - EmojisSearchAdapter emojisSearchAdapter1 = new EmojisSearchAdapter(context, new ArrayList<>()); - toot_content.setThreshold(1); - toot_content.setAdapter(emojisSearchAdapter1); - }); - } - } - - @Override - public void onRetrieveSearch(APIResponse apiResponse) { - - if (apiResponse == null || apiResponse.getResults() == null || toot_content == null) - return; - app.fedilab.android.client.Entities.Results results = apiResponse.getResults(); - int currentCursorPosition = toot_content.getSelectionStart(); - final List tags = results.getHashtags(); - - if (tags != null && tags.size() > 0) { - TagsSearchAdapter tagsSearchAdapter = new TagsSearchAdapter(context, tags); - toot_content.setThreshold(1); - toot_content.setAdapter(tagsSearchAdapter); - final String oldContent = toot_content.getText().toString(); - if (oldContent.length() < currentCursorPosition) - return; - String[] searchA = oldContent.substring(0, currentCursorPosition).split("#"); - if (searchA.length < 1) - return; - final String search = searchA[searchA.length - 1]; - toot_content.setOnItemClickListener((parent, view, position, id) -> { - if (position >= tags.size()) - return; - String tag = tags.get(position); - String deltaSearch = ""; - int searchLength = 15; - if (currentCursorPosition < 15) { //Less than 15 characters are written before the cursor position - searchLength = currentCursorPosition; - } - if (currentCursorPosition - searchLength > 0 && currentCursorPosition < oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength, currentCursorPosition); - else { - if (currentCursorPosition >= oldContent.length()) - deltaSearch = oldContent.substring(currentCursorPosition - searchLength); - } - - if (!search.equals("")) - deltaSearch = deltaSearch.replace("#" + search, ""); - String newContent = oldContent.substring(0, currentCursorPosition - searchLength); - newContent += deltaSearch; - newContent += "#" + tag + " "; - int newPosition = newContent.length(); - if (currentCursorPosition < oldContent.length()) - newContent += oldContent.substring(currentCursorPosition); - toot_content.setText(newContent); - toot_space_left.setText(String.valueOf(TootActivity.countLength(social, toot_content, toot_cw_content))); - toot_content.setSelection(newPosition); - TagsSearchAdapter tagsSearchAdapter1 = new TagsSearchAdapter(context, new ArrayList<>()); - toot_content.setThreshold(1); - toot_content.setAdapter(tagsSearchAdapter1); - }); - } - } - - @Override - public void onPostStatusAction(APIResponse apiResponse) { - if (apiResponse.getError() != null) { - Toasty.error(context, apiResponse.getError().getError(), Toast.LENGTH_SHORT).show(); - storeToot(); - return; - } - final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - final String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null); - String instance = Helper.getLiveInstance(context); - boolean split_toot = sharedpreferences.getBoolean(Helper.SET_AUTOMATICALLY_SPLIT_TOOTS + userId + instance, false); - - if (split_toot && splitToot != null && stepSpliToot < splitToot.size()) { - String tootContent = splitToot.get(stepSpliToot); - stepSpliToot += 1; - Status toot = new Status(); - toot.setSensitive(false); - if (toot_cw_content.getText().toString().trim().length() > 0) - toot.setSpoiler_text(toot_cw_content.getText().toString().trim()); - toot.setVisibility(apiResponse.getStatuses().get(0).getVisibility()); - if (apiResponse.getStatuses() != null && apiResponse.getStatuses().size() > 0) - toot.setIn_reply_to_id(apiResponse.getStatuses().get(0).getId()); - toot.setContent(context, tootContent); - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - Account account = new AccountDAO(context, db).getUniqAccount(userId, instance); - new PostStatusAsyncTask(context, social, account, toot, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - return; - - } - toot_content = null; - toot_cw_content = null; - tootReply = null; - currentToId = -1; - if (apiResponse.getError() == null) { - boolean display_confirm = sharedpreferences.getBoolean(Helper.SET_DISPLAY_CONFIRM, true); - if (display_confirm) { - Toasty.success(context, context.getString(R.string.toot_sent), Toast.LENGTH_LONG).show(); - } - } else { - if (apiResponse.getError().getStatusCode() == -33) - Toasty.info(context, context.getString(R.string.toast_toot_saved_error), Toast.LENGTH_LONG).show(); - } - //For conversation - if (context instanceof ShowConversationActivity && apiResponse.getStatuses() != null && apiResponse.getStatuses().size() > 0) { - ((ShowConversationActivity) context).addStatuses(apiResponse.getStatuses().get(0)); - } - - } - - @Override - public void onRetrieveRelationshipQuickReply(Relationship relationship, Status status, Error error) { - if (error != null) { - return; - } - if (relationship != null && relationship.isBlocked_by()) { - warning_message.setVisibility(View.VISIBLE); - status.setWarningFetched(1); - } else { - status.setWarningFetched(0); - } - } - - @Override - public void onViewAttachedToWindow(@NonNull RecyclerView.ViewHolder holder) { - super.onViewAttachedToWindow(holder); - context = holder.itemView.getContext(); - if (type != RetrieveFeedsAsyncTask.Type.ART && type != RetrieveFeedsAsyncTask.Type.PIXELFED && (tagTimeline == null || !tagTimeline.isART()) && (holder.getItemViewType() == DISPLAYED_STATUS || holder.getItemViewType() == COMPACT_STATUS || holder.getItemViewType() == CONSOLE_STATUS)) { - final ViewHolder viewHolder = (ViewHolder) holder; - // Bug workaround for losing text selection ability, see: - // https://code.google.com/p/android/issues/detail?id=208169 - viewHolder.status_content.setEnabled(false); - viewHolder.status_content.setEnabled(true); - viewHolder.status_spoiler.setEnabled(false); - viewHolder.status_spoiler.setEnabled(true); - } - - } - - public Status getItem(int position) { - if (statuses.size() > position && position >= 0) - return statuses.get(position); - else return null; - } - - @Override - public int getItemViewType(int position) { - boolean show_account_boosts = false; - boolean show_account_replies = false; - if (context instanceof ShowAccountActivity) { - SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - show_account_boosts = sharedpreferences.getBoolean(Helper.SHOW_ACCOUNT_BOOSTS, true); - show_account_replies = sharedpreferences.getBoolean(Helper.SHOW_ACCOUNT_REPLIES, true); - } - if (type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS && type != RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS && !Helper.filterToots(statuses.get(position), type, context instanceof ShowAccountActivity, show_account_boosts, show_account_replies)) { - return HIDDEN_STATUS; - } - if (statuses.get(position).isFocused() && type == RetrieveFeedsAsyncTask.Type.CONTEXT && statuses.get(position).getViewType() != CONSOLE_STATUS) - return FOCUSED_STATUS; - else { - if ((social == UpdateAccountInfoAsyncTask.SOCIAL.PIXELFED && type == RetrieveFeedsAsyncTask.Type.CONTEXT) || type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS) { - return COMPACT_STATUS; - } else { - if (instanceType == null || instanceType.compareTo("NITTER") != 0) { - return statuses.get(position).getViewType(); - } else { - return COMPACT_STATUS; - } - } - } - } - - @NonNull - @Override - public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { - - context = parent.getContext(); - LayoutInflater layoutInflater = LayoutInflater.from(this.context); - if (viewType == DISPLAYED_STATUS) - return new ViewHolder(layoutInflater.inflate(R.layout.drawer_status, parent, false)); - else if (viewType == COMPACT_STATUS) - return new ViewHolder(layoutInflater.inflate(R.layout.drawer_status_compact, parent, false)); - else if (viewType == CONSOLE_STATUS) - return new ViewHolder(layoutInflater.inflate(R.layout.drawer_status_console, parent, false)); - else if (viewType == FOCUSED_STATUS) - return new ViewHolder(layoutInflater.inflate(R.layout.drawer_status_focused, parent, false)); - else - return new ViewHolderEmpty(layoutInflater.inflate(R.layout.drawer_empty, parent, false)); - } - - @SuppressLint({"SetJavaScriptEnabled", "ClickableViewAccessibility"}) - @Override - public void onBindViewHolder(@NonNull final RecyclerView.ViewHolder viewHolder, int i) { - - context = viewHolder.itemView.getContext(); - final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - final String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null); - - if (viewHolder.getItemViewType() != HIDDEN_STATUS) { - final ViewHolder holder = (ViewHolder) viewHolder; - - holder.startUpdateTimer(); - final Status status = statuses.get(i); - - - if (status == null) - return; - //TODO:It sounds that sometimes this value is null - need deeper investigation - if (status.getVisibility() == null) { - status.setVisibility("public"); - } - if (status.getReblog() != null && status.getReblog().getVisibility() == null) { - status.getReblog().setVisibility("public"); - } - status.setItemViewType(viewHolder.getItemViewType()); - - holder.status_privacy.setOnClickListener(view -> { - String v = status.getVisibility(); - holder.status_privacy.setContentDescription(context.getString(R.string.toot_visibility_tilte) + ": " + v); - }); - - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT && holder.status_reply_indicator_top != null) { - - if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { - holder.status_reply_indicator_top.setBackgroundColor(ContextCompat.getColor(context, R.color.mastodonC4)); - holder.status_reply_indicator_bottom.setBackgroundColor(ContextCompat.getColor(context, R.color.mastodonC4)); - holder.reply_indicator_dot.setBackgroundColor(ContextCompat.getColor(context, R.color.mastodonC4)); - } else { - holder.status_reply_indicator_top.setBackgroundColor(ContextCompat.getColor(context, R.color.cyanea_accent_reference)); - holder.status_reply_indicator_bottom.setBackgroundColor(ContextCompat.getColor(context, R.color.cyanea_accent_reference)); - holder.reply_indicator_dot.setBackgroundColor(ContextCompat.getColor(context, R.color.cyanea_accent_reference)); - } - - if (status.isShowTopLine()) { - holder.status_reply_indicator_top.setVisibility(View.VISIBLE); - holder.reply_indicator_dot.setVisibility(View.VISIBLE); - if (holder.status_reply_indicator_diag_top != null) { - holder.status_reply_indicator_diag_top.setBackgroundResource(R.drawable.diag_top); - holder.status_reply_indicator_diag_top.setVisibility(View.VISIBLE); - } - } - if (status.isShowBottomLine()) { - holder.reply_indicator_dot.setVisibility(View.VISIBLE); - holder.status_reply_indicator_bottom.setVisibility(View.VISIBLE); - if (holder.status_reply_indicator_diag_bottom != null) { - holder.status_reply_indicator_diag_bottom.setBackgroundResource(R.drawable.diag_bottom); - holder.status_reply_indicator_diag_bottom.setVisibility(View.VISIBLE); - } - } - if (!status.isShowTopLine()) { - holder.status_reply_indicator_top.setVisibility(View.GONE); - if (holder.status_reply_indicator_diag_top != null) { - holder.status_reply_indicator_diag_top.setVisibility(View.GONE); - } - } - if (!status.isShowBottomLine()) { - holder.status_reply_indicator_bottom.setVisibility(View.GONE); - if (holder.status_reply_indicator_diag_bottom != null) { - holder.status_reply_indicator_diag_bottom.setVisibility(View.GONE); - } - } - if (!status.isShowTopLine() && !status.isShowBottomLine()) { - holder.reply_indicator_dot.setVisibility(View.GONE); - } - } - - - boolean fullAttachement = sharedpreferences.getBoolean(Helper.SET_FULL_PREVIEW, false); - boolean isCompactMode = sharedpreferences.getBoolean(Helper.SET_COMPACT_MODE, false); - boolean isConsoleMode = sharedpreferences.getBoolean(Helper.SET_CONSOLE_MODE, false); - int iconSizePercent = sharedpreferences.getInt(Helper.SET_ICON_SIZE, 130); - int textSizePercent = sharedpreferences.getInt(Helper.SET_TEXT_SIZE, 110); - int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); - boolean expand_cw = sharedpreferences.getBoolean(Helper.SET_EXPAND_CW, false); - boolean expand_media = sharedpreferences.getBoolean(Helper.SET_EXPAND_MEDIA, false); - boolean display_card = sharedpreferences.getBoolean(Helper.SET_DISPLAY_CARD, false); - boolean display_video_preview = sharedpreferences.getBoolean(Helper.SET_DISPLAY_VIDEO_PREVIEWS, true); - int truncate_toots_size = sharedpreferences.getInt(Helper.SET_TRUNCATE_TOOTS_SIZE, 0); - - boolean share_details = sharedpreferences.getBoolean(Helper.SET_SHARE_DETAILS, true); - boolean confirmFav = sharedpreferences.getBoolean(Helper.SET_NOTIF_VALIDATION_FAV, false); - boolean confirmBoost = sharedpreferences.getBoolean(Helper.SET_NOTIF_VALIDATION, true); - - boolean isModerator = sharedpreferences.getBoolean(Helper.PREF_IS_MODERATOR, false); - boolean isAdmin = sharedpreferences.getBoolean(Helper.PREF_IS_ADMINISTRATOR, false); - - boolean fedilab_features_button = sharedpreferences.getBoolean(Helper.SET_DISPLAY_FEDILAB_FEATURES_BUTTON, true); - - boolean new_badge = sharedpreferences.getBoolean(Helper.SET_DISPLAY_NEW_BADGE, true); - boolean bot_icon = sharedpreferences.getBoolean(Helper.SET_DISPLAY_BOT_ICON, true); - - boolean quick_reply = sharedpreferences.getBoolean(Helper.SET_QUICK_REPLY, true); - - int translator = sharedpreferences.getInt(Helper.SET_TRANSLATOR, Helper.TRANS_YANDEX); - int behaviorWithAttachments = sharedpreferences.getInt(Helper.SET_ATTACHMENT_ACTION, Helper.ATTACHMENT_ALWAYS); - - if (status.getReblog() == null) { - if (bot_icon && status.getAccount().isBot()) { - holder.status_account_bot.setVisibility(View.VISIBLE); - } else { - holder.status_account_bot.setVisibility(View.GONE); - } - } else { - if (bot_icon && status.getReblog().getAccount().isBot()) { - holder.status_account_bot.setVisibility(View.VISIBLE); - } else { - holder.status_account_bot.setVisibility(View.GONE); - } - } - - //Display a preview for accounts that have replied *if enabled and only for home timeline* - if (social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON || social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - holder.rated.setVisibility(View.GONE); - holder.multiple_choice.setVisibility(View.GONE); - holder.single_choice.setVisibility(View.GONE); - holder.submit_vote.setVisibility(View.GONE); - Poll poll; - if (status.getReblog() != null) { - poll = status.getReblog().getPoll(); - } else { - poll = status.getPoll(); - } - if (poll != null && poll.getOptionsList() != null) { - if (poll.isVoted() || poll.isExpired()) { - holder.rated.setVisibility(View.VISIBLE); - int greaterValue = 0; - for (PollOptions pollOption : poll.getOptionsList()) { - if (pollOption.getVotes_count() > greaterValue) - greaterValue = pollOption.getVotes_count(); - } - LayoutInflater inflater = ((Activity) context).getLayoutInflater(); - holder.rated.removeAllViews(); - List ownvotes = poll.getOwn_votes(); - int j = 0; - for (PollOptions pollOption : poll.getOptionsList()) { - View item = inflater.inflate(R.layout.layout_poll_item, new LinearLayout(context), false); - double value = ((double) (pollOption.getVotes_count() * 100) / (double) poll.getVoters_count()); - TextView poll_item_percent = item.findViewById(R.id.poll_item_percent); - TextView poll_item_text = item.findViewById(R.id.poll_item_text); - ProgressBar poll_item_value = item.findViewById(R.id.poll_item_value); - poll_item_percent.setText(String.format("%s %%", (int) value)); - poll_item_text.setText(pollOption.getTitleSpan(), TextView.BufferType.SPANNABLE); - poll_item_text.setText(pollOption.getTitle()); - makeEmojis(context, poll_item_text, pollOption.getTitleSpan(), poll.getEmojis()); - poll_item_value.setProgress((int) value); - holder.rated.addView(item); - if (pollOption.getVotes_count() == greaterValue) { - poll_item_percent.setTypeface(null, Typeface.BOLD); - poll_item_text.setTypeface(null, Typeface.BOLD); - } - if (ownvotes != null && ownvotes.contains(j)) { - Drawable img = ContextCompat.getDrawable(context, R.drawable.ic_check_poll); - assert img != null; - final float scale = context.getResources().getDisplayMetrics().density; - img.setColorFilter(ContextCompat.getColor(context, R.color.cyanea_accent_reference), PorterDuff.Mode.SRC_IN); - img.setBounds(0, 0, (int) (20 * scale + 0.5f), (int) (20 * scale + 0.5f)); - poll_item_text.setCompoundDrawables(null, null, img, null); - } - j++; - } - } else { - if (poll.isMultiple()) { - - if ((holder.multiple_choice).getChildCount() > 0) - (holder.multiple_choice).removeAllViews(); - for (PollOptions pollOption : poll.getOptionsList()) { - CheckBox cb = new CheckBox(context); - cb.setText(pollOption.getTitle()); - makeEmojis(context, cb, pollOption.getTitleSpan(), poll.getEmojis()); - - holder.multiple_choice.addView(cb); - } - holder.multiple_choice.setVisibility(View.VISIBLE); - - } else { - if ((holder.radio_group).getChildCount() > 0) - (holder.radio_group).removeAllViews(); - for (PollOptions pollOption : poll.getOptionsList()) { - RadioButton rb = new RadioButton(context); - rb.setText(pollOption.getTitle()); - makeEmojis(context, rb, pollOption.getTitleSpan(), poll.getEmojis()); - holder.radio_group.addView(rb); - } - holder.single_choice.setVisibility(View.VISIBLE); - } - holder.submit_vote.setVisibility(View.VISIBLE); - holder.submit_vote.setOnClickListener(v -> { - int[] choice; - if (poll.isMultiple()) { - ArrayList choices = new ArrayList<>(); - int choicesCount = holder.multiple_choice.getChildCount(); - for (int i1 = 0; i1 < choicesCount; i1++) { - if (holder.multiple_choice.getChildAt(i1) != null && holder.multiple_choice.getChildAt(i1) instanceof CheckBox) { - if (((CheckBox) holder.multiple_choice.getChildAt(i1)).isChecked()) { - choices.add(i1); - } - } - } - choice = new int[choices.size()]; - Iterator iterator = choices.iterator(); - for (int i1 = 0; i1 < choice.length; i1++) { - choice[i1] = iterator.next(); - } - if (choice.length == 0) - return; - } else { - choice = new int[1]; - choice[0] = -1; - int choicesCount = holder.radio_group.getChildCount(); - for (int i1 = 0; i1 < choicesCount; i1++) { - if (holder.radio_group.getChildAt(i1) != null && holder.radio_group.getChildAt(i1) instanceof RadioButton) { - if (((RadioButton) holder.radio_group.getChildAt(i1)).isChecked()) { - choice[0] = i1; - } - } - } - if (choice[0] == -1) - return; - } - new ManagePollAsyncTask(context, ManagePollAsyncTask.type_s.SUBMIT, status, choice, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - }); - } - - holder.refresh_poll.setOnClickListener(v -> new ManagePollAsyncTask(context, ManagePollAsyncTask.type_s.REFRESH, status, null, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR)); - holder.poll_container.setVisibility(View.VISIBLE); - holder.number_votes.setText(context.getResources().getQuantityString(R.plurals.number_of_voters, poll.getVoters_count(), poll.getVoters_count())); - if (poll.isExpired()) { - holder.remaining_time.setText(context.getString(R.string.poll_finish_at, Helper.dateToStringPoll(poll.getExpires_at()))); - } else { - holder.remaining_time.setText(context.getString(R.string.poll_finish_in, Helper.dateDiffPoll(context, poll.getExpires_at()))); - } - } else { - holder.poll_container.setVisibility(View.GONE); - } - } - - if (social == UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) { - holder.status_action_container.setVisibility(View.GONE); - holder.fedilab_features.setVisibility(View.GONE); - holder.status_peertube_container.setVisibility(View.VISIBLE); - holder.status_peertube_reply.setOnClickListener(v -> { - AlertDialog.Builder builderInner; - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogDark; - } else { - style = R.style.Dialog; - } - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(R.string.comment); - EditText input = new EditText(context); - LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( - LinearLayout.LayoutParams.MATCH_PARENT, - LinearLayout.LayoutParams.WRAP_CONTENT); - input.setLayoutParams(lp); - builderInner.setView(input); - builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builderInner.setPositiveButton(R.string.validate, (dialog, which) -> { - String comment = input.getText().toString(); - if (comment.trim().length() > 0) { - new PostActionAsyncTask(context, PeertubeActivity.video_id, comment, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - dialog.dismiss(); - } - }); - builderInner.show(); - }); - if (status.getAccount().getId().equals(userId)) - holder.status_peertube_delete.setVisibility(View.VISIBLE); - else - holder.status_peertube_delete.setVisibility(View.GONE); - holder.status_peertube_delete.setOnClickListener(v -> { - AlertDialog.Builder builderInner; - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogBlack; - } else { - style = R.style.Dialog; - } - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(R.string.delete_comment); - builderInner.setMessage(R.string.delete_comment_confirm); - builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builderInner.setPositiveButton(R.string.yes, (dialog, which) -> { - new PostActionAsyncTask(context, API.StatusAction.PEERTUBEDELETECOMMENT, PeertubeActivity.video_id, null, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - dialog.dismiss(); - }); - builderInner.show(); - }); - - } - - - holder.quick_reply_emoji.setOnClickListener(view -> { - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogBlack; - } else { - style = R.style.Dialog; - } - - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - emojisPicker = new CustomEmojiDAO(context, db).getAllEmojis(Helper.getLiveInstance(context)); - final AlertDialog.Builder builder = new AlertDialog.Builder(context, style); - int paddingPixel = 15; - float density = context.getResources().getDisplayMetrics().density; - int paddingDp = (int) (paddingPixel * density); - builder.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builder.setTitle(R.string.insert_emoji); - if (emojisPicker != null && emojisPicker.size() > 0) { - GridView gridView = new GridView(context); - gridView.setAdapter(new CustomEmojiAdapter(emojisPicker)); - gridView.setNumColumns(5); - gridView.setOnItemClickListener((parent, view1, position, id) -> { - holder.quick_reply_text.getText().insert(holder.quick_reply_text.getSelectionStart(), " :" + emojisPicker.get(position).getShortcode() + ": "); - alertDialogEmoji.dismiss(); - }); - gridView.setPadding(paddingDp, paddingDp, paddingDp, paddingDp); - builder.setView(gridView); - } else { - TextView textView = new TextView(context); - textView.setText(context.getString(R.string.no_emoji)); - textView.setPadding(paddingDp, paddingDp, paddingDp, paddingDp); - builder.setView(textView); - } - alertDialogEmoji = builder.show(); - - }); - - if (status.isNew() && new_badge) { - holder.new_element.setVisibility(View.VISIBLE); - } else - holder.new_element.setVisibility(View.GONE); - - - holder.status_reply.getLayoutParams().height = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - holder.status_reply.getLayoutParams().width = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - holder.status_more.getLayoutParams().height = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - holder.status_more.getLayoutParams().width = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - holder.status_privacy.getLayoutParams().height = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - holder.status_privacy.getLayoutParams().width = (int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100), context); - - - if (getItemViewType(viewHolder.getAdapterPosition()) == FOCUSED_STATUS) { - holder.status_content.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (16 * textSizePercent) / 100); - holder.status_account_displayname.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (16 * textSizePercent) / 100); - holder.status_account_username.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - holder.status_toot_date.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - holder.status_content_translated.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (16 * textSizePercent) / 100); - } else { - holder.status_account_displayname.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - holder.status_account_username.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (12 * textSizePercent) / 100); - holder.status_content.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - holder.status_toot_date.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (12 * textSizePercent) / 100); - holder.status_content_translated.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - } - - holder.status_spoiler.setTextSize(TypedValue.COMPLEX_UNIT_SP, (float) (14 * textSizePercent) / 100); - - if (translator == Helper.TRANS_YANDEX) { - holder.yandex_translate.setVisibility(View.VISIBLE); - } else { - holder.yandex_translate.setVisibility(View.GONE); - } - - //Manages theme for icon colors - - - Helper.changeDrawableColor(context, R.drawable.ic_http, R.color.white); - if (getItemViewType(viewHolder.getAdapterPosition()) == COMPACT_STATUS || getItemViewType(viewHolder.getAdapterPosition()) == CONSOLE_STATUS) - holder.status_privacy.setVisibility(View.GONE); - else - holder.status_privacy.setVisibility(View.VISIBLE); - - - SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); - int iconColor = prefs.getInt("theme_icons_color", -1); - if (iconColor == -1) { - iconColor = ThemeHelper.getAttColor(context, R.attr.iconColor); - } - - if (type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS || social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - if (type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS) { - holder.status_account_profile.setVisibility(View.GONE); - holder.status_account_displayname_owner.setVisibility(View.GONE); - holder.status_account_username.setVisibility(View.GONE); - holder.status_action_container.setVisibility(View.GONE); - } - holder.status_reactions.setVisibility(View.VISIBLE); - ReactionAdapter reactionAdapter = new ReactionAdapter(status.getReactions(), type, status.getId()); - holder.reactions_view.setAdapter(reactionAdapter); - LinearLayoutManager layoutManager - = new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false); - holder.reactions_view.setLayoutManager(layoutManager); - - - holder.status_add_reaction.setOnClickListener(v -> { - EmojiManager.install(new EmojiOneProvider()); - final EmojiPopup emojiPopup = EmojiPopup.Builder.fromRootView(holder.status_add_reaction).setOnEmojiPopupDismissListener(() -> { - InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - assert imm != null; - imm.hideSoftInputFromWindow(holder.status_add_reaction.getWindowToken(), 0); - }).setOnEmojiClickListener((emoji, imageView) -> { - String emojiStr = imageView.getUnicode(); - boolean alreadyAdded = false; - for (Reaction reaction : status.getReactions()) { - if (reaction.getName().compareTo(emojiStr) == 0) { - alreadyAdded = true; - reaction.setCount(reaction.getCount() - 1); - if (reaction.getCount() == 0) { - status.getReactions().remove(reaction); - } - notifyStatusChanged(status); - break; - } - } - if (!alreadyAdded) { - Reaction reaction = new Reaction(); - reaction.setMe(true); - reaction.setCount(1); - reaction.setName(emojiStr); - status.getReactions().add(0, reaction); - notifyStatusChanged(status); - } - API.StatusAction statusAction; - if (type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS) { - statusAction = alreadyAdded ? API.StatusAction.REMOVE_REACTION : API.StatusAction.ADD_REACTION; - } else { - statusAction = alreadyAdded ? API.StatusAction.REMOVE_PLEROMA_REACTION : API.StatusAction.ADD_PLEROMA_REACTION; - } - new PostActionAsyncTask(context, statusAction, status.getId(), null, emojiStr, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - }) - .build(holder.fake_edittext); - emojiPopup.toggle(); - }); - if (social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - holder.status_add_custom_emoji.setVisibility(View.GONE); - } - holder.status_add_custom_emoji.setOnClickListener(v -> { - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - String instance = sharedpreferences.getString(Helper.PREF_INSTANCE, null); - Account account = new AccountDAO(context, db).getUniqAccount(userId, instance); - List emojis = new CustomEmojiDAO(context, db).getAllEmojis(account.getInstance()); - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogBlack; - } else { - style = R.style.Dialog; - } - final AlertDialog.Builder builder = new AlertDialog.Builder(context, style); - int paddingPixel = 15; - float density = context.getResources().getDisplayMetrics().density; - int paddingDp = (int) (paddingPixel * density); - builder.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builder.setTitle(R.string.insert_emoji); - if (emojis != null && emojis.size() > 0) { - GridView gridView = new GridView(context); - gridView.setAdapter(new CustomEmojiAdapter(emojis)); - gridView.setNumColumns(5); - gridView.setOnItemClickListener((parent, view, position, id) -> { - boolean alreadyAdded = false; - for (Reaction reaction : status.getReactions()) { - if (reaction.getName().compareTo(emojis.get(position).getShortcode()) == 0) { - alreadyAdded = true; - reaction.setCount(reaction.getCount() - 1); - if (reaction.getCount() == 0) { - status.getReactions().remove(reaction); - } - notifyStatusChanged(status); - break; - } - } - if (!alreadyAdded) { - Reaction reaction = new Reaction(); - reaction.setMe(true); - reaction.setCount(1); - reaction.setName(emojis.get(position).getShortcode()); - reaction.setUrl(emojis.get(position).getUrl()); - status.getReactions().add(0, reaction); - notifyStatusChanged(status); - } - API.StatusAction statusAction; - if (type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS) { - statusAction = alreadyAdded ? API.StatusAction.REMOVE_REACTION : API.StatusAction.ADD_REACTION; - } else { - statusAction = alreadyAdded ? API.StatusAction.REMOVE_PLEROMA_REACTION : API.StatusAction.ADD_PLEROMA_REACTION; - } - new PostActionAsyncTask(context, statusAction, status.getId(), null, emojis.get(position).getShortcode(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - alertDialogEmoji.dismiss(); - }); - gridView.setPadding(paddingDp, paddingDp, paddingDp, paddingDp); - builder.setView(gridView); - } else { - TextView textView = new TextView(context); - textView.setText(context.getString(R.string.no_emoji)); - textView.setPadding(paddingDp, paddingDp, paddingDp, paddingDp); - builder.setView(textView); - } - alertDialogEmoji = builder.show(); - }); - } - - holder.status_cardview_title.setTextColor(ContextCompat.getColor(context, R.color.dark_text_toot_header)); - holder.status_cardview_content.setTextColor(ContextCompat.getColor(context, R.color.dark_icon)); - holder.status_cardview_url.setTextColor(ContextCompat.getColor(context, R.color.dark_text_toot_header)); - holder.status_cardview.setBackgroundResource(R.drawable.card_border_dark); - - Helper.changeDrawableColor(context, R.drawable.ic_audio_wave, iconColor); - - Helper.changeDrawableColor(context, R.drawable.ic_photo, R.color.cyanea_accent_reference); - Helper.changeDrawableColor(context, R.drawable.ic_remove_red_eye, R.color.cyanea_accent_reference); - Helper.changeDrawableColor(context, R.drawable.ic_fetch_more, R.color.cyanea_accent_reference); - - Helper.changeDrawableColor(context, holder.status_remove, iconColor); - Helper.changeDrawableColor(context, R.drawable.ic_fetch_more, iconColor); - Helper.changeDrawableColor(context, holder.status_reply, iconColor); - Helper.changeDrawableColor(context, R.drawable.ic_conversation, iconColor); - Helper.changeDrawableColor(context, R.drawable.ic_more_horiz, iconColor); - Helper.changeDrawableColor(context, holder.status_more, iconColor); - Helper.changeDrawableColor(context, holder.status_privacy, iconColor); - Helper.changeDrawableColor(context, R.drawable.ic_repeat, iconColor); - Helper.changeDrawableColor(context, R.drawable.ic_plus_one, iconColor); - - holder.status_reply_count.setTextColor(iconColor); - holder.status_favorite_count.setTextColor(iconColor); - holder.status_reblog_count.setTextColor(iconColor); - - - int theme_text_header_2_line = prefs.getInt("theme_text_header_2_line", -1); - if (theme_text_header_2_line == -1) { - theme_text_header_2_line = ThemeHelper.getAttColor(context, R.attr.textHeader); - } - - holder.status_account_displayname.setTextColor(theme_text_header_2_line); - holder.status_toot_date.setTextColor(theme_text_header_2_line); - if (holder.status_boosted_date != null) { - holder.status_boosted_date.setTextColor(theme_text_header_2_line); - } - Helper.changeDrawableColor(context, R.drawable.ic_repeat_head_toot, theme_text_header_2_line); - - int theme_text_header_1_line = prefs.getInt("theme_text_header_1_line", -1); - if (theme_text_header_1_line == -1) { - theme_text_header_1_line = ThemeHelper.getAttColor(context, R.attr.textColor); - } - holder.status_account_displayname_owner.setTextColor(theme_text_header_1_line); - Helper.changeDrawableColor(context, holder.cached_status, theme_text_header_1_line); - - - if (holder.cached_status != null && holder.getItemViewType() == DISPLAYED_STATUS) { - if (status.iscached() || type == RetrieveFeedsAsyncTask.Type.CACHE_BOOKMARKS) { - holder.cached_status.setVisibility(View.VISIBLE); - } else { - holder.cached_status.setVisibility(View.GONE); - } - holder.cached_status.setOnClickListener(v -> new ManageCachedStatusAsyncTask(context, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR)); - } - - if (holder.fedilab_features != null && !fedilab_features_button) - holder.fedilab_features.setVisibility(View.GONE); - - if (holder.fedilab_features != null && fedilab_features_button) { - TooltipCompat.setTooltipText(holder.fedilab_features, context.getString(R.string.app_features)); - holder.fedilab_features.setOnClickListener(v -> { - boolean state = status.isCustomFeaturesDisplayed(); - closePanels(); - status.setCustomFeaturesDisplayed(!state); notifyStatusChanged(status); - }); - - - int customColor = ContextCompat.getColor(context, R.color.cyanea_accent_reference); - holder.fedilab_features.setBackgroundColor(customColor); - holder.custom_feature_bookmark.setBackgroundColor(customColor); - holder.custom_feature_translate.setBackgroundColor(customColor); - holder.custom_feature_timed_mute.setBackgroundColor(customColor); - holder.custom_feature_schedule.setBackgroundColor(customColor); - holder.custom_feature_mention.setBackgroundColor(customColor); - holder.custom_feature_cache.setBackgroundColor(customColor); - - if (status.isCustomFeaturesDisplayed()) { - holder.fedilab_features_panel.setVisibility(View.VISIBLE); - } else { - holder.fedilab_features_panel.setVisibility(View.GONE); - } - if (theme == Helper.THEME_LIGHT) { - holder.fedilab_features_panel.setBackgroundColor(ContextCompat.getColor(context, R.color.custom_features_panel_background_light)); - } - - if (!status.iscached() && type != RetrieveFeedsAsyncTask.Type.CACHE_BOOKMARKS) { - holder.custom_feature_cache.setVisibility(View.GONE); - } - - if (status.isBookmarked()) - holder.custom_feature_bookmark.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_bookmark_white_full)); - else - holder.custom_feature_bookmark.setImageDrawable(ContextCompat.getDrawable(context, R.drawable.ic_bookmark_white)); - - TooltipCompat.setTooltipText(holder.custom_feature_translate, context.getString(R.string.translate)); - holder.custom_feature_translate.setOnClickListener(view -> { - translateToot(status, holder.status_content_translated); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - }); - - holder.custom_feature_bookmark.setOnClickListener(view -> { - CrossActions.doCrossBookmark(context, status, statusListAdapter, true); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - }); - holder.custom_feature_bookmark.setOnLongClickListener(view -> { - CrossActions.doCrossBookmark(context, status, statusListAdapter, false); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - return false; - }); - - if (type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE || type == RetrieveFeedsAsyncTask.Type.NEWS) { - holder.custom_feature_timed_mute.setVisibility(View.GONE); - holder.custom_feature_schedule.setVisibility(View.GONE); - holder.custom_feature_cache.setVisibility(View.GONE); - } - TooltipCompat.setTooltipText(holder.custom_feature_timed_mute, context.getString(R.string.timed_mute)); - holder.custom_feature_timed_mute.setOnClickListener(view -> { - timedMuteAction(status); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - }); - - TooltipCompat.setTooltipText(holder.custom_feature_schedule, context.getString(R.string.schedule_boost)); - holder.custom_feature_schedule.setOnClickListener(view -> { - scheduleBoost(status); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - }); - - TooltipCompat.setTooltipText(holder.custom_feature_mention, context.getString(R.string.mention_status)); - holder.custom_feature_mention.setOnClickListener(view -> { - mention(status); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - }); - - TooltipCompat.setTooltipText(holder.custom_feature_cache, context.getString(R.string.refresh_cache)); - holder.custom_feature_cache.setOnClickListener(view -> { - if (type != RetrieveFeedsAsyncTask.Type.CACHE_BOOKMARKS) { - new ManageCachedStatusAsyncTask(context, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - status.setCustomFeaturesDisplayed(false); - notifyStatusChanged(status); - } else { - new SyncBookmarksAsyncTask(context, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } - - }); - } - - - //Redraws top icons (boost/reply) - final float scale = context.getResources().getDisplayMetrics().density; - holder.spark_button_fav.pressOnTouch(false); - holder.spark_button_reblog.pressOnTouch(false); - holder.spark_button_fav.setActiveImage(R.drawable.ic_star); - holder.spark_button_fav.setInactiveImage(R.drawable.ic_star_border); - holder.spark_button_fav.setDisableCircle(true); - holder.spark_button_reblog.setDisableCircle(true); - holder.spark_button_fav.setActiveImageTint(R.color.marked_icon); - holder.spark_button_reblog.setActiveImageTint(R.color.boost_icon); - holder.spark_button_fav.setInActiveImageTintColor(iconColor); - holder.spark_button_reblog.setInActiveImageTintColor(iconColor); - holder.spark_button_fav.setColors(R.color.marked_icon, R.color.marked_icon); - holder.spark_button_fav.setImageSize((int) (20 * iconSizePercent / 100 * scale + 0.5f)); - holder.spark_button_fav.setMinimumWidth((int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100 * scale + 0.5f), context)); - - holder.spark_button_reblog.setColors(R.color.boost_icon, R.color.boost_icon); - holder.spark_button_reblog.setImageSize((int) (20 * iconSizePercent / 100 * scale + 0.5f)); - holder.spark_button_reblog.setMinimumWidth((int) Helper.convertDpToPixel(((float) (20 * iconSizePercent) / 100 * scale + 0.5f), context)); - - Drawable imgConversation = null; - if (social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA || social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) { - if (type != RetrieveFeedsAsyncTask.Type.CONTEXT && ((status.getIn_reply_to_account_id() != null && status.getIn_reply_to_account_id().equals(status.getAccount().getId())) - || (status.getReblog() != null && status.getReblog().getIn_reply_to_account_id() != null && status.getReblog().getIn_reply_to_account_id().equals(status.getReblog().getAccount().getId())))) { - imgConversation = ContextCompat.getDrawable(context, R.drawable.ic_conversation); - imgConversation.setBounds(0, 0, (int) (15 * iconSizePercent / 100 * scale + 0.5f), (int) (15 * iconSizePercent / 100 * scale + 0.5f)); - } - } else { - if (type != RetrieveFeedsAsyncTask.Type.CONTEXT && status.getIn_reply_to_id() != null) { - imgConversation = ContextCompat.getDrawable(context, R.drawable.ic_conversation); - imgConversation.setBounds(0, 0, (int) (15 * iconSizePercent / 100 * scale + 0.5f), (int) (15 * iconSizePercent / 100 * scale + 0.5f)); + break; } } - if (status.getReblog() != null) { - Drawable img = ContextCompat.getDrawable(context, R.drawable.ic_repeat_head_toot); - assert img != null; - img.setBounds(0, 0, (int) (20 * iconSizePercent / 100 * scale + 0.5f), (int) (15 * iconSizePercent / 100 * scale + 0.5f)); - holder.status_account_displayname.setCompoundDrawables(img, null, null, null); - } else { - holder.status_account_displayname.setCompoundDrawables(null, null, null, null); - } - holder.status_toot_date.setCompoundDrawables(imgConversation, null, null, null); - if (expand_media && status.isSensitive() || (status.getReblog() != null && status.getReblog().isSensitive())) { - Helper.changeDrawableColor(context, holder.hide_preview, R.color.red_1); - Helper.changeDrawableColor(context, holder.hide_preview_h, R.color.red_1); - } else { - Helper.changeDrawableColor(context, holder.hide_preview, R.color.white); - Helper.changeDrawableColor(context, holder.hide_preview_h, R.color.white); - } - - if (instanceType != null && instanceType.compareTo("NITTER") == 0) { - holder.status_action_container.setVisibility(View.GONE); - if (holder.status_action_container_twitter != null) { - holder.status_action_container_twitter.setVisibility(View.VISIBLE); - holder.status_action_container_twitter.setOnClickListener(v -> { - Intent sendIntent = new Intent(Intent.ACTION_SEND); - sendIntent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.shared_via)); - String url = status.getUrl(); - String extra_text; - - extra_text = (status.getReblog() != null) ? status.getReblog().getAccount().getAcct() : status.getAccount().getAcct(); - if (extra_text.split("@").length == 1) - extra_text = "@" + extra_text + "@" + Helper.getLiveInstance(context); - else - extra_text = "@" + extra_text; - extra_text += " \uD83D\uDD17 " + url + "\r\n-\n"; - final String contentToot; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - contentToot = Html.fromHtml((status.getReblog() != null) ? status.getReblog().getContent() : status.getContent(), Html.FROM_HTML_MODE_LEGACY).toString(); - else - contentToot = Html.fromHtml((status.getReblog() != null) ? status.getReblog().getContent() : status.getContent()).toString(); - extra_text += contentToot; - sendIntent.putExtra(Intent.EXTRA_TEXT, extra_text); - sendIntent.setType("text/plain"); - context.startActivity(Intent.createChooser(sendIntent, context.getString(R.string.share_with))); - }); - } - } - - holder.status_content.setOnTouchListener((view, motionEvent) -> { - if (motionEvent.getAction() == MotionEvent.ACTION_UP && !view.hasFocus()) { - try { - view.requestFocus(); - } catch (Exception ignored) { - } - } - return false; - }); - holder.status_spoiler.setOnTouchListener((view, motionEvent) -> { - if (motionEvent.getAction() == MotionEvent.ACTION_UP && !view.hasFocus()) { - try { - view.requestFocus(); - } catch (Exception ignored) { - } - } - return false; - }); - //Click on a conversation - - if ((instanceType == null || (instanceType.compareTo("NITTER") != 0 && type != RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS)) && (getItemViewType(viewHolder.getAdapterPosition()) == DISPLAYED_STATUS || getItemViewType(viewHolder.getAdapterPosition()) == COMPACT_STATUS || getItemViewType(viewHolder.getAdapterPosition()) == CONSOLE_STATUS)) { - - holder.status_spoiler.setOnClickListener(v -> { - if (type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS) { - Intent intent = new Intent(context, ShowConversationActivity.class); - Bundle b = new Bundle(); - if (social == UpdateAccountInfoAsyncTask.SOCIAL.GNU || social == UpdateAccountInfoAsyncTask.SOCIAL.FRIENDICA) - b.putString("conversationId", status.getConversationId()); - if (status.getReblog() == null) - b.putParcelable("status", status); - else - b.putParcelable("status", status.getReblog()); - intent.putExtras(b); - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT) - ((Activity) context).finish(); - context.startActivity(intent); - } else { - if (social != UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) - CrossActions.doCrossConversation(context, status); - } - }); - holder.status_content.setOnClickListener(v -> { - if (type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != REMOTE_INSTANCE_FILTERED && type != RetrieveFeedsAsyncTask.Type.NEWS) { - Intent intent = new Intent(context, ShowConversationActivity.class); - Bundle b = new Bundle(); - if (social == UpdateAccountInfoAsyncTask.SOCIAL.GNU || social == UpdateAccountInfoAsyncTask.SOCIAL.FRIENDICA) - b.putString("conversationId", status.getConversationId()); - if (status.getReblog() == null) - b.putParcelable("status", status); - else - b.putParcelable("status", status.getReblog()); - intent.putExtras(b); - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT) - ((Activity) context).finish(); - context.startActivity(intent); - } else { - if (social != UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) - CrossActions.doCrossConversation(context, status); - } - }); - holder.main_container.setOnClickListener(v -> { - if (type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS) { - Intent intent = new Intent(context, ShowConversationActivity.class); - Bundle b = new Bundle(); - if (social == UpdateAccountInfoAsyncTask.SOCIAL.GNU || social == UpdateAccountInfoAsyncTask.SOCIAL.FRIENDICA) - b.putString("conversationId", status.getConversationId()); - if (status.getReblog() == null) - b.putParcelable("status", status); - else - b.putParcelable("status", status.getReblog()); - intent.putExtras(b); - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT) - ((Activity) context).finish(); - context.startActivity(intent); - } else { - if (social != UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) - CrossActions.doCrossConversation(context, status); - } - }); - } - - - if (isConsoleMode) { - String acct = status.getAccount().getAcct(); - String acctReblog = null; - if (!acct.contains("@")) - acct += "@" + Helper.getLiveInstance(context); - if (status.getReblog() != null) { - acctReblog = status.getReblog().getAccount().getAcct(); - if (!acctReblog.contains("@")) - acctReblog += "@" + Helper.getLiveInstance(context); - } - SpannableString acctSpan = new SpannableString(acct + ":~$"); - SpannableString acctReblogSpan = null; - if (acctReblog != null) - acctReblogSpan = new SpannableString(" <" + acctReblog + ">"); - - if (theme == Helper.THEME_LIGHT) - acctSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), (acctSpan.length() - 3), acctSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_DARK) - acctSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), (acctSpan.length() - 3), acctSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_BLACK) - acctSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), (acctSpan.length() - 3), acctSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - - URLSpan[] urls = acctSpan.getSpans(0, (acctSpan.length() - 3), URLSpan.class); - for (URLSpan span : urls) - acctSpan.removeSpan(span); - acctSpan.setSpan(new ClickableSpan() { - @Override - public void onClick(@NonNull View textView) { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getAccount()); - intent.putExtras(b); - context.startActivity(intent); - } - - @Override - public void updateDrawState(@NonNull TextPaint ds) { - super.updateDrawState(ds); - ds.setUnderlineText(false); - if (theme == Helper.THEME_DARK) - ds.setColor(ContextCompat.getColor(context, R.color.console_name)); - else if (theme == Helper.THEME_BLACK) - ds.setColor(ContextCompat.getColor(context, R.color.console_name)); - else if (theme == Helper.THEME_LIGHT) - ds.setColor(ContextCompat.getColor(context, R.color.console_name)); - } - }, - 0, (acctSpan.length() - 3), - Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - SpannableString startingSpan; - if (acctReblogSpan != null) { - for (URLSpan span : urls) - acctReblogSpan.removeSpan(span); - acctReblogSpan.setSpan(new ClickableSpan() { - @Override - public void onClick(@NonNull View textView) { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getReblog().getAccount()); - intent.putExtras(b); - context.startActivity(intent); - } - - @Override - public void updateDrawState(@NonNull TextPaint ds) { - super.updateDrawState(ds); - ds.setUnderlineText(false); - if (theme == Helper.THEME_DARK) - ds.setColor(ContextCompat.getColor(context, R.color.console_reblog_name)); - else if (theme == Helper.THEME_BLACK) - ds.setColor(ContextCompat.getColor(context, R.color.console_reblog_name)); - else if (theme == Helper.THEME_LIGHT) - ds.setColor(ContextCompat.getColor(context, R.color.console_reblog_name)); - } - }, - 2, acctReblogSpan.length() - 1, - Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - if (theme == Helper.THEME_LIGHT) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), 1, 2, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_DARK) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), 1, 2, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_BLACK) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), 1, 2, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - if (theme == Helper.THEME_LIGHT) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), acctReblogSpan.length() - 1, acctReblogSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_DARK) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), acctReblogSpan.length() - 1, acctReblogSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - else if (theme == Helper.THEME_BLACK) - acctReblogSpan.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, R.color.console_marker)), acctReblogSpan.length() - 1, acctReblogSpan.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - - startingSpan = new SpannableString(TextUtils.concat(acctSpan, new SpannableString(" "), acctReblogSpan)); - } else - startingSpan = acctSpan; - if (startingSpan == null) - startingSpan = new SpannableString(""); - if (status.getContentSpan() == null) - status.setContentSpan(new SpannableString("")); - - if (status.getReblog() == null && status.getSpoiler_text() != null && status.getSpoiler_text().length() > 0) { - holder.status_spoiler.setText(TextUtils.concat(startingSpan, new SpannableString(" "), status.getContentSpanCW()), TextView.BufferType.SPANNABLE); - holder.status_content.setText(status.getContentSpan(), TextView.BufferType.SPANNABLE); - } else if (status.getReblog() != null && status.getReblog().getSpoiler_text() != null && status.getReblog().getSpoiler_text().length() > 0) { - holder.status_spoiler.setText(TextUtils.concat(startingSpan, new SpannableString(" "), status.getContentSpanCW()), TextView.BufferType.SPANNABLE); - holder.status_content.setText(status.getContentSpan(), TextView.BufferType.SPANNABLE); - } else { - holder.status_spoiler.setText(status.getContentSpanCW(), TextView.BufferType.SPANNABLE); - holder.status_content.setText(TextUtils.concat(startingSpan, new SpannableString(" "), status.getContentSpan() != null ? status.getContentSpan() : new SpannableString("")), TextView.BufferType.SPANNABLE); - } - - } else { - holder.status_content.setText(status.getContentSpan(), TextView.BufferType.SPANNABLE); - holder.status_spoiler.setText(status.getContentSpanCW(), TextView.BufferType.SPANNABLE); - } - makeEmojis(context, holder.status_content, status.getContentSpan(), status.getReblog() != null ? status.getReblog().getEmojis() : status.getEmojis()); - - - holder.status_content.setMovementMethod(LongClickLinkMovementMethod.getInstance()); - holder.status_spoiler.setMovementMethod(LinkMovementMethod.getInstance()); - if (truncate_toots_size > 0) { - holder.status_content.setMaxLines(truncate_toots_size); - if (status.getNumberLines() == -1) { - status.setNumberLines(-2); - holder.status_show_more_content.setVisibility(View.GONE); - holder.status_content.post(() -> { - status.setNumberLines(holder.status_content.getLineCount()); - if (status.getNumberLines() > truncate_toots_size) { - notifyStatusChanged(status); - } - }); - } else if (status.getNumberLines() > truncate_toots_size) { - holder.status_show_more_content.setVisibility(View.VISIBLE); - if (status.isExpanded()) { - holder.status_content.setMaxLines(Integer.MAX_VALUE); - holder.status_show_more_content.setText(R.string.hide_toot_truncate); - } else { - holder.status_content.setMaxLines(truncate_toots_size); - holder.status_show_more_content.setText(R.string.display_toot_truncate); - } - } else { - holder.status_show_more_content.setVisibility(View.GONE); - } - } - holder.status_show_more_content.setOnClickListener(v -> { - status.setExpanded(!status.isExpanded()); + if (!alreadyAdded) { + Reaction reaction = new Reaction(); + reaction.setMe(true); + reaction.setCount(1); + reaction.setName(emojiStr); + status.getReactions().add(0, reaction); notifyStatusChanged(status); - }); - - - holder.status_content_translated.setMovementMethod(LinkMovementMethod.getInstance()); - //-------- END -> Manages translations - - //Displays name & emoji in toot header - final Account accountForUrl; - SpannableString displayNameSpan = status.getReblog() != null ? status.getReblog().getAccount().getDisplayNameSpan() : status.getAccount().getDisplayNameSpan(); - if (status.getReblog() != null) { - accountForUrl = status.getReblog().getAccount(); - holder.status_account_displayname.setVisibility(View.VISIBLE); - holder.status_account_displayname.setText(context.getResources().getString(R.string.reblog_by, status.getAccount().getUsername())); - holder.status_account_displayname.setOnClickListener(v -> { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getAccount()); - intent.putExtras(b); - context.startActivity(intent); - }); - - if (status.getReblog().getAccount().getDisplay_name().length() > 0) { - holder.status_account_displayname_owner.setText(displayNameSpan, TextView.BufferType.SPANNABLE); - makeEmojis(context, holder.status_account_displayname_owner, status.getReblog().getAccount().getDisplayNameSpan(), status.getReblog().getAccount().getEmojis()); - } else - holder.status_account_displayname_owner.setText(status.getReblog().getAccount().getAcct().replace("@", "")); - - holder.status_account_displayname_owner.setVisibility(View.VISIBLE); - if (holder.status_boosted_date != null) { - holder.status_boosted_date.setText(Helper.dateDiff(context, status.getCreated_at())); - } + } + API.StatusAction statusAction; + if (type == RetrieveFeedsAsyncTask.Type.ANNOUNCEMENTS) { + statusAction = alreadyAdded ? API.StatusAction.REMOVE_REACTION : API.StatusAction.ADD_REACTION; } else { - accountForUrl = status.getAccount(); - holder.status_account_displayname.setVisibility(View.GONE); - if (displayNameSpan == null || displayNameSpan.toString().trim().length() == 0) { - holder.status_account_displayname_owner.setText(status.getAccount().getUsername().replace("@", ""), TextView.BufferType.SPANNABLE); - } else { - holder.status_account_displayname_owner.setText(displayNameSpan, TextView.BufferType.SPANNABLE); - makeEmojis(context, holder.status_account_displayname_owner, displayNameSpan, status.getAccount().getEmojis()); - } + statusAction = alreadyAdded ? API.StatusAction.REMOVE_PLEROMA_REACTION : API.StatusAction.ADD_PLEROMA_REACTION; } - //-------- END -> Displays name & emoji in toot header - - //Change the color in gray for accounts in DARK Theme only - Spannable wordtoSpan; - Pattern hashAcct; - if (status.getReblog() != null) { - wordtoSpan = new SpannableString("@" + status.getReblog().getAccount().getAcct()); - hashAcct = Pattern.compile("(@" + status.getReblog().getAccount().getAcct() + ")"); - } else { - wordtoSpan = new SpannableString("@" + status.getAccount().getAcct()); - hashAcct = Pattern.compile("(@" + status.getAccount().getAcct() + ")"); - } - if (hashAcct != null) { - Matcher matcherAcct = hashAcct.matcher(wordtoSpan); - while (matcherAcct.find()) { - int matchStart = matcherAcct.start(1); - int matchEnd = matcherAcct.end(); - if (wordtoSpan.length() >= matchEnd && matchStart < matchEnd) { - wordtoSpan.setSpan(new ForegroundColorSpan(theme_text_header_2_line), matchStart, matchEnd, Spanned.SPAN_INCLUSIVE_EXCLUSIVE); - } - - } - } - holder.status_account_username.setText(wordtoSpan); - - //-------- END -> Change the color in gray for accounts in DARK Theme only - - if (status.isFetchMore()) { - holder.fetch_more.setVisibility(View.VISIBLE); - holder.fetch_more.setEnabled(true); - holder.fetch_more.setOnClickListener(view -> { - status.setFetchMore(false); - holder.fetch_more.setEnabled(false); - holder.fetch_more.setVisibility(View.GONE); - if (context instanceof BaseMainActivity) { - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - List timelines = new TimelinesDAO(context, db).getDisplayedTimelines(); - for (ManageTimelines tl : timelines) { - if (tl.getType() == ManageTimelines.Type.HOME && mPageReferenceMap != null) { - DisplayStatusFragment homeFragment = (DisplayStatusFragment) mPageReferenceMap.get(tl.getPosition()); - if (homeFragment != null) - homeFragment.fetchMore(status.getId()); - break; - } - } - } else { - Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); - } - }); - holder.fetch_more.setOnLongClickListener(v -> { - status.setFetchMore(false); - holder.fetch_more.setEnabled(false); - holder.fetch_more.setVisibility(View.GONE); - if (context instanceof BaseMainActivity) { - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - List timelines = new TimelinesDAO(context, db).getDisplayedTimelines(); - for (ManageTimelines tl : timelines) { - if (tl.getType() == ManageTimelines.Type.HOME && mPageReferenceMap != null) { - DisplayStatusFragment homeFragment = (DisplayStatusFragment) mPageReferenceMap.get(tl.getPosition()); - if (homeFragment != null) { - fetch_all_more = true; - homeFragment.fetchMore(status.getId()); - } - break; - } - } - } else { - Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); - } - return false; - }); - } else { - holder.fetch_more.setVisibility(View.GONE); - - } - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT) { - holder.fetch_more.setVisibility(View.GONE); - } - - if (status.getMentions() != null) - holder.status_mention_spoiler.setText(Helper.makeMentionsClick(context, status.getMentions()), TextView.BufferType.SPANNABLE); - holder.status_mention_spoiler.setMovementMethod(LinkMovementMethod.getInstance()); - - if ((isCompactMode || isConsoleMode) && getItemViewType(viewHolder.getAdapterPosition()) != FOCUSED_STATUS) { - - if ((status.getReblog() == null && status.getReplies_count() > 1) || (status.getReblog() != null && status.getReblog().getReplies_count() > 1)) { - Drawable img = context.getResources().getDrawable(R.drawable.ic_plus_one); - holder.status_reply_count.setCompoundDrawablesWithIntrinsicBounds(null, null, img, null); - } else { - holder.status_reply_count.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null); - } - } - - if (getItemViewType(viewHolder.getAdapterPosition()) != COMPACT_STATUS && getItemViewType(viewHolder.getAdapterPosition()) != CONSOLE_STATUS) { - if (status.getReblog() == null) { - if (status.getReplies_count() > 0) - holder.status_reply_count.setText(String.valueOf(status.getReplies_count())); - else - holder.status_reply_count.setText(""); - } else { - if (status.getReblog().getReplies_count() > 0) - holder.status_reply_count.setText(String.valueOf(status.getReblog().getReplies_count())); - else - holder.status_reply_count.setText(""); - } - - if (status.getReblog() == null) { - if (status.getFavourites_count() > 0) - holder.status_favorite_count.setText(String.valueOf(status.getFavourites_count())); - else - holder.status_favorite_count.setText(""); - } else { - if (status.getReblog().getFavourites_count() > 0) - holder.status_favorite_count.setText(String.valueOf(status.getReblog().getFavourites_count())); - else - holder.status_favorite_count.setText(""); - } - - if (status.getReblog() == null) { - if (status.getReblogs_count() > 0) - holder.status_reblog_count.setText(String.valueOf(status.getReblogs_count())); - else - holder.status_reblog_count.setText(""); - } else { - if (status.getReblog().getReblogs_count() > 0) - holder.status_reblog_count.setText(String.valueOf(status.getReblog().getReblogs_count())); - else - holder.status_reblog_count.setText(""); - } - } - if (getItemViewType(viewHolder.getAdapterPosition()) == FOCUSED_STATUS) { - String fullDate_tmp = Helper.dateDiffFull(status.getCreated_at()); - String fullDate = ""; - if (!fullDate_tmp.equals("")) - fullDate = fullDate_tmp.substring(0, 1).toUpperCase() + fullDate_tmp.substring(1); - holder.status_toot_date.setText(fullDate); - } else { - if (status.getReblog() != null) - holder.status_toot_date.setText(Helper.dateDiff(context, status.getReblog().getCreated_at())); - else - holder.status_toot_date.setText(Helper.dateDiff(context, status.getCreated_at())); - Helper.absoluteDateTimeReveal(context, holder.status_toot_date, status.getCreated_at()); - } - - if (status.getReblog() != null) { - Helper.loadGiF(context, accountForUrl, holder.status_account_profile); - Helper.loadGiF(context, status.getAccount(), holder.status_account_profile_boost_by); - if (holder.status_boosted_by_info != null) { - holder.status_boosted_by_info.setVisibility(View.VISIBLE); - } - } else { - Helper.loadGiF(context, accountForUrl, holder.status_account_profile); - if (holder.status_boosted_by_info != null) { - holder.status_boosted_by_info.setVisibility(View.GONE); - } - } - int reblogColor = prefs.getInt("theme_boost_header_color", -1); - if (holder.status_boosted_by_info != null && reblogColor != -1) { - holder.status_boosted_by_info.setBackgroundColor(reblogColor); - } - int theme_text_color = prefs.getInt("theme_text_color", -1); - if (holder.status_content != null && theme_text_color != -1) { - holder.status_content.setTextColor(theme_text_color); - holder.status_content_translated.setTextColor(theme_text_color); - holder.status_spoiler.setTextColor(theme_text_color); - } - int statusColor = prefs.getInt("theme_statuses_color", -1); - if (holder.main_card_container != null && statusColor != -1) { - holder.main_card_container.setBackgroundColor(statusColor); - if (holder.translation_label != null) { - holder.translation_label.setBackgroundColor(statusColor); - } - } else if (holder.main_card_container != null) { - holder.main_card_container.setBackgroundColor(ThemeHelper.getAttColor(context, R.attr.cardviewColor)); - if (holder.translation_label != null) { - holder.translation_label.setBackgroundColor(ThemeHelper.getAttColor(context, R.attr.cardviewColor)); - } - } - if (statusColor != -1) { - holder.quick_reply_container.setBackgroundColor(statusColor); - } - - if (type == RetrieveFeedsAsyncTask.Type.CONVERSATION && status.getConversationProfilePicture() != null) { - holder.status_account_profile.setVisibility(View.GONE); - holder.conversation_pp.setVisibility(View.VISIBLE); - if (status.getConversationProfilePicture().size() == 1) { - holder.conversation_pp_1.setVisibility(View.VISIBLE); - holder.conversation_pp_1.setScaleType(ImageView.ScaleType.CENTER_CROP); - holder.conversation_pp_2.setVisibility(View.GONE); - holder.conversation_pp_3.setVisibility(View.GONE); - holder.conversation_pp_4.setVisibility(View.GONE); - Helper.loadGiF(context, status.getConversationProfilePicture().get(0), holder.conversation_pp_1); - } else if (status.getConversationProfilePicture().size() == 2) { - holder.conversation_pp_1.setVisibility(View.VISIBLE); - holder.conversation_pp_2.setVisibility(View.VISIBLE); - holder.conversation_pp_3.setVisibility(View.GONE); - holder.conversation_pp_4.setVisibility(View.GONE); - Helper.loadGiF(context, status.getConversationProfilePicture().get(0), holder.conversation_pp_1); - Helper.loadGiF(context, status.getConversationProfilePicture().get(1), holder.conversation_pp_2); - } else if (status.getConversationProfilePicture().size() == 3) { - holder.conversation_pp_4.setVisibility(View.GONE); - holder.conversation_pp_1.setVisibility(View.VISIBLE); - holder.conversation_pp_2.setVisibility(View.VISIBLE); - holder.conversation_pp_3.setVisibility(View.VISIBLE); - holder.conversation_pp_4.setVisibility(View.GONE); - Helper.loadGiF(context, status.getConversationProfilePicture().get(0), holder.conversation_pp_1); - Helper.loadGiF(context, status.getConversationProfilePicture().get(1), holder.conversation_pp_2); - Helper.loadGiF(context, status.getConversationProfilePicture().get(2), holder.conversation_pp_3); - } else if (status.getConversationProfilePicture().size() == 4) { - holder.conversation_pp_1.setVisibility(View.VISIBLE); - holder.conversation_pp_2.setVisibility(View.VISIBLE); - holder.conversation_pp_3.setVisibility(View.VISIBLE); - holder.conversation_pp_4.setVisibility(View.VISIBLE); - Helper.loadGiF(context, status.getConversationProfilePicture().get(0), holder.conversation_pp_1); - Helper.loadGiF(context, status.getConversationProfilePicture().get(1), holder.conversation_pp_2); - Helper.loadGiF(context, status.getConversationProfilePicture().get(2), holder.conversation_pp_3); - Helper.loadGiF(context, status.getConversationProfilePicture().get(3), holder.conversation_pp_4); - } - } - - - if (status.getReblog() == null) { - if (status.getSpoiler_text() != null && status.getSpoiler_text().trim().length() > 0) { - holder.status_spoiler_container.setVisibility(View.VISIBLE); - if (!status.isSpoilerShown() && (!expand_cw || status.isAutoHiddenCW())) { - holder.status_content_container.setVisibility(View.GONE); - if (status.getMentions().size() > 0) - holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); - else - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); - } else { - if (!status.isAutoHiddenCW()) { - holder.status_content_container.setVisibility(View.VISIBLE); - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler_less)); - } else { - holder.status_content_container.setVisibility(View.GONE); - if (status.getMentions().size() > 0) - holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); - else - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); - } - } - } else { - holder.status_spoiler_container.setVisibility(View.GONE); - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_content_container.setVisibility(View.VISIBLE); - } - } else { - if (status.getReblog().getSpoiler_text() != null && status.getReblog().getSpoiler_text().trim().length() > 0) { - holder.status_spoiler_container.setVisibility(View.VISIBLE); - if (!status.isSpoilerShown() && (!expand_cw || status.isAutoHiddenCW())) { - holder.status_content_container.setVisibility(View.GONE); - if (status.getMentions().size() > 0) - holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); - else - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); - } else { - if (!status.isAutoHiddenCW()) { - holder.status_content_container.setVisibility(View.VISIBLE); - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler_less)); - } else { - holder.status_content_container.setVisibility(View.GONE); - if (status.getMentions().size() > 0) - holder.status_spoiler_mention_container.setVisibility(View.VISIBLE); - else - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_spoiler_button.setText(context.getString(R.string.load_attachment_spoiler)); - } - } - } else { - holder.status_spoiler_container.setVisibility(View.GONE); - holder.status_spoiler_mention_container.setVisibility(View.GONE); - holder.status_content_container.setVisibility(View.VISIBLE); - } - } - boolean blur_sensitive = sharedpreferences.getBoolean(Helper.SET_BLUR_SENSITIVE, true); - - if (status.getReblog() == null) { - if (status.getMedia_attachments().size() < 1) { - holder.status_horizontal_document_container.setVisibility(View.GONE); - holder.status_document_container.setVisibility(View.GONE); - holder.status_show_more.setVisibility(View.GONE); - } else { - //If medias are loaded without any conditions or if device is on wifi - if (behaviorWithAttachments != Helper.ATTACHMENT_ASK) { - if (expand_media || !status.isSensitive() && (behaviorWithAttachments == Helper.ATTACHMENT_ALWAYS || (behaviorWithAttachments == Helper.ATTACHMENT_WIFI && isOnWifi))) { - loadAttachments(status, holder, false); - holder.status_show_more.setVisibility(View.GONE); - status.setAttachmentShown(true); - } else { - //Text depending if toots is sensitive or not - String textShowMore = (status.isSensitive()) ? context.getString(R.string.load_sensitive_attachment) : context.getString(R.string.set_attachment_action); - holder.show_more_content.setText(textShowMore); - if (!status.isAttachmentShown()) { - holder.status_show_more.setVisibility(View.VISIBLE); - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.GONE); - else - holder.status_document_container.setVisibility(View.GONE); - if (blur_sensitive && (behaviorWithAttachments == Helper.ATTACHMENT_ALWAYS || (behaviorWithAttachments == Helper.ATTACHMENT_WIFI && isOnWifi))) { - loadAttachments(status, holder, true); - } - } else { - loadAttachments(status, holder, false); - } - } - } else { - //Text depending if toots is sensitive or not - String textShowMore = (status.isSensitive()) ? context.getString(R.string.load_sensitive_attachment) : context.getString(R.string.set_attachment_action); - holder.show_more_content.setText(textShowMore); - if (!status.isAttachmentShown()) { - holder.status_show_more.setVisibility(View.VISIBLE); - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.GONE); - else - holder.status_document_container.setVisibility(View.GONE); - } else { - loadAttachments(status, holder, false); - } - } - } - } else { //Attachments for reblogs - - if (status.getReblog().getMedia_attachments().size() < 1) { - holder.status_horizontal_document_container.setVisibility(View.GONE); - holder.status_document_container.setVisibility(View.GONE); - holder.status_show_more.setVisibility(View.GONE); - } else { - if (behaviorWithAttachments != Helper.ATTACHMENT_ASK) { - //If medias are loaded without any conditions or if device is on wifi - if (expand_media || !status.getReblog().isSensitive() && (behaviorWithAttachments == Helper.ATTACHMENT_ALWAYS || (behaviorWithAttachments == Helper.ATTACHMENT_WIFI && isOnWifi))) { - loadAttachments(status, holder, false); - holder.status_show_more.setVisibility(View.GONE); - status.setAttachmentShown(true); - } else { - //Text depending if toots is sensitive or not - String textShowMore = (status.getReblog().isSensitive()) ? context.getString(R.string.load_sensitive_attachment) : context.getString(R.string.set_attachment_action); - holder.show_more_content.setText(textShowMore); - if (!status.isAttachmentShown()) { - holder.status_show_more.setVisibility(View.VISIBLE); - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.GONE); - else - holder.status_document_container.setVisibility(View.GONE); - if (blur_sensitive && (behaviorWithAttachments == Helper.ATTACHMENT_ALWAYS || (behaviorWithAttachments == Helper.ATTACHMENT_WIFI && isOnWifi))) { - loadAttachments(status, holder, true); - } - } else { - loadAttachments(status, holder, false); - } - } - } else { - //Text depending if toots is sensitive or not - String textShowMore = (status.getReblog().isSensitive()) ? context.getString(R.string.load_sensitive_attachment) : context.getString(R.string.set_attachment_action); - holder.show_more_content.setText(textShowMore); - if (!status.isAttachmentShown()) { - holder.status_show_more.setVisibility(View.VISIBLE); - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.GONE); - else - holder.status_document_container.setVisibility(View.GONE); - } else { - loadAttachments(status, holder, false); - } - } - } - } - holder.status_show_more.setOnClickListener(v -> { - status.setAttachmentShown(true); - notifyStatusChanged(status); - final int timeout = sharedpreferences.getInt(Helper.SET_NSFW_TIMEOUT, 5); - if (timeout > 0) { - new CountDownTimer((timeout * 1000), 1000) { - public void onTick(long millisUntilFinished) { - } - - public void onFinish() { - status.setAttachmentShown(false); - notifyStatusChanged(status); - } - }.start(); - } - }); - - if (!fullAttachement) - holder.hide_preview.setOnClickListener(v -> { - status.setAttachmentShown(!status.isAttachmentShown()); - if (status.getReblog() != null) - status.getReblog().setSensitive(true); - else - status.setSensitive(true); - notifyStatusChanged(status); - }); - else - holder.hide_preview_h.setOnClickListener(v -> { - status.setAttachmentShown(!status.isAttachmentShown()); - if (status.getReblog() != null) - status.getReblog().setSensitive(true); - else - status.setSensitive(true); - notifyStatusChanged(status); - }); - - //Toot was translated and user asked to see it - - if (status.isTranslationShown() && status.getContentSpanTranslated() != null) { - holder.status_content_translated.setText(status.getContentSpanTranslated(), TextView.BufferType.SPANNABLE); - holder.status_content_translated_container.setVisibility(View.VISIBLE); - holder.translation_border_view.setBackgroundResource(R.drawable.translation_border); - - } else { //Toot is not translated - holder.status_content_translated_container.setVisibility(View.GONE); - } - - if (status.getReblog() == null) { - switch (status.getVisibility()) { - case "direct": - holder.status_reblog_count.setVisibility(View.GONE); - holder.spark_button_reblog.setVisibility(View.GONE); - break; - case "private": - final boolean isOwner = status.getReblog() != null ? status.getReblog().getAccount().getId().equals(userId) : status.getAccount().getId().equals(userId); - if (isOwner) { - holder.status_reblog_count.setVisibility(View.VISIBLE); - holder.spark_button_reblog.setVisibility(View.VISIBLE); - } else { - holder.status_reblog_count.setVisibility(View.GONE); - holder.spark_button_reblog.setVisibility(View.GONE); - } - break; - default: - holder.status_reblog_count.setVisibility(View.VISIBLE); - holder.spark_button_reblog.setVisibility(View.VISIBLE); - } - } else { - holder.status_reblog_count.setVisibility(View.VISIBLE); - holder.spark_button_reblog.setVisibility(View.VISIBLE); - } - - switch (status.getVisibility()) { - case "public": - holder.status_privacy.setImageResource(R.drawable.ic_public); - break; - case "unlisted": - holder.status_privacy.setImageResource(R.drawable.ic_lock_open); - break; - case "private": - holder.status_privacy.setImageResource(R.drawable.ic_lock_outline); - break; - case "direct": - holder.status_privacy.setImageResource(R.drawable.ic_mail_outline); - break; - } - - - if (!status.isFavAnimated()) { - if (status.isFavourited() || (status.getReblog() != null && status.getReblog().isFavourited())) { - holder.spark_button_fav.setChecked(true); - } else { - holder.spark_button_fav.setChecked(false); - } - } else { - status.setFavAnimated(false); - holder.spark_button_fav.setChecked(true); - holder.spark_button_fav.setAnimationSpeed(1.0f); - holder.spark_button_fav.playAnimation(); - } - if (!status.isBoostAnimated()) { - if (status.isReblogged() || (status.getReblog() != null && status.getReblog().isReblogged())) { - holder.spark_button_reblog.setChecked(true); - } else { - holder.spark_button_reblog.setChecked(false); - } - } else { - status.setBoostAnimated(false); - holder.spark_button_reblog.setChecked(true); - holder.spark_button_reblog.setAnimationSpeed(1.0f); - holder.spark_button_reblog.playAnimation(); - } - - Helper.changeDrawableColor(context, R.drawable.ic_photo, R.color.cyanea_accent_reference); - Helper.changeDrawableColor(context, R.drawable.ic_more_toot_content, R.color.cyanea_accent_reference); - - - final boolean isOwner = status.getReblog() != null ? status.getReblog().getAccount().getId().equals(userId) : status.getAccount().getId().equals(userId); - - // Pinning toots is only available on Mastodon 1._6_.0 instances. - if (isOwner && (status.getVisibility().equals("public") || status.getVisibility().equals("unlisted")) && status.getReblog() == null) { - Drawable imgPin; - if (status.isPinned() || (status.getReblog() != null && status.getReblog().isPinned())) { - Helper.changeDrawableColor(context, holder.status_pin, R.color.marked_icon); - imgPin = ContextCompat.getDrawable(context, R.drawable.ic_pin_drop_p); - } else { - Helper.changeDrawableColor(context, holder.status_pin, iconColor); - imgPin = ContextCompat.getDrawable(context, R.drawable.ic_pin_drop); - } - assert imgPin != null; - imgPin.setBounds(0, 0, (int) (20 * iconSizePercent / 100 * scale + 0.5f), (int) (20 * iconSizePercent / 100 * scale + 0.5f)); - holder.status_pin.setImageDrawable(imgPin); - - holder.status_pin.setVisibility(View.VISIBLE); - } else { - holder.status_pin.setVisibility(View.GONE); - } - - if ((isAdmin || isModerator) && !isCompactMode && !isConsoleMode && getItemViewType(viewHolder.getAdapterPosition()) != FOCUSED_STATUS && type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS) { - holder.status_remove.setVisibility(View.VISIBLE); - } else { - holder.status_remove.setVisibility(View.GONE); - } - - if (status.getReblog() == null) { - if (status.getWebviewURL() != null) { - holder.status_cardview_video.setVisibility(View.VISIBLE); - holder.webview_preview.setVisibility(View.GONE); - } else { - holder.status_cardview_video.setVisibility(View.GONE); - holder.webview_preview.setVisibility(View.VISIBLE); - } - } else { - if (status.getReblog().getWebviewURL() != null) { - holder.status_cardview_video.setVisibility(View.VISIBLE); - holder.webview_preview.setVisibility(View.GONE); - } else { - holder.status_cardview_video.setVisibility(View.GONE); - holder.webview_preview.setVisibility(View.VISIBLE); - } - } - - - holder.quick_reply_button.setOnClickListener(view -> { - sendToot(status, null); - status.setShortReply(false); - holder.quick_reply_container.setVisibility(View.GONE); - InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - imm.hideSoftInputFromWindow(holder.quick_reply_button.getWindowToken(), 0); - }); - - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - holder.quick_reply_button.setOnLongClickListener(v -> { - android.widget.PopupMenu popup = new android.widget.PopupMenu(context, holder.quick_reply_button); - popup.getMenuInflater() - .inflate(R.menu.main_content_type, popup.getMenu()); - popup.setOnMenuItemClickListener(item -> { - String contentType = null; - switch (item.getItemId()) { - case R.id.action_plain_text: - contentType = "text/plain"; - break; - case R.id.action_html: - contentType = "text/html"; - break; - case R.id.action_markdown: - contentType = "text/markdown"; - break; - case R.id.action_bbcode: - contentType = "text/bbcode"; - break; - } - popup.dismiss(); - sendToot(status, contentType); - status.setShortReply(false); - holder.quick_reply_container.setVisibility(View.GONE); - InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - imm.hideSoftInputFromWindow(holder.quick_reply_button.getWindowToken(), 0); - return false; - }); - popup.show(); - return false; - }); - } - - holder.quick_reply_privacy.setOnClickListener(view -> { - - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogDark; - } else { - style = R.style.Dialog; - } - AlertDialog.Builder dialog = new AlertDialog.Builder(context, style); - dialog.setTitle(R.string.toot_visibility_tilte); - final String[] stringArray = context.getResources().getStringArray(R.array.toot_visibility); - final ArrayAdapter arrayAdapter = new ArrayAdapter<>(context, android.R.layout.simple_list_item_1, stringArray); - dialog.setNegativeButton(R.string.cancel, (dialog1, position) -> dialog1.dismiss()); - dialog.setAdapter(arrayAdapter, (dialog12, position) -> { - switch (position) { - case 0: - status.setQuickReplyPrivacy("public"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_public_toot); - break; - case 1: - status.setQuickReplyPrivacy("unlisted"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_open_toot); - break; - case 2: - status.setQuickReplyPrivacy("private"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_outline_toot); - break; - case 3: - status.setQuickReplyPrivacy("direct"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_mail_outline_toot); - break; - } - dialog12.dismiss(); - }); - dialog.show(); - }); - - if ((type == RetrieveFeedsAsyncTask.Type.CONTEXT && viewHolder.getAdapterPosition() == conversationPosition) || display_card || display_video_preview) { - - holder.status_cardview_content.setVisibility(View.VISIBLE); - - Card card = status.getReblog() != null ? status.getReblog().getCard() : status.getCard(); - if (card != null) { - holder.status_cardview_content.setText(card.getDescription()); - holder.status_cardview_title.setText(card.getTitle()); - holder.status_cardview_url.setText(card.getUrl()); - if (card.getImage() != null && card.getImage().length() > 10) { - holder.status_cardview_image.setVisibility(View.VISIBLE); - if (!((Activity) context).isFinishing()) - Glide.with(holder.status_cardview_image.getContext()) - .load(card.getImage()) - .apply(new RequestOptions().transform(new CenterCrop(), new RoundedCorners((int) Helper.convertDpToPixel(3, context)))) - .into(holder.status_cardview_image); - } else - holder.status_cardview_image.setVisibility(View.GONE); - if (!card.getType().toLowerCase().equals("video") && (display_card || (type == RetrieveFeedsAsyncTask.Type.CONTEXT && viewHolder.getAdapterPosition() == conversationPosition))) { - holder.status_cardview.setVisibility(View.VISIBLE); - holder.status_cardview_video.setVisibility(View.GONE); - holder.status_cardview.setOnClickListener(view -> { - String url = card.getUrl(); - boolean nitter = sharedpreferences.getBoolean(Helper.SET_NITTER, false); - if (nitter) { - Matcher matcher = Helper.nitterPattern.matcher(url); - while (matcher.find()) { - final String nitter_directory = matcher.group(2); - String nitterHost = sharedpreferences.getString(Helper.SET_NITTER_HOST, Helper.DEFAULT_NITTER_HOST).toLowerCase(); - url = url.replaceAll("https://" + Pattern.quote(matcher.group()), Matcher.quoteReplacement("https://" + nitterHost + nitter_directory)); - } - } - boolean bibliogram = sharedpreferences.getBoolean(Helper.SET_BIBLIOGRAM, false); - if (bibliogram) { - Matcher matcher = Helper.bibliogramPattern.matcher(url); - while (matcher.find()) { - final String bibliogram_directory = matcher.group(2); - String bibliogramHost = sharedpreferences.getString(Helper.SET_BIBLIOGRAM_HOST, Helper.DEFAULT_BIBLIOGRAM_HOST).toLowerCase(); - url = url.replaceAll("https://" + Pattern.quote(matcher.group()), Matcher.quoteReplacement("https://" + bibliogramHost + bibliogram_directory)); - } - } - Helper.openBrowser(context, url); - }); - } else if (card.getType().toLowerCase().equals("video") && (display_video_preview || (type == RetrieveFeedsAsyncTask.Type.CONTEXT && viewHolder.getAdapterPosition() == conversationPosition))) { - - Glide.with(holder.status_cardview_image.getContext()) - .load(card.getImage()) - .apply(new RequestOptions().transform(new CenterCrop(), new RoundedCorners(10))) - .into(holder.webview_preview_card); - holder.status_cardview.setVisibility(View.GONE); - holder.status_cardview_video.setVisibility(View.VISIBLE); - - String html = card.getHtml(); - String src = card.getUrl(); - if (html != null) { - Matcher matcher = Pattern.compile("src=\"([^\"]+)\"").matcher(html); - if (matcher.find()) - src = matcher.group(1); - } - final String finalSrc = src; - - holder.webview_preview.setOnClickListener(v -> { - String url = finalSrc; - if (url != null) { - boolean invidious = sharedpreferences.getBoolean(Helper.SET_INVIDIOUS, false); - if (invidious) { - Matcher matcher = Helper.youtubePattern.matcher(url); - while (matcher.find()) { - final String youtubeId = matcher.group(3); - String invidiousHost = sharedpreferences.getString(Helper.SET_INVIDIOUS_HOST, Helper.DEFAULT_INVIDIOUS_HOST).toLowerCase(); - if (matcher.group(2) != null && matcher.group(2).equals("youtu.be")) { - url = url.replaceAll("https://" + Pattern.quote(matcher.group()), Matcher.quoteReplacement("https://" + invidiousHost + "/watch?v=" + youtubeId + "&local=true")); - } else { - url = url.replaceAll("https://" + Pattern.quote(matcher.group()), Matcher.quoteReplacement("https://" + invidiousHost + "/" + youtubeId + "&local=true")); - } - } - } - } - Intent intent = new Intent(context, SlideMediaActivity.class); - Bundle b = new Bundle(); - Attachment attachment = new Attachment(); - attachment.setType("web"); - attachment.setUrl(url); - attachment.setPreview_url(card.getImage()); - ArrayList attachmentArrayList = new ArrayList<>(); - attachmentArrayList.add(attachment); - intent.putParcelableArrayListExtra("mediaArray", attachmentArrayList); - b.putInt("bgcolor", context.getResources().getColor(R.color.cyanea_primary_dark)); - b.putInt("position", 1); - intent.putExtras(b); - if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { - ActivityOptionsCompat options = ActivityOptionsCompat - .makeSceneTransitionAnimation((Activity) context, holder.webview_preview, attachment.getUrl()); - // start the new activity - context.startActivity(intent, options.toBundle()); - } else { - // start the new activity - context.startActivity(intent); - } - }); - } else { - holder.status_cardview.setVisibility(View.GONE); - holder.status_cardview_video.setVisibility(View.GONE); - } - } else { - holder.status_cardview.setVisibility(View.GONE); - holder.status_cardview_video.setVisibility(View.GONE); - } - } else { - holder.status_cardview.setVisibility(View.GONE); - holder.status_cardview_video.setVisibility(View.GONE); - } - - if (status.isShortReply()) { - holder.quick_reply_container.setVisibility(View.VISIBLE); - } else { - holder.quick_reply_container.setVisibility(View.GONE); - } - holder.quick_reply_container.setOnClickListener(view -> { - - }); - holder.status_reply.setOnClickListener(v -> { - - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PIXELFED || (quick_reply && type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS)) { - - if (social == UpdateAccountInfoAsyncTask.SOCIAL.PIXELFED) { - holder.quick_reply_switch_to_full.setVisibility(View.GONE); - } - if (context instanceof BaseMainActivity) { - FloatingActionButton toot = ((BaseMainActivity) context).findViewById(R.id.toot); - if (toot != null) { - toot.hide(); - } - } - holder.warning_message.setVisibility(View.GONE); - if (status.getWarningFetched() == -1) { - warning_message = holder.warning_message; - new RetrieveRelationshipQuickReplyAsyncTask(context, status, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - - } else if (status.getWarningFetched() == 1) { - holder.warning_message.setVisibility(View.VISIBLE); - } - - boolean shown = status.isShortReply(); - if (!shown) { - for (Status s : statuses) { - if (s.isShortReply() && !s.getId().equals(status.getId())) { - s.setShortReply(false); - notifyStatusChanged(s); - } - } - status.setShortReply(true); - statusForQuickReply = status; - holder.quick_reply_container.setVisibility(View.VISIBLE); - InputMethodManager inputMethodManager = - (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - inputMethodManager.toggleSoftInputFromWindow( - holder.quick_reply_text.getApplicationWindowToken(), - InputMethodManager.SHOW_FORCED, 0); - holder.quick_reply_text.requestFocus(); - EditText content_cw = new EditText(context); - content_cw.setText(status.getReblog() != null ? status.getReblog().getSpoiler_text() : status.getSpoiler_text()); - if (status.getQuickReplyContent() == null) { - TootActivity.manageMentions(context, social, userId, - holder.quick_reply_text, content_cw, holder.toot_space_left, status.getReblog() != null ? status.getReblog() : status); - } else { - holder.quick_reply_text.setText(status.getQuickReplyContent()); - } - TextWatcher textWatcher = TootActivity.initializeTextWatcher(context, social, status, holder.quick_reply_text, content_cw, holder.toot_space_left, null, null, BaseStatusListAdapter.this, BaseStatusListAdapter.this, BaseStatusListAdapter.this); - - toot_content = holder.quick_reply_text; - int newInputType = toot_content.getInputType() & (toot_content.getInputType() ^ InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE); - toot_content.setInputType(newInputType); - toot_cw_content = content_cw; - toot_space_left = holder.toot_space_left; - in_reply_to_status = status.getReblog() != null ? status.getReblog().getId() : status.getId(); - tootReply = status; - - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - String instance = sharedpreferences.getString(Helper.PREF_INSTANCE, null); - Account account = new AccountDAO(context, db).getUniqAccount(userId, instance); - - String defaultVisibility = account.isLocked() ? "private" : "public"; - String settingsVisibility = sharedpreferences.getString(Helper.SET_TOOT_VISIBILITY + "@" + account.getAcct() + "@" + account.getInstance(), defaultVisibility); - int initialTootVisibility = 0; - int ownerTootVisibility = 0; - switch (status.getReblog() != null ? status.getReblog().getVisibility() : status.getVisibility()) { - case "public": - initialTootVisibility = 4; - break; - case "unlisted": - initialTootVisibility = 3; - break; - case "private": - status.setQuickReplyPrivacy("private"); - initialTootVisibility = 2; - break; - case "direct": - status.setQuickReplyPrivacy("direct"); - initialTootVisibility = 1; - break; - } - if (settingsVisibility != null) { - switch (settingsVisibility) { - case "public": - ownerTootVisibility = 4; - break; - case "unlisted": - ownerTootVisibility = 3; - break; - case "private": - status.setQuickReplyPrivacy("private"); - ownerTootVisibility = 2; - break; - case "direct": - status.setQuickReplyPrivacy("direct"); - ownerTootVisibility = 1; - break; - } - } - int tootVisibility = Math.min(ownerTootVisibility, initialTootVisibility); - - switch (tootVisibility) { - case 4: - status.setQuickReplyPrivacy("public"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_public_toot); - break; - case 3: - status.setQuickReplyPrivacy("unlisted"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_open_toot); - break; - case 2: - status.setQuickReplyPrivacy("private"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_outline_toot); - break; - case 1: - status.setQuickReplyPrivacy("direct"); - holder.quick_reply_privacy.setImageResource(R.drawable.ic_mail_outline_toot); - break; - } - if (status.getQuickReplyPrivacy() != null) { - switch (status.getQuickReplyPrivacy()) { - case "public": - holder.quick_reply_privacy.setImageResource(R.drawable.ic_public_toot); - break; - case "unlisted": - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_open_toot); - break; - case "private": - holder.quick_reply_privacy.setImageResource(R.drawable.ic_lock_outline_toot); - break; - case "direct": - holder.quick_reply_privacy.setImageResource(R.drawable.ic_mail_outline_toot); - break; - } - } - holder.quick_reply_text.addTextChangedListener(textWatcher); - - - } else { - status.setShortReply(false); - holder.quick_reply_container.setVisibility(View.GONE); - InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - imm.hideSoftInputFromWindow(holder.quick_reply_text.getWindowToken(), 0); - } - holder.quick_reply_switch_to_full.setOnClickListener(v12 -> { - status.setShortReply(false); - holder.quick_reply_container.setVisibility(View.GONE); - Intent intent = new Intent(context, TootActivity.class); - Bundle b = new Bundle(); - if (status != null && status.getReblog() != null) { - b.putParcelable("tootReply", status.getReblog()); - } else { - b.putParcelable("tootReply", status); - } - - b.putString("quickmessagevisibility", status.getQuickReplyPrivacy()); - b.putString("quickmessagecontent", status.getQuickReplyContent()); - intent.putExtras(b); //Put your id to your next Intent - context.startActivity(intent); - if (type == RetrieveFeedsAsyncTask.Type.CONTEXT) { - try { - //Avoid to open multi activities when replying in a conversation - ((ShowConversationActivity) context).finish(); - } catch (Exception ignored) { - } - - } - }); - } else { - CrossActions.doCrossReply(context, status, type, true); - if (status.isShortReply()) { - status.setShortReply(false); - holder.quick_reply_container.setVisibility(View.GONE); - InputMethodManager imm = (InputMethodManager) context.getSystemService(INPUT_METHOD_SERVICE); - imm.hideSoftInputFromWindow(holder.quick_reply_text.getWindowToken(), 0); - } - } - }); - - - holder.status_favorite_count.setOnClickListener(v -> { - if (!status.isFavourited() && confirmFav) - status.setFavAnimated(true); - if (!status.isFavourited() && !confirmFav) { - status.setFavAnimated(true); - notifyStatusChanged(status); - } - CrossActions.doCrossAction(context, type, status, null, (status.isFavourited() || (status.getReblog() != null && status.getReblog().isFavourited())) ? API.StatusAction.UNFAVOURITE : API.StatusAction.FAVOURITE, statusListAdapter, BaseStatusListAdapter.this, true); - }); - holder.spark_button_fav.setOnClickListener(v -> { - if (!status.isFavourited() && confirmFav) - status.setFavAnimated(true); - if (!status.isFavourited() && !confirmFav) { - status.setFavAnimated(true); - notifyStatusChanged(status); - } - CrossActions.doCrossAction(context, type, status, null, (status.isFavourited() || (status.getReblog() != null && status.getReblog().isFavourited())) ? API.StatusAction.UNFAVOURITE : API.StatusAction.FAVOURITE, statusListAdapter, BaseStatusListAdapter.this, true); - }); - - holder.status_reblog_count.setOnClickListener(v -> { - if (!status.isReblogged() && confirmBoost) - status.setBoostAnimated(true); - if (!status.isReblogged() && !confirmBoost) { - status.setBoostAnimated(true); - notifyStatusChanged(status); - } - CrossActions.doCrossAction(context, type, status, null, (status.isReblogged() || (status.getReblog() != null && status.getReblog().isReblogged())) ? API.StatusAction.UNREBLOG : API.StatusAction.REBLOG, statusListAdapter, BaseStatusListAdapter.this, true); - }); - holder.spark_button_reblog.setOnClickListener(v -> { - if (!status.isReblogged() && confirmBoost) - status.setBoostAnimated(true); - if (!status.isReblogged() && !confirmBoost) { - status.setBoostAnimated(true); - notifyStatusChanged(status); - } - CrossActions.doCrossAction(context, type, status, null, (status.isReblogged() || (status.getReblog() != null && status.getReblog().isReblogged())) ? API.StatusAction.UNREBLOG : API.StatusAction.REBLOG, statusListAdapter, BaseStatusListAdapter.this, true); - }); - holder.status_pin.setOnClickListener(v -> CrossActions.doCrossAction(context, type, status, null, (status.isPinned() || (status.getReblog() != null && status.getReblog().isPinned())) ? API.StatusAction.UNPIN : API.StatusAction.PIN, statusListAdapter, BaseStatusListAdapter.this, true)); - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogDark; - } else { - style = R.style.Dialog; - } - holder.status_remove.setOnClickListener(v -> { - String[] stringArrayConf = context.getResources().getStringArray(R.array.more_action_owner_confirm); - AlertDialog.Builder builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[0]); - API.StatusAction doAction = API.StatusAction.UNSTATUS; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); - else - builderInner.setMessage(Html.fromHtml(status.getContent())); - - //Text for report - EditText input; - if (doAction == API.StatusAction.REPORT) { - input = new EditText(context); - LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( - LinearLayout.LayoutParams.MATCH_PARENT, - LinearLayout.LayoutParams.WRAP_CONTENT); - input.setLayoutParams(lp); - builderInner.setView(input); - } - builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builderInner.setPositiveButton(R.string.yes, (dialog, which) -> { - String targetedId = status.getId(); - new PostActionAsyncTask(context, doAction, targetedId, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - if (redraft) { - if (status.getIn_reply_to_id() != null && !status.getIn_reply_to_id().trim().equals("null")) { - toot = new Status(); - toot.setIn_reply_to_id(status.getIn_reply_to_id()); - toot.setSensitive(status.isSensitive()); - toot.setMedia_attachments(status.getMedia_attachments()); - if (status.getSpoiler_text() != null && status.getSpoiler_text().length() > 0) - toot.setSpoiler_text(status.getSpoiler_text().trim()); - toot.setContent(context, status.getContent()); - toot.setVisibility(status.getVisibility()); - new RetrieveFeedsAsyncTask(context, RetrieveFeedsAsyncTask.Type.ONESTATUS, status.getIn_reply_to_id(), null, false, false, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } else { - toot = new Status(); - toot.setSensitive(status.isSensitive()); - toot.setMedia_attachments(status.getMedia_attachments()); - if (status.getSpoiler_text() != null && status.getSpoiler_text().length() > 0) - toot.setSpoiler_text(status.getSpoiler_text().trim()); - toot.setVisibility(status.getVisibility()); - toot.setContent(context, status.getContent()); - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - long id = new StatusStoredDAO(context, db).insertStatus(toot, null); - Intent intentToot = new Intent(context, TootActivity.class); - Bundle b = new Bundle(); - b.putLong("restored", id); - b.putBoolean("removed", true); - intentToot.putExtras(b); - context.startActivity(intentToot); - } - } - dialog.dismiss(); - }); - builderInner.show(); - }); - if (!status.getVisibility().equals("direct")) - holder.spark_button_fav.setOnLongClickListener(view -> { - CrossActions.doCrossAction(context, type, status, null, API.StatusAction.FAVOURITE, statusListAdapter, BaseStatusListAdapter.this, false); - return true; - }); - if (!status.getVisibility().equals("direct")) - holder.spark_button_reblog.setOnLongClickListener(view -> { - CrossActions.doCrossAction(context, type, status, null, API.StatusAction.REBLOG, statusListAdapter, BaseStatusListAdapter.this, false); - return true; - }); - - if (!status.getVisibility().equals("direct")) - holder.status_reply.setOnLongClickListener(view -> { - CrossActions.doCrossReply(context, status, type, false); - return true; - }); - - holder.yandex_translate.setOnClickListener(v -> { - Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://translate.yandex.com/")); - context.startActivity(browserIntent); - }); - //Spoiler opens - holder.status_spoiler_button.setOnClickListener(v -> { - if (expand_cw && !status.isSpoilerShown()) { - status.setAutoHiddenCW(true); - } else { - status.setAutoHiddenCW(false); - } - status.setSpoilerShown(!status.isSpoilerShown()); - notifyStatusChanged(status); - }); - - - if (type == RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE || type == RetrieveFeedsAsyncTask.Type.NEWS) - holder.status_more.setVisibility(View.GONE); - - final View attached = holder.status_more; - holder.status_more.setOnClickListener(v -> { - PopupMenu popup = new PopupMenu(context, attached); - final boolean isOwner1 = status.getReblog() != null ? status.getReblog().getAccount().getId().equals(userId) : status.getAccount().getId().equals(userId); - popup.getMenuInflater() - .inflate(R.menu.option_toot, popup.getMenu()); - if (status.getVisibility().equals("private") || status.getVisibility().equals("direct")) { - popup.getMenu().findItem(R.id.action_mention).setVisible(false); - } - if (status.isBookmarked()) - popup.getMenu().findItem(R.id.action_bookmark).setTitle(R.string.bookmark_remove); - else - popup.getMenu().findItem(R.id.action_bookmark).setTitle(R.string.bookmark_add); - if (status.isMuted()) - popup.getMenu().findItem(R.id.action_mute_conversation).setTitle(R.string.unmute_conversation); - else - popup.getMenu().findItem(R.id.action_mute_conversation).setTitle(R.string.mute_conversation); - - - final String[] stringArrayConf; - if (status.getVisibility().equals("direct") || (status.getVisibility().equals("private") && !isOwner1)) - popup.getMenu().findItem(R.id.action_schedule_boost).setVisible(false); - if (isOwner1) { - popup.getMenu().findItem(R.id.action_block).setVisible(false); - popup.getMenu().findItem(R.id.action_mute).setVisible(false); - popup.getMenu().findItem(R.id.action_report).setVisible(false); - popup.getMenu().findItem(R.id.action_timed_mute).setVisible(false); - popup.getMenu().findItem(R.id.action_block_domain).setVisible(false); - stringArrayConf = context.getResources().getStringArray(R.array.more_action_owner_confirm); - if (social != UpdateAccountInfoAsyncTask.SOCIAL.MASTODON && social != UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - popup.getMenu().findItem(R.id.action_stats).setVisible(false); - } - } else { - popup.getMenu().findItem(R.id.action_stats).setVisible(false); - popup.getMenu().findItem(R.id.action_redraft).setVisible(false); - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA && (isAdmin || isModerator)) { - popup.getMenu().findItem(R.id.action_remove).setVisible(true); - } else { - popup.getMenu().findItem(R.id.action_remove).setVisible(false); - } - //Same instance - if (status.getAccount().getAcct().split("@").length < 2) - popup.getMenu().findItem(R.id.action_block_domain).setVisible(false); - stringArrayConf = context.getResources().getStringArray(R.array.more_action_confirm); - } - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.GNU || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.FRIENDICA) { - popup.getMenu().findItem(R.id.action_info).setVisible(false); - popup.getMenu().findItem(R.id.action_report).setVisible(false); - popup.getMenu().findItem(R.id.action_block_domain).setVisible(false); - popup.getMenu().findItem(R.id.action_mute_conversation).setVisible(false); - } - if (holder.getItemViewType() == DISPLAYED_STATUS && fedilab_features_button) { - popup.getMenu().findItem(R.id.action_translate).setVisible(false); - popup.getMenu().findItem(R.id.action_bookmark).setVisible(false); - popup.getMenu().findItem(R.id.action_timed_mute).setVisible(false); - popup.getMenu().findItem(R.id.action_schedule_boost).setVisible(false); - popup.getMenu().findItem(R.id.action_mention).setVisible(false); - } - if (MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.MASTODON && MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - popup.getMenu().findItem(R.id.action_admin).setVisible(false); - } else { - boolean display_admin_statuses = sharedpreferences.getBoolean(Helper.SET_DISPLAY_ADMIN_STATUSES + userId + Helper.getLiveInstance(context), false); - if (!display_admin_statuses) { - popup.getMenu().findItem(R.id.action_admin).setVisible(false); - } - } - - boolean custom_sharing = sharedpreferences.getBoolean(Helper.SET_CUSTOM_SHARING, false); - if (custom_sharing && status.getVisibility().equals("public")) - popup.getMenu().findItem(R.id.action_custom_sharing).setVisible(true); - MenuItem itemBookmark = popup.getMenu().findItem(R.id.action_bookmark); - if (itemBookmark.getActionView() != null) - itemBookmark.getActionView().setOnLongClickListener(v1 -> { - CrossActions.doCrossBookmark(context, status, statusListAdapter, true); - return true; - }); - popup.setOnMenuItemClickListener(item -> { - AlertDialog.Builder builderInner; - final API.StatusAction doAction; - switch (item.getItemId()) { - case R.id.action_redraft: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[1]); - redraft = true; - doAction = API.StatusAction.UNSTATUS; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); - else - builderInner.setMessage(Html.fromHtml(status.getContent())); - break; - case R.id.action_schedule_boost: - scheduleBoost(status); - return true; - case R.id.action_admin: - String account_id = status.getReblog() != null ? status.getReblog().getAccount().getId() : status.getAccount().getId(); - String acct = status.getReblog() != null ? status.getReblog().getAccount().getAcct() : status.getAccount().getAcct(); - Intent intent = new Intent(context, AccountReportActivity.class); - Bundle b = new Bundle(); - if (social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) { - b.putString("account_id", account_id); - } else if (social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) { - b.putString("account_id", acct); - } - intent.putExtras(b); - context.startActivity(intent); - return true; - case R.id.action_info: - tootInformation(status); - return true; - case R.id.action_open_browser: - Helper.openBrowser(context, status.getReblog() != null ? status.getReblog().getUrl() : status.getUrl()); - return true; - case R.id.action_remove: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[0]); - doAction = API.StatusAction.UNSTATUS; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); - else - builderInner.setMessage(Html.fromHtml(status.getContent())); - break; - case R.id.action_block_domain: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[3]); - doAction = API.StatusAction.BLOCK_DOMAIN; - String domain = status.getAccount().getAcct().split("@")[1]; - builderInner.setMessage(context.getString(R.string.block_domain_confirm_message, domain)); - break; - case R.id.action_mute: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[0]); - builderInner.setMessage(status.getAccount().getAcct()); - doAction = API.StatusAction.MUTE; - break; - case R.id.action_mute_conversation: - if (status.isMuted()) - doAction = API.StatusAction.UNMUTE_CONVERSATION; - else - doAction = API.StatusAction.MUTE_CONVERSATION; - - new PostActionAsyncTask(context, doAction, status.getId(), BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - return true; - case R.id.action_bookmark: - if (type != RetrieveFeedsAsyncTask.Type.CACHE_BOOKMARKS) { - status.setBookmarked(!status.isBookmarked()); - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - try { - if (status.isBookmarked()) { - new StatusCacheDAO(context, db).insertStatus(StatusCacheDAO.BOOKMARK_CACHE, status); - Toasty.success(context, context.getString(R.string.status_bookmarked), Toast.LENGTH_LONG).show(); - } else { - new StatusCacheDAO(context, db).remove(StatusCacheDAO.BOOKMARK_CACHE, status); - Toasty.success(context, context.getString(R.string.status_unbookmarked), Toast.LENGTH_LONG).show(); - } - notifyStatusChanged(status); - } catch (Exception e) { - e.printStackTrace(); - Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); - } - } else { - int position = 0; - for (Status statustmp : statuses) { - if (statustmp.getId().equals(status.getId())) { - statuses.remove(status); - statusListAdapter.notifyItemRemoved(position); - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - new StatusCacheDAO(context, db).remove(StatusCacheDAO.BOOKMARK_CACHE, statustmp); - Toasty.success(context, context.getString(R.string.status_unbookmarked), Toast.LENGTH_LONG).show(); - break; - } - position++; - } - } - return true; - case R.id.action_stats: - intent = new Intent(context, OwnerNotificationChartsActivity.class); - b = new Bundle(); - b.putString("status_id", status.getReblog() != null ? status.getReblog().getId() : status.getId()); - intent.putExtras(b); - context.startActivity(intent); - return true; - case R.id.action_timed_mute: - timedMuteAction(status); - return true; - case R.id.action_block: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[1]); - doAction = API.StatusAction.BLOCK; - break; - case R.id.action_translate: - if (translator == Helper.TRANS_NONE) - Toasty.info(context, R.string.toast_error_translations_disabled, Toast.LENGTH_SHORT).show(); - else - translateToot(status, holder.status_content_translated); - return true; - case R.id.action_report: - builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(stringArrayConf[2]); - doAction = API.StatusAction.REPORT; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - builderInner.setMessage(Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY)); - else - builderInner.setMessage(Html.fromHtml(status.getContent())); - break; - case R.id.action_copy: - ClipboardManager clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE); - final String content; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - content = Html.fromHtml(status.getContent(), Html.FROM_HTML_MODE_LEGACY).toString(); - else - content = Html.fromHtml(status.getContent()).toString(); - ClipData clip = ClipData.newPlainText(Helper.CLIP_BOARD, content); - if (clipboard != null) { - clipboard.setPrimaryClip(clip); - Toasty.info(context, context.getString(R.string.clipboard), Toast.LENGTH_LONG).show(); - } - return true; - case R.id.action_copy_link: - clipboard = (ClipboardManager) context.getSystemService(Context.CLIPBOARD_SERVICE); - - clip = ClipData.newPlainText(Helper.CLIP_BOARD, status.getReblog() != null ? status.getReblog().getUrl() : status.getUrl()); - if (clipboard != null) { - clipboard.setPrimaryClip(clip); - Toasty.info(context, context.getString(R.string.clipboard_url), Toast.LENGTH_LONG).show(); - } - return true; - case R.id.action_share: - Intent sendIntent = new Intent(Intent.ACTION_SEND); - sendIntent.putExtra(Intent.EXTRA_SUBJECT, context.getString(R.string.shared_via)); - String url; - - if (status.getReblog() != null) { - if (status.getReblog().getUri().startsWith("http")) - url = status.getReblog().getUri(); - else - url = status.getReblog().getUrl(); - } else { - if (status.getUri().startsWith("http")) - url = status.getUri(); - else - url = status.getUrl(); - } - String extra_text; - - if (share_details) { - extra_text = (status.getReblog() != null) ? status.getReblog().getAccount().getAcct() : status.getAccount().getAcct(); - if (extra_text.split("@").length == 1) - extra_text = "@" + extra_text + "@" + Helper.getLiveInstance(context); - else - extra_text = "@" + extra_text; - extra_text += " \uD83D\uDD17 " + url + "\r\n-\n"; - final String contentToot; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - contentToot = Html.fromHtml((status.getReblog() != null) ? status.getReblog().getContent() : status.getContent(), Html.FROM_HTML_MODE_LEGACY).toString(); - else - contentToot = Html.fromHtml((status.getReblog() != null) ? status.getReblog().getContent() : status.getContent()).toString(); - extra_text += contentToot; - } else { - extra_text = url; - } - sendIntent.putExtra(Intent.EXTRA_TEXT, extra_text); - sendIntent.setType("text/plain"); - context.startActivity(Intent.createChooser(sendIntent, context.getString(R.string.share_with))); - return true; - case R.id.action_custom_sharing: - Intent intentCustomSharing = new Intent(context, CustomSharingActivity.class); - Bundle bCustomSharing = new Bundle(); - if (status.getReblog() != null) { - bCustomSharing.putParcelable("status", status.getReblog()); - } else { - bCustomSharing.putParcelable("status", status); - } - intentCustomSharing.putExtras(bCustomSharing); - context.startActivity(intentCustomSharing); - return true; - case R.id.action_mention: - mention(status); - return true; - default: - return true; - } - - //Text for report - EditText input = null; - if (doAction == API.StatusAction.REPORT) { - input = new EditText(context); - LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( - LinearLayout.LayoutParams.MATCH_PARENT, - LinearLayout.LayoutParams.WRAP_CONTENT); - input.setLayoutParams(lp); - builderInner.setView(input); - } - builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - final EditText finalInput = input; - builderInner.setPositiveButton(R.string.yes, (dialog, which) -> { - if (doAction == API.StatusAction.UNSTATUS) { - String targetedId = status.getId(); - new PostActionAsyncTask(context, doAction, targetedId, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - if (redraft) { - if (status.getIn_reply_to_id() != null && !status.getIn_reply_to_id().trim().equals("null")) { - toot = new Status(); - toot.setIn_reply_to_id(status.getIn_reply_to_id()); - toot.setSensitive(status.isSensitive()); - toot.setMedia_attachments(status.getMedia_attachments()); - if (status.getSpoiler_text() != null && status.getSpoiler_text().length() > 0) - toot.setSpoiler_text(status.getSpoiler_text().trim()); - toot.setContent(context, status.getContent()); - toot.setVisibility(status.getVisibility()); - if (status.getPoll() != null) { - toot.setPoll(status.getPoll()); - } else if (status.getReblog() != null && status.getReblog().getPoll() != null) { - toot.setPoll(status.getPoll()); - } - new RetrieveFeedsAsyncTask(context, RetrieveFeedsAsyncTask.Type.ONESTATUS, status.getIn_reply_to_id(), null, false, false, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } else { - toot = new Status(); - toot.setSensitive(status.isSensitive()); - toot.setMedia_attachments(status.getMedia_attachments()); - if (status.getSpoiler_text() != null && status.getSpoiler_text().length() > 0) - toot.setSpoiler_text(status.getSpoiler_text().trim()); - toot.setVisibility(status.getVisibility()); - toot.setContent(context, status.getContent()); - if (status.getPoll() != null) { - toot.setPoll(status.getPoll()); - } else if (status.getReblog() != null && status.getReblog().getPoll() != null) { - toot.setPoll(status.getPoll()); - } - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - long id = new StatusStoredDAO(context, db).insertStatus(toot, null); - Intent intentToot = new Intent(context, TootActivity.class); - Bundle b = new Bundle(); - b.putLong("restored", id); - b.putBoolean("removed", true); - intentToot.putExtras(b); - context.startActivity(intentToot); - } - } - } else if (doAction == API.StatusAction.REPORT) { - String comment = null; - if (finalInput.getText() != null) - comment = finalInput.getText().toString(); - new PostActionAsyncTask(context, doAction, status.getId(), status, comment, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } else { - String targetedId; - if (item.getItemId() == R.id.action_block_domain) { - targetedId = status.getAccount().getAcct().split("@")[1]; - } else { - targetedId = status.getAccount().getId(); - } - new PostActionAsyncTask(context, doAction, targetedId, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - } - dialog.dismiss(); - }); - builderInner.show(); - return true; - }); - popup.show(); - }); - - - if (type != RetrieveFeedsAsyncTask.Type.REMOTE_INSTANCE && type != RetrieveFeedsAsyncTask.Type.NEWS) { - holder.status_account_profile.setOnClickListener(v -> { - if (status.getReblog() != null) { - if (targetedId == null || !targetedId.equals(status.getReblog().getAccount().getId())) { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getReblog().getAccount()); - intent.putExtras(b); - context.startActivity(intent); - } - } else { - if (targetedId == null || !targetedId.equals(status.getAccount().getId())) { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getAccount()); - intent.putExtras(b); - context.startActivity(intent); - } - } - }); - - } else if (instanceType == null || instanceType.compareTo("NITTER") != 0) { - holder.status_account_profile.setOnClickListener(v -> { - - if (status.getReblog() != null) { - if (targetedId == null || !targetedId.equals(status.getReblog().getAccount().getId())) { - Account account = status.getReblog().getAccount(); - Pattern instanceHost = Pattern.compile("https?://([\\da-z.-]+\\.[a-z.]{2,10})"); - Matcher matcher = instanceHost.matcher(status.getUrl()); - String instance = null; - while (matcher.find()) { - instance = matcher.group(1); - } - account.setInstance(instance); - if (BaseMainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) - CrossActions.doCrossProfile(context, account); - else { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getAccount()); - b.putBoolean("peertubeaccount", true); - intent.putExtras(b); - context.startActivity(intent); - } - } - } else { - if (targetedId == null || !targetedId.equals(status.getAccount().getId())) { - Account account = status.getAccount(); - Pattern instanceHost = Pattern.compile("https?://([\\da-z.-]+\\.[a-z.]{2,10})"); - Matcher matcher = instanceHost.matcher(status.getUrl()); - String instance = null; - while (matcher.find()) { - instance = matcher.group(1); - } - account.setInstance(instance); - if (BaseMainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.PEERTUBE) - CrossActions.doCrossProfile(context, account); - else { - Intent intent = new Intent(context, ShowAccountActivity.class); - Bundle b = new Bundle(); - b.putParcelable("account", status.getAccount()); - b.putBoolean("peertubeaccount", true); - intent.putExtras(b); - context.startActivity(intent); - } - } - } - }); - } - - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON) { - if (getItemViewType(viewHolder.getAdapterPosition()) == FOCUSED_STATUS && status.getApplication() != null && status.getApplication().getName() != null && status.getApplication().getName().length() > 0) { - Application application = status.getApplication(); - holder.status_toot_app.setText(application.getName()); - if (application.getWebsite() != null && !application.getWebsite().trim().equals("null") && application.getWebsite().trim().length() > 0) { - holder.status_toot_app.setOnClickListener(v -> Helper.openBrowser(context, application.getWebsite())); - } - holder.status_toot_app.setVisibility(View.VISIBLE); - } else { - holder.status_toot_app.setVisibility(View.GONE); - } - } else { - holder.status_toot_app.setVisibility(View.GONE); - } - } - - + new PostActionAsyncTask(context, statusAction, status.getId(), null, emojiStr, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); + }) + .build(holder.fake_edittext); + emojiPopup.toggle(); } - private void loadAttachments(final Status status, final ViewHolder holder, boolean blur) { - SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - boolean fullAttachement = sharedpreferences.getBoolean(Helper.SET_FULL_PREVIEW, false); - List attachments; - if (status.getReblog() != null) - attachments = status.getReblog().getMedia_attachments(); - else - attachments = status.getMedia_attachments(); - if (!blur) - holder.status_show_more.setVisibility(View.GONE); - else - holder.status_show_more.setVisibility(View.VISIBLE); - if (attachments != null && attachments.size() > 0) { - int i = 0; - holder.horizontal_second_image.setVisibility(View.VISIBLE); - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.VISIBLE); - else - holder.status_document_container.setVisibility(View.VISIBLE); - if (attachments.size() == 1) { - if (!fullAttachement) - holder.status_container2.setVisibility(View.GONE); - else { - holder.status_prev1_h.setVisibility(View.VISIBLE); - holder.status_prev2_h.setVisibility(View.GONE); - holder.status_prev3_h.setVisibility(View.GONE); - holder.status_prev4_h.setVisibility(View.GONE); - holder.horizontal_second_image.setVisibility(View.GONE); - } - if (attachments.get(0).getUrl().trim().contains("missing.png")) { - if (fullAttachement) - holder.status_horizontal_document_container.setVisibility(View.GONE); - else - holder.status_document_container.setVisibility(View.GONE); - } - } else if (attachments.size() == 2) { - if (!fullAttachement) { - holder.status_container2.setVisibility(View.VISIBLE); - holder.status_container3.setVisibility(View.GONE); - holder.status_prev4_container.setVisibility(View.GONE); - if (attachments.get(1).getUrl().trim().contains("missing.png")) - holder.status_container2.setVisibility(View.GONE); - } else { - holder.status_prev1_h.setVisibility(View.VISIBLE); - holder.status_prev2_h.setVisibility(View.VISIBLE); - holder.status_prev3_h.setVisibility(View.GONE); - holder.status_prev4_h.setVisibility(View.GONE); - if (attachments.get(1).getUrl().trim().contains("missing.png")) - holder.status_prev2_h.setVisibility(View.GONE); - } - } else if (attachments.size() == 3) { - if (!fullAttachement) { - holder.status_container2.setVisibility(View.VISIBLE); - holder.status_container3.setVisibility(View.VISIBLE); - holder.status_prev4_container.setVisibility(View.GONE); - if (attachments.get(2).getUrl().trim().contains("missing.png")) - holder.status_container3.setVisibility(View.GONE); - } else { - holder.status_prev1_h.setVisibility(View.VISIBLE); - holder.status_prev2_h.setVisibility(View.VISIBLE); - holder.status_prev3_h.setVisibility(View.VISIBLE); - holder.status_prev4_h.setVisibility(View.GONE); - if (attachments.get(2).getUrl().trim().contains("missing.png")) - holder.status_prev3_h.setVisibility(View.GONE); - } - } else { - if (!fullAttachement) { - holder.status_container2.setVisibility(View.VISIBLE); - holder.status_container3.setVisibility(View.VISIBLE); - holder.status_prev4_container.setVisibility(View.VISIBLE); - if (attachments.get(2).getUrl().trim().contains("missing.png")) - holder.status_prev4_container.setVisibility(View.GONE); - } else { - holder.status_prev1_h.setVisibility(View.VISIBLE); - holder.status_prev2_h.setVisibility(View.VISIBLE); - holder.status_prev3_h.setVisibility(View.VISIBLE); - holder.status_prev4_h.setVisibility(View.VISIBLE); - if (attachments.get(2).getUrl().trim().contains("missing.png")) - holder.status_prev3_h.setVisibility(View.GONE); - } - } - int position = 1; - for (final Attachment attachment : attachments) { - ImageView imageView; - RelativeLayout container = holder.status_horizontal_document_container; - if (i == 0) { - imageView = fullAttachement ? holder.status_prev1_h : holder.status_prev1; - if (attachment.getType().toLowerCase().equals("image") || attachment.getType().toLowerCase().equals("unknown")) - if (fullAttachement) - holder.status_prev1_play_h.setVisibility(View.GONE); - else - holder.status_prev1_play.setVisibility(View.GONE); - else { - if (attachment.getType().toLowerCase().equals("video") || attachment.getType().toLowerCase().equals("audio")) { - holder.status_prev1_play_h.setImageResource(R.drawable.ic_video_preview); - holder.status_prev1_play.setImageResource(R.drawable.ic_video_preview); - } else if (attachment.getType().toLowerCase().equals("gifv")) { - holder.status_prev1_play.setImageResource(R.drawable.ic_gif_preview); - holder.status_prev1_play_h.setImageResource(R.drawable.ic_gif_preview); - } else if (attachment.getType().toLowerCase().equals("web")) { - holder.status_prev1_play.setImageResource(R.drawable.ic_http); - } - if (fullAttachement) - holder.status_prev1_play_h.setVisibility(View.VISIBLE); - else - holder.status_prev1_play.setVisibility(View.VISIBLE); - } - } else if (i == 1) { - imageView = fullAttachement ? holder.status_prev2_h : holder.status_prev2; - if (attachment.getType().toLowerCase().equals("image") || attachment.getType().toLowerCase().equals("unknown")) - if (fullAttachement) - holder.status_prev2_play_h.setVisibility(View.GONE); - else - holder.status_prev2_play.setVisibility(View.GONE); - else { - if (attachment.getType().toLowerCase().equals("video") || attachment.getType().toLowerCase().equals("audio")) { - holder.status_prev2_play_h.setImageResource(R.drawable.ic_video_preview); - holder.status_prev2_play.setImageResource(R.drawable.ic_video_preview); - } else if (attachment.getType().toLowerCase().equals("gifv")) { - holder.status_prev2_play_h.setImageResource(R.drawable.ic_gif_preview); - holder.status_prev2_play.setImageResource(R.drawable.ic_gif_preview); - } else if (attachment.getType().toLowerCase().equals("web")) { - holder.status_prev1_play.setImageResource(R.drawable.ic_http); - } - if (fullAttachement) - holder.status_prev2_play_h.setVisibility(View.VISIBLE); - else - holder.status_prev2_play.setVisibility(View.VISIBLE); - } - } else if (i == 2) { - imageView = fullAttachement ? holder.status_prev3_h : holder.status_prev3; - if (attachment.getType().toLowerCase().equals("image") || attachment.getType().toLowerCase().equals("unknown")) - if (fullAttachement) - holder.status_prev3_play_h.setVisibility(View.GONE); - else - holder.status_prev3_play.setVisibility(View.GONE); - else { - if (attachment.getType().toLowerCase().equals("video") || attachment.getType().toLowerCase().equals("audio")) { - holder.status_prev3_play_h.setImageResource(R.drawable.ic_video_preview); - holder.status_prev3_play.setImageResource(R.drawable.ic_video_preview); - } else if (attachment.getType().toLowerCase().equals("gifv")) { - holder.status_prev3_play_h.setImageResource(R.drawable.ic_gif_preview); - holder.status_prev3_play.setImageResource(R.drawable.ic_gif_preview); - } else if (attachment.getType().toLowerCase().equals("web")) { - holder.status_prev1_play.setImageResource(R.drawable.ic_http); - } - if (fullAttachement) - holder.status_prev3_play_h.setVisibility(View.VISIBLE); - else - holder.status_prev3_play.setVisibility(View.VISIBLE); - } - } else { - imageView = fullAttachement ? holder.status_prev4_h : holder.status_prev4; - if (attachment.getType().toLowerCase().equals("image") || attachment.getType().toLowerCase().equals("unknown")) - if (fullAttachement) - holder.status_prev4_play_h.setVisibility(View.GONE); - else - holder.status_prev4_play.setVisibility(View.GONE); - else { - if (attachment.getType().toLowerCase().equals("video") || attachment.getType().toLowerCase().equals("audio")) { - holder.status_prev4_play_h.setImageResource(R.drawable.ic_video_preview); - holder.status_prev4_play.setImageResource(R.drawable.ic_video_preview); - } else if (attachment.getType().toLowerCase().equals("gifv")) { - holder.status_prev4_play_h.setImageResource(R.drawable.ic_gif_preview); - holder.status_prev4_play.setImageResource(R.drawable.ic_gif_preview); - } else if (attachment.getType().toLowerCase().equals("web")) { - holder.status_prev1_play.setImageResource(R.drawable.ic_http); - } - if (fullAttachement) - holder.status_prev4_play_h.setVisibility(View.VISIBLE); - else - holder.status_prev4_play.setVisibility(View.VISIBLE); - } - } - String url = attachment.getPreview_url(); - - if (url == null || url.trim().equals("")) - url = attachment.getUrl(); - else if (attachment.getType().toLowerCase().equals("unknown")) - url = attachment.getRemote_url(); - - if (fullAttachement) { - imageView.setImageBitmap(null); - if (!url.trim().contains("missing.png") && !((Activity) context).isFinishing()) { - if (!blur) { - Glide.with(imageView.getContext()) - .asBitmap() - .load(!attachment.getType().toLowerCase().equals("audio") ? url : R.drawable.ic_audio_wave) - .thumbnail(0.1f) - //.dontTransform() - .apply(new RequestOptions().transform(new RoundedCorners(10))) - .into(new CustomTarget() { - @Override - public void onResourceReady(@NonNull Bitmap resource, Transition transition) { - DrawableTransitionOptions.withCrossFade(); - imageView.setImageBitmap(resource); - status.setMedia_height(container.getHeight()); - } - - @Override - public void onLoadCleared(@Nullable Drawable placeholder) { - - } - }); - } else { - Glide.with(imageView.getContext()) - .asBitmap() - .load(!attachment.getType().toLowerCase().equals("audio") ? url : R.drawable.ic_audio_wave) - .thumbnail(0.1f) - // .dontTransform() - .apply(new RequestOptions().transform(new BlurTransformation(50, 3), new RoundedCorners(10))) - .into(new CustomTarget() { - @Override - public void onResourceReady(@NonNull Bitmap resource, Transition transition) { - DrawableTransitionOptions.withCrossFade(); - imageView.setImageBitmap(resource); - } - - @Override - public void onLoadCleared(@Nullable Drawable placeholder) { - - } - }); - } - } - } else { - if (!url.trim().contains("missing.png") && !((Activity) context).isFinishing()) { - if (!blur) { - Glide.with(imageView.getContext()) - .load(!attachment.getType().toLowerCase().equals("audio") ? url : R.drawable.ic_audio_wave) - .dontTransform() - .thumbnail(0.1f) - // .override(640, 480) - .apply(new RequestOptions().transform(new CenterCrop(), new RoundedCorners(10))) - .transition(DrawableTransitionOptions.withCrossFade()) - .into(imageView); - } else { - Glide.with(imageView.getContext()) - .load(!attachment.getType().toLowerCase().equals("audio") ? url : R.drawable.ic_audio_wave) - .thumbnail(0.1f) - .dontTransform() - // .override(640, 480) - .apply(new RequestOptions().transform(new CenterCrop(), new BlurTransformation(50, 3), new RoundedCorners(10))) - .transition(DrawableTransitionOptions.withCrossFade()) - .into(imageView); - } - } - } - final int finalPosition = position; - if (attachment.getDescription() != null && !attachment.getDescription().equals("null")) - imageView.setContentDescription(attachment.getDescription()); - imageView.setOnClickListener(v -> { - if (status.isAttachmentShown()) { - - ArrayList attachmentArrayList; - if (status.getReblog() == null) - attachmentArrayList = status.getMedia_attachments(); - else - attachmentArrayList = status.getReblog().getMedia_attachments(); - if (attachment.getType().equals("web")) { - Helper.openBrowser(context, attachment.getUrl()); - } else { - Intent intent = new Intent(context, SlideMediaActivity.class); - Bundle b = new Bundle(); - intent.putParcelableArrayListExtra("mediaArray", attachmentArrayList); - b.putInt("bgcolor", context.getResources().getColor(R.color.cyanea_primary_dark)); - b.putInt("position", finalPosition); - intent.putExtras(b); - if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { - ActivityOptionsCompat options = ActivityOptionsCompat - .makeSceneTransitionAnimation((Activity) context, imageView, attachment.getUrl()); - // start the new activity - context.startActivity(intent, options.toBundle()); - } else { - // start the new activity - context.startActivity(intent); - } - - } - } else { - status.setAttachmentShown(true); - notifyStatusChanged(status); - final int timeout = sharedpreferences.getInt(Helper.SET_NSFW_TIMEOUT, 5); - if (timeout > 0) { - new CountDownTimer((timeout * 1000), 1000) { - public void onTick(long millisUntilFinished) { - } - - public void onFinish() { - status.setAttachmentShown(false); - notifyStatusChanged(status); - } - }.start(); - } - } - }); - boolean long_press_media = sharedpreferences.getBoolean(Helper.SET_LONG_PRESS_MEDIA, true); - if (long_press_media) { - String finalUrl; - if (attachment.getUrl() == null) { - finalUrl = attachment.getRemote_url(); - } else { - finalUrl = attachment.getUrl(); - } - imageView.setOnLongClickListener(v -> { - Helper.manageMove(context, finalUrl, false); - return true; - }); - } - i++; - position++; - } - } else { - holder.status_horizontal_document_container.setVisibility(View.GONE); - holder.status_document_container.setVisibility(View.GONE); - holder.status_show_more.setVisibility(View.GONE); - } - - } - - private void closePanels() { - int position = -1; - if (statuses != null && statuses.size() > 0) { - for (Status status : statuses) { - position++; - if (status.isCustomFeaturesDisplayed()) { - status.setCustomFeaturesDisplayed(false); - notifyItemChanged(position); - break; - } - } - } - } - - private void timedMuteAction(Status status) { - final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - 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; - } else { - style = R.style.Dialog; - } - AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(context, style); - LayoutInflater inflater = ((Activity) context).getLayoutInflater(); - View dialogView = inflater.inflate(R.layout.datetime_picker, new LinearLayout(context), false); - dialogBuilder.setView(dialogView); - final AlertDialog alertDialog = dialogBuilder.create(); - final DatePicker datePicker = dialogView.findViewById(R.id.date_picker); - final TimePicker timePicker = dialogView.findViewById(R.id.time_picker); - timePicker.setIs24HourView(true); - Button date_time_cancel = dialogView.findViewById(R.id.date_time_cancel); - final ImageButton date_time_previous = dialogView.findViewById(R.id.date_time_previous); - final ImageButton date_time_next = dialogView.findViewById(R.id.date_time_next); - final ImageButton date_time_set = dialogView.findViewById(R.id.date_time_set); - - //Buttons management - date_time_cancel.setOnClickListener(v -> alertDialog.dismiss()); - date_time_next.setOnClickListener(v -> { - datePicker.setVisibility(View.GONE); - timePicker.setVisibility(View.VISIBLE); - date_time_previous.setVisibility(View.VISIBLE); - date_time_next.setVisibility(View.GONE); - date_time_set.setVisibility(View.VISIBLE); - }); - date_time_previous.setOnClickListener(v -> { - datePicker.setVisibility(View.VISIBLE); - timePicker.setVisibility(View.GONE); - date_time_previous.setVisibility(View.GONE); - date_time_next.setVisibility(View.VISIBLE); - date_time_set.setVisibility(View.GONE); - }); - date_time_set.setOnClickListener(v -> { - int hour, minute; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { - hour = timePicker.getHour(); - minute = timePicker.getMinute(); - } else { - hour = timePicker.getCurrentHour(); - minute = timePicker.getCurrentMinute(); - } - Calendar calendar = new GregorianCalendar(datePicker.getYear(), - datePicker.getMonth(), - datePicker.getDayOfMonth(), - hour, - minute); - long time = calendar.getTimeInMillis(); - if ((time - new Date().getTime()) < 60000) { - Toasty.error(context, context.getString(R.string.timed_mute_date_error), Toast.LENGTH_LONG).show(); - } else { - //Store the toot as draft first - String targeted_id = status.getAccount().getId(); - Date date_mute = new Date(time); - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - String instance = sharedpreferences.getString(Helper.PREF_INSTANCE, null); - String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null); - Account account = new AccountDAO(context, db).getUniqAccount(userId, instance); - new TempMuteDAO(context, db).insert(account, targeted_id, new Date(time)); - if (mutedAccount != null && !mutedAccount.contains(account.getId())) - mutedAccount.add(targeted_id); - else if (mutedAccount == null) { - mutedAccount = new ArrayList<>(); - mutedAccount.add(targeted_id); - } - Toasty.success(context, context.getString(R.string.timed_mute_date, status.getAccount().getAcct(), Helper.dateToString(date_mute)), Toast.LENGTH_LONG).show(); - alertDialog.dismiss(); - send_delete_statuses(targeted_id); - } - }); - alertDialog.show(); - } - - private void send_delete_statuses(String targetedId) { - //Delete in the current timeline - List statusesToRemove = new ArrayList<>(); - for (Status status : statuses) { - if (status.getAccount().getId().equals(targetedId)) - statusesToRemove.add(status); - } - statuses.removeAll(statusesToRemove); - statusListAdapter.notifyDataSetChanged(); - //Send an intent to delete in every timelines - Bundle b = new Bundle(); - b.putString("receive_action", targetedId); - Intent intentBC = new Intent(Helper.RECEIVE_ACTION); - intentBC.putExtras(b); - } - - private void scheduleBoost(Status status) { - - final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - 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.DialogDark; - } else { - style = R.style.Dialog; - } - - AlertDialog.Builder dialogBuilderBoost = new AlertDialog.Builder(context, style); - LayoutInflater inflaterBoost = ((Activity) context).getLayoutInflater(); - View dialogViewBoost = inflaterBoost.inflate(R.layout.datetime_picker, new LinearLayout(context), false); - dialogBuilderBoost.setView(dialogViewBoost); - final AlertDialog alertDialogBoost = dialogBuilderBoost.create(); - - final DatePicker datePickerBoost = dialogViewBoost.findViewById(R.id.date_picker); - final TimePicker timePickerBoost = dialogViewBoost.findViewById(R.id.time_picker); - timePickerBoost.setIs24HourView(true); - Button date_time_cancelBoost = dialogViewBoost.findViewById(R.id.date_time_cancel); - final ImageButton date_time_previousBoost = dialogViewBoost.findViewById(R.id.date_time_previous); - final ImageButton date_time_nextBoost = dialogViewBoost.findViewById(R.id.date_time_next); - final ImageButton date_time_setBoost = dialogViewBoost.findViewById(R.id.date_time_set); - - //Buttons management - date_time_cancelBoost.setOnClickListener(v -> alertDialogBoost.dismiss()); - date_time_nextBoost.setOnClickListener(v -> { - datePickerBoost.setVisibility(View.GONE); - timePickerBoost.setVisibility(View.VISIBLE); - date_time_previousBoost.setVisibility(View.VISIBLE); - date_time_nextBoost.setVisibility(View.GONE); - date_time_setBoost.setVisibility(View.VISIBLE); - }); - date_time_previousBoost.setOnClickListener(v -> { - datePickerBoost.setVisibility(View.VISIBLE); - timePickerBoost.setVisibility(View.GONE); - date_time_previousBoost.setVisibility(View.GONE); - date_time_nextBoost.setVisibility(View.VISIBLE); - date_time_setBoost.setVisibility(View.GONE); - }); - date_time_setBoost.setOnClickListener(v -> { - int hour, minute; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { - hour = timePickerBoost.getHour(); - minute = timePickerBoost.getMinute(); - } else { - hour = timePickerBoost.getCurrentHour(); - minute = timePickerBoost.getCurrentMinute(); - } - Calendar calendar = new GregorianCalendar(datePickerBoost.getYear(), - datePickerBoost.getMonth(), - datePickerBoost.getDayOfMonth(), - hour, - minute); - long time = calendar.getTimeInMillis(); - if ((time - new Date().getTime()) < 60000) { - Toasty.warning(context, context.getString(R.string.toot_scheduled_date), Toast.LENGTH_LONG).show(); - } else { - //Schedules the toot - ScheduledBoostsSyncJob.schedule(context, status, time); - //Clear content - Toasty.info(context, context.getString(R.string.boost_scheduled), Toast.LENGTH_LONG).show(); - alertDialogBoost.dismiss(); - } - }); - alertDialogBoost.show(); - } - - private void mention(Status status) { - // Get a handler that can be used to post to the main thread - final Handler handler = new Handler(); - handler.postDelayed(() -> { - Intent intent = new Intent(context, TootActivity.class); - Bundle b = new Bundle(); - - b.putString("tootMention", (status.getReblog() != null) ? status.getReblog().getAccount().getAcct() : status.getAccount().getAcct()); - b.putString("urlMention", (status.getReblog() != null) ? status.getReblog().getUrl() : status.getUrl()); - intent.putExtras(b); - context.startActivity(intent); - }, 500); - } - - private void tootInformation(Status status) { - Intent intent = new Intent(context, TootInfoActivity.class); - Bundle b = new Bundle(); - if (status.getReblog() != null) { - b.putString("toot_id", status.getReblog().getId()); - b.putInt("toot_reblogs_count", status.getReblog().getReblogs_count()); - b.putInt("toot_favorites_count", status.getReblog().getFavourites_count()); - } else { - b.putString("toot_id", status.getId()); - b.putInt("toot_reblogs_count", status.getReblogs_count()); - b.putInt("toot_favorites_count", status.getFavourites_count()); - } - intent.putExtras(b); - context.startActivity(intent); - } - - private void sendToot(Status status, String content_type) { - - if (toot_content == null || toot_content.getText() == null) { - Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); - return; - } - if (toot_content.getText().toString().trim().length() == 0) { - Toasty.error(context, context.getString(R.string.toot_error_no_content), Toast.LENGTH_LONG).show(); - return; - } - SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - - - final String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null); - String instance = Helper.getLiveInstance(context); - - int split_toot_size = sharedpreferences.getInt(Helper.SET_AUTOMATICALLY_SPLIT_TOOTS_SIZE + userId + instance, Helper.SPLIT_TOOT_SIZE); - boolean split_toot = sharedpreferences.getBoolean(Helper.SET_AUTOMATICALLY_SPLIT_TOOTS + userId + instance, false); - if (toot_cw_content.getText() != null && toot_cw_content.getText().toString().trim().length() > 0) - split_toot_size -= toot_cw_content.getText().toString().trim().length(); - - if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA || !split_toot || (TootActivity.countLength(social, toot_content, toot_cw_content) < split_toot_size)) { - createAndSendToot(status, null, content_type, userId, instance); - } else { - splitToot = Helper.splitToots(toot_content.getText().toString().trim(), split_toot_size, true); - int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK); - stepSpliToot = 1; - int style; - if (theme == Helper.THEME_DARK) { - style = R.style.DialogDark; - } else if (theme == Helper.THEME_BLACK) { - style = R.style.DialogDark; - } else { - style = R.style.Dialog; - } - AlertDialog.Builder builderInner = new AlertDialog.Builder(context, style); - builderInner.setTitle(R.string.message_preview); - - View preview = ((Activity) context).getLayoutInflater().inflate(R.layout.popup_message_preview, new LinearLayout(context), false); - builderInner.setView(preview); - - //Text for report - final TextView textView = preview.findViewById(R.id.preview); - textView.setText(""); - final SwitchCompat report_mention = preview.findViewById(R.id.report_mention); - int finalSplit_toot_size = split_toot_size; - report_mention.setOnCheckedChangeListener((buttonView, isChecked) -> { - splitToot = Helper.splitToots(toot_content.getText().toString().trim(), finalSplit_toot_size, isChecked); - textView.setText(""); - int inc = 0; - for (String prev : splitToot) { - if (inc < splitToot.size() - 1) { - String text = textView.getText() + prev + "\n----------\n"; - textView.setText(text); - } - } - }); - int inc = 0; - for (String prev : splitToot) { - if (inc < splitToot.size() - 1) { - String text = textView.getText() + prev + "\n----------\n"; - textView.setText(text); - } - } - - builderInner.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss()); - builderInner.setPositiveButton(R.string.validate, (dialog, which) -> { - createAndSendToot(status, splitToot.get(0), content_type, userId, instance); - dialog.dismiss(); - }); - AlertDialog alertDialog = builderInner.create(); - alertDialog.show(); - } - - } - - private void createAndSendToot(Status status, String content, String content_type, String userId, String instance) { - Status toot = new Status(); - if (content_type != null) - toot.setContentType(content_type); - toot.setSensitive(false); - final SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - Account account = new AccountDAO(context, db).getUniqAccount(userId, instance); - if (toot_cw_content.getText().toString().trim().length() > 0) - toot.setSpoiler_text(toot_cw_content.getText().toString().trim()); - toot.setVisibility(status.getQuickReplyPrivacy()); - toot.setIn_reply_to_id(in_reply_to_status); - if (content == null) { - content = status.getQuickReplyContent(); - } - toot.setContent(context, content); - new PostStatusAsyncTask(context, social, account, toot, BaseStatusListAdapter.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR); - status.setQuickReplyPrivacy(null); - status.setQuickReplyContent(null); - } - - @Override - public void onRetrieveFeeds(APIResponse apiResponse) { - - if (apiResponse.getStatuses() != null && apiResponse.getStatuses().size() > 0) { - - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - long id = new StatusStoredDAO(context, db).insertStatus(toot, apiResponse.getStatuses().get(0)); - Intent intentToot = new Intent(context, TootActivity.class); - Bundle b = new Bundle(); - b.putLong("restored", id); - b.putBoolean("removed", true); - intentToot.putExtras(b); - context.startActivity(intentToot); - } - - } - - @Override - public void onRetrieveAccount(Card card) { - if (conversationPosition < this.statuses.size() && card != null) - this.statuses.get(conversationPosition).setCard(card); - if (conversationPosition < this.statuses.size()) - statusListAdapter.notifyItemChanged(conversationPosition); - } - - @Override - public void onPostAction(int statusCode, API.StatusAction statusAction, String targetedId, Error error) { - - if (error != null) { - Toasty.error(context, error.getError(), Toast.LENGTH_LONG).show(); - return; - } - Helper.manageMessageStatusCode(context, statusCode, statusAction); - //When muting or blocking an account, its status are removed from the list - List statusesToRemove = new ArrayList<>(); - if (statusAction == API.StatusAction.MUTE || statusAction == API.StatusAction.BLOCK) { - for (Status status : statuses) { - if (status.getAccount().getId().equals(targetedId)) - statusesToRemove.add(status); - } - statuses.removeAll(statusesToRemove); - statusListAdapter.notifyDataSetChanged(); - } else if (statusAction == API.StatusAction.MUTE_CONVERSATION) { - for (Status status : statuses) { - if (status.getId().equals(targetedId)) { - status.setMuted(true); - notifyStatusChanged(status); - break; - } - } - } else if (statusAction == API.StatusAction.UNMUTE_CONVERSATION) { - for (Status status : statuses) { - if (status.getId().equals(targetedId)) { - status.setMuted(false); - notifyStatusChanged(status); - break; - } - } - } else if (statusAction == API.StatusAction.UNSTATUS) { - int position = 0; - for (Status status : statuses) { - if (status.getId().equals(targetedId)) { - statuses.remove(status); - statusListAdapter.notifyItemRemoved(position); - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - //Remove the status from cache also - try { - new StatusCacheDAO(context, db).remove(StatusCacheDAO.ARCHIVE_CACHE, status); - } catch (Exception ignored) { - } - break; - } - position++; - } - } else if (statusAction == API.StatusAction.PIN || statusAction == API.StatusAction.UNPIN) { - int position = 0; - for (Status status : statuses) { - if (status.getId().equals(targetedId)) { - if (statusAction == API.StatusAction.PIN) - status.setPinned(true); - else - status.setPinned(false); - statusListAdapter.notifyItemChanged(position); - break; - } - position++; - } - } - if (statusAction == API.StatusAction.PEERTUBEDELETECOMMENT) { - int position = 0; - for (Status status : statuses) { - if (status.getId().equals(targetedId)) { - statuses.remove(status); - statusListAdapter.notifyItemRemoved(position); - break; - } - position++; - } - } - } - - public void notifyStatusChanged(Status status) { - for (int i = 0; i < statusListAdapter.getItemCount(); i++) { - //noinspection ConstantConditions - if (statusListAdapter.getItemAt(i) != null && statusListAdapter.getItemAt(i).getId().equals(status.getId())) { - try { - statuses.get(i).setFavourites_count(status.getFavourites_count()); - statuses.get(i).setReblogs_count(status.getReblogs_count()); - statuses.get(i).setFavourited(status.isFavourited()); - statuses.get(i).setReblogged(status.isReblogged()); - statuses.get(i).setReplies_count(status.getReplies_count()); - statuses.get(i).setPoll(status.getPoll()); - statusListAdapter.notifyItemChanged(i); - } catch (Exception ignored) { - } - break; - } - } - } - - - @Override - public void onRetrieveImage(Status status, boolean fromTranslation) { - if (status != null) { - status.setImageFound(true); - notifyStatusChanged(status); - } - } - - @Override - public void onRetrieveEmoji(Status status, boolean fromTranslation) { - if (status != null) { - if (!fromTranslation) { - status.setEmojiFound(true); - } else { - status.setEmojiTranslateFound(true); - } - notifyStatusChanged(status); - } - } - - @Override - public void onRetrieveEmoji(Notification notification) { - - } - - private void translateToot(Status status, TextView view) { - //Manages translations - SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - int trans = sharedpreferences.getInt(Helper.SET_TRANSLATOR, Helper.TRANS_YANDEX); - MyTransL.translatorEngine et = MyTransL.translatorEngine.YANDEX; - String api_key; - - - if (trans == Helper.TRANS_DEEPL) { - et = MyTransL.translatorEngine.DEEPL; - } else if (trans == Helper.TRANS_SYSTRAN) { - et = MyTransL.translatorEngine.SYSTRAN; - } - final MyTransL myTransL = MyTransL.getInstance(et); - myTransL.setObfuscation(true); - if (trans == Helper.TRANS_YANDEX) { - api_key = sharedpreferences.getString(Helper.SET_YANDEX_API_KEY, Helper.YANDEX_KEY); - myTransL.setYandexAPIKey(api_key); - } else if (trans == Helper.TRANS_DEEPL) { - api_key = sharedpreferences.getString(Helper.SET_DEEPL_API_KEY, ""); - myTransL.setDeeplAPIKey(api_key); - } else if (trans == Helper.TRANS_SYSTRAN) { - api_key = sharedpreferences.getString(Helper.SET_SYSTRAN_API_KEY, ""); - myTransL.setSystranAPIKey(api_key); - } - - - if (!status.isTranslated()) { - String statusToTranslate; - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) - statusToTranslate = Html.fromHtml(status.getReblog() != null ? status.getReblog().getContent() : status.getContent(), Html.FROM_HTML_MODE_LEGACY).toString(); - else - statusToTranslate = Html.fromHtml(status.getReblog() != null ? status.getReblog().getContent() : status.getContent()).toString(); - //TODO: removes the replaceAll once fixed with the lib - myTransL.translate(statusToTranslate, myTransL.getLocale(), new Results() { - @Override - public void onSuccess(Translate translate) { - if (translate.getTranslatedContent() != null) { - status.setTranslated(true); - status.setTranslationShown(true); - status.setContentTranslated(translate.getTranslatedContent()); - Status.transformTranslation(context, status); - makeEmojis(context, view, status.getContentSpan(), status.getReblog() != null ? status.getReblog().getEmojis() : status.getEmojis()); - notifyStatusChanged(status); - } else { - Toasty.error(context, context.getString(R.string.toast_error_translate), Toast.LENGTH_LONG).show(); - } - } - - @Override - public void onFail(HttpsConnectionException e) { - e.printStackTrace(); - Toasty.error(context, context.getString(R.string.toast_error_translate), Toast.LENGTH_LONG).show(); - } - }); - } else { - status.setTranslationShown(!status.isTranslationShown()); - notifyStatusChanged(status); - } - } - - public void setConversationPosition(int position) { - this.conversationPosition = position; - } - - public void storeToot() { - //Nothing to store here.... - if (tootReply == null || statusForQuickReply == null || statusForQuickReply.getQuickReplyContent() == null || (statusForQuickReply.getQuickReplyContent().trim().length() == 0 && toot_cw_content.getText().toString().trim().length() == 0)) - return; - Status toot = new Status(); - if (toot_cw_content.getText().toString().trim().length() > 0) - toot.setSpoiler_text(toot_cw_content.getText().toString().trim()); - if (statusForQuickReply.getQuickReplyPrivacy() != null) { - toot.setVisibility(statusForQuickReply.getQuickReplyPrivacy()); - } - if (statusForQuickReply.getQuickReplyContent() != null) { - toot.setContent(context, statusForQuickReply.getQuickReplyContent().trim()); - } - - toot.setIn_reply_to_id(tootReply.getId()); - SQLiteDatabase db = Sqlite.getInstance(context.getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open(); - try { - if (currentToId == -1) { - currentToId = new StatusStoredDAO(context, db).insertStatus(toot, tootReply); - } else { - StoredStatus storedStatus = new StatusStoredDAO(context, db).getStatus(currentToId); - if (storedStatus != null) { - new StatusStoredDAO(context, db).updateStatus(currentToId, toot); - } else { //Might have been deleted, so it needs insertion - new StatusStoredDAO(context, db).insertStatus(toot, tootReply); - } - } - } catch (Exception ignored) { - } - } - - @Override - public void onRetrieveBookmarks(List statuses) { - if (statuses != null && statuses.size() > 0) { - notifyStatusChanged(statuses.get(0)); - } - } - - private static class ViewHolderEmpty extends RecyclerView.ViewHolder { - ViewHolderEmpty(View itemView) { - super(itemView); - } - } - - class ViewHolder extends RecyclerView.ViewHolder { - LinearLayout status_content_container; - LinearLayout status_spoiler_container; - CustomTextView status_spoiler; - Button status_spoiler_button; - CustomTextView status_content; - TextView status_content_translated; - ConstraintLayout status_content_translated_container; - TextView status_account_username; - TextView status_account_displayname, status_account_displayname_owner, status_boosted_date; - ImageView status_account_profile; - ImageView status_account_profile_boost_by; - ConstraintLayout status_boosted_by_info; - TextView status_reply_count; - TextView status_favorite_count; - TextView status_reblog_count; - TextView status_toot_date; - RelativeLayout status_show_more; - ImageView status_more; - LinearLayout status_document_container; - RelativeLayout status_horizontal_document_container; - ImageView status_prev1; - ImageView status_prev2; - ImageView status_prev3; - ImageView status_prev4; - ImageView status_prev1_play; - ImageView status_prev2_play; - ImageView status_prev3_play; - ImageView status_prev4_play; - ImageView status_prev1_h; - ImageView status_prev2_h; - ImageView status_prev3_h; - ImageView status_prev4_h; - ImageView status_prev1_play_h; - ImageView status_prev2_play_h; - ImageView status_prev3_play_h; - ImageView status_prev4_play_h; - ImageView conversation_pp_1; - ImageView conversation_pp_2; - ImageView conversation_pp_3; - ImageView conversation_pp_4; - ConstraintLayout conversation_pp; - RelativeLayout status_prev4_container; - ImageView status_reply; - ImageView status_pin; - ImageView status_remove; - ImageView status_privacy; - LinearLayout status_container2; - LinearLayout status_container3; - ConstraintLayout main_container; - TextView yandex_translate; - ConstraintLayout status_action_container; - ConstraintLayout status_action_container_twitter; - Button fetch_more; - ImageView new_element; - LinearLayout status_spoiler_mention_container; - TextView status_mention_spoiler; - LinearLayout status_cardview; - ImageView status_cardview_image; - TextView status_cardview_title, status_cardview_content, status_cardview_url; - FrameLayout status_cardview_video; - ImageView hide_preview, hide_preview_h; - TextView status_toot_app; - RelativeLayout webview_preview; - ImageView webview_preview_card; - LinearLayout left_buttons; - Button status_show_more_content; - SparkButton spark_button_fav, spark_button_reblog; - RelativeLayout horizontal_second_image; - - LinearLayout status_peertube_container; - TextView status_peertube_reply, status_peertube_delete, show_more_content; - ImageView cached_status, status_account_bot; - ImageButton fedilab_features; - ImageButton custom_feature_translate; - ImageButton custom_feature_bookmark; - ImageButton custom_feature_timed_mute; - ImageButton custom_feature_schedule; - ImageButton custom_feature_mention; - ImageButton custom_feature_cache; - ConstraintLayout fedilab_features_panel, quick_reply_container; - //Poll - LinearLayout poll_container, single_choice, multiple_choice, rated; - RadioGroup radio_group; - - TextView number_votes, remaining_time; - Button submit_vote, refresh_poll; - - - MastalabAutoCompleteTextView quick_reply_text; - ImageView quick_reply_switch_to_full; - TextView toot_space_left, warning_message; - ImageView quick_reply_emoji; - Button quick_reply_button; - ImageView quick_reply_privacy; - View status_reply_indicator_top, reply_indicator_dot, status_reply_indicator_bottom, status_reply_indicator_diag_top, status_reply_indicator_diag_bottom; - RelativeLayout main_card_container; - LinearLayout main_linear_container; - View translation_border_view; - TextView translation_label; - - LinearLayout status_reactions; - ImageView status_add_reaction, status_add_custom_emoji; - RecyclerView reactions_view; - MastalabAutoCompleteTextView fake_edittext; - - @SuppressLint("SetJavaScriptEnabled") - ViewHolder(View itemView) { - super(itemView); - fetch_more = itemView.findViewById(R.id.fetch_more); - webview_preview_card = itemView.findViewById(R.id.webview_preview_card); - webview_preview = itemView.findViewById(R.id.webview_preview); - - status_horizontal_document_container = itemView.findViewById(R.id.status_horizontal_document_container); - status_document_container = itemView.findViewById(R.id.status_document_container); - status_horizontal_document_container = itemView.findViewById(R.id.status_horizontal_document_container); - status_content = itemView.findViewById(R.id.status_content); - status_content_translated = itemView.findViewById(R.id.status_content_translated); - status_account_username = itemView.findViewById(R.id.status_account_username); - status_account_displayname = itemView.findViewById(R.id.status_account_displayname); - status_boosted_date = itemView.findViewById(R.id.status_boosted_date); - status_account_displayname_owner = itemView.findViewById(R.id.status_account_displayname_owner); - status_account_profile = itemView.findViewById(R.id.status_account_profile); - status_account_profile_boost_by = itemView.findViewById(R.id.status_account_profile_boost_by); - status_boosted_by_info = itemView.findViewById(R.id.status_boosted_by_info); - status_reply_count = itemView.findViewById(R.id.status_reply_count); - status_favorite_count = itemView.findViewById(R.id.status_favorite_count); - status_reblog_count = itemView.findViewById(R.id.status_reblog_count); - status_pin = itemView.findViewById(R.id.status_pin); - status_remove = itemView.findViewById(R.id.status_remove); - status_toot_date = itemView.findViewById(R.id.status_toot_date); - status_show_more = itemView.findViewById(R.id.status_show_more); - status_more = itemView.findViewById(R.id.status_more); - status_prev1 = itemView.findViewById(R.id.status_prev1); - status_prev2 = itemView.findViewById(R.id.status_prev2); - status_prev3 = itemView.findViewById(R.id.status_prev3); - status_prev4 = itemView.findViewById(R.id.status_prev4); - status_prev1_play = itemView.findViewById(R.id.status_prev1_play); - status_prev2_play = itemView.findViewById(R.id.status_prev2_play); - status_prev3_play = itemView.findViewById(R.id.status_prev3_play); - status_prev4_play = itemView.findViewById(R.id.status_prev4_play); - status_prev1_h = itemView.findViewById(R.id.status_prev1_h); - status_prev2_h = itemView.findViewById(R.id.status_prev2_h); - status_prev3_h = itemView.findViewById(R.id.status_prev3_h); - status_prev4_h = itemView.findViewById(R.id.status_prev4_h); - status_prev1_play_h = itemView.findViewById(R.id.status_prev1_play_h); - status_prev2_play_h = itemView.findViewById(R.id.status_prev2_play_h); - status_prev3_play_h = itemView.findViewById(R.id.status_prev3_play_h); - status_prev4_play_h = itemView.findViewById(R.id.status_prev4_play_h); - status_container2 = itemView.findViewById(R.id.status_container2); - status_container3 = itemView.findViewById(R.id.status_container3); - status_prev4_container = itemView.findViewById(R.id.status_prev4_container); - status_reply = itemView.findViewById(R.id.status_reply); - status_privacy = itemView.findViewById(R.id.status_privacy); - - status_content_translated_container = itemView.findViewById(R.id.status_content_translated_container); - main_container = itemView.findViewById(R.id.main_container); - status_spoiler_container = itemView.findViewById(R.id.status_spoiler_container); - status_content_container = itemView.findViewById(R.id.status_content_container); - status_spoiler = itemView.findViewById(R.id.status_spoiler); - show_more_content = itemView.findViewById(R.id.show_more_content); - status_spoiler_button = itemView.findViewById(R.id.status_spoiler_button); - yandex_translate = itemView.findViewById(R.id.yandex_translate); - new_element = itemView.findViewById(R.id.new_element); - status_action_container = itemView.findViewById(R.id.status_action_container); - status_action_container_twitter = itemView.findViewById(R.id.status_action_container_twitter); - status_spoiler_mention_container = itemView.findViewById(R.id.status_spoiler_mention_container); - status_mention_spoiler = itemView.findViewById(R.id.status_mention_spoiler); - status_cardview = itemView.findViewById(R.id.status_cardview); - status_cardview_image = itemView.findViewById(R.id.status_cardview_image); - status_cardview_title = itemView.findViewById(R.id.status_cardview_title); - status_cardview_content = itemView.findViewById(R.id.status_cardview_content); - status_cardview_url = itemView.findViewById(R.id.status_cardview_url); - status_cardview_video = itemView.findViewById(R.id.status_cardview_video); - hide_preview = itemView.findViewById(R.id.hide_preview); - hide_preview_h = itemView.findViewById(R.id.hide_preview_h); - status_toot_app = itemView.findViewById(R.id.status_toot_app); - conversation_pp = itemView.findViewById(R.id.conversation_pp); - conversation_pp_1 = itemView.findViewById(R.id.conversation_pp_1); - conversation_pp_2 = itemView.findViewById(R.id.conversation_pp_2); - conversation_pp_3 = itemView.findViewById(R.id.conversation_pp_3); - conversation_pp_4 = itemView.findViewById(R.id.conversation_pp_4); - left_buttons = itemView.findViewById(R.id.left_buttons); - status_show_more_content = itemView.findViewById(R.id.status_show_more_content); - spark_button_fav = itemView.findViewById(R.id.spark_button_fav); - spark_button_reblog = itemView.findViewById(R.id.spark_button_reblog); - horizontal_second_image = itemView.findViewById(R.id.horizontal_second_image); - - status_peertube_container = itemView.findViewById(R.id.status_peertube_container); - status_peertube_reply = itemView.findViewById(R.id.status_peertube_reply); - status_peertube_delete = itemView.findViewById(R.id.status_peertube_delete); - fedilab_features = itemView.findViewById(R.id.fedilab_features); - fedilab_features_panel = itemView.findViewById(R.id.fedilab_features_panel); - quick_reply_container = itemView.findViewById(R.id.quick_reply_container); - custom_feature_translate = itemView.findViewById(R.id.custom_feature_translate); - custom_feature_bookmark = itemView.findViewById(R.id.custom_feature_bookmark); - custom_feature_timed_mute = itemView.findViewById(R.id.custom_feature_timed_mute); - custom_feature_schedule = itemView.findViewById(R.id.custom_feature_schedule); - custom_feature_mention = itemView.findViewById(R.id.custom_feature_mention); - custom_feature_cache = itemView.findViewById(R.id.custom_feature_cache); - poll_container = itemView.findViewById(R.id.poll_container); - single_choice = itemView.findViewById(R.id.single_choice); - multiple_choice = itemView.findViewById(R.id.multiple_choice); - rated = itemView.findViewById(R.id.rated); - radio_group = itemView.findViewById(R.id.radio_group); - number_votes = itemView.findViewById(R.id.number_votes); - remaining_time = itemView.findViewById(R.id.remaining_time); - submit_vote = itemView.findViewById(R.id.submit_vote); - refresh_poll = itemView.findViewById(R.id.refresh_poll); - cached_status = itemView.findViewById(R.id.cached_status); - status_account_bot = itemView.findViewById(R.id.status_account_bot); - - - quick_reply_text = itemView.findViewById(R.id.quick_reply_text); - quick_reply_switch_to_full = itemView.findViewById(R.id.quick_reply_switch_to_full); - toot_space_left = itemView.findViewById(R.id.toot_space_left); - quick_reply_emoji = itemView.findViewById(R.id.quick_reply_emoji); - quick_reply_button = itemView.findViewById(R.id.quick_reply_button); - quick_reply_privacy = itemView.findViewById(R.id.quick_reply_privacy); - - warning_message = itemView.findViewById(R.id.warning_message); - - status_reply_indicator_bottom = itemView.findViewById(R.id.status_reply_indicator_bottom); - status_reply_indicator_top = itemView.findViewById(R.id.status_reply_indicator_top); - status_reply_indicator_diag_top = itemView.findViewById(R.id.status_reply_indicator_diag_top); - status_reply_indicator_diag_bottom = itemView.findViewById(R.id.status_reply_indicator_diag_bottom); - reply_indicator_dot = itemView.findViewById(R.id.reply_indicator_dot); - main_card_container = itemView.findViewById(R.id.main_card_container); - main_linear_container = itemView.findViewById(R.id.main_linear_container); - translation_border_view = itemView.findViewById(R.id.translation_border_view); - translation_label = itemView.findViewById(R.id.translation_label); - - status_reactions = itemView.findViewById(R.id.status_reactions); - status_add_reaction = itemView.findViewById(R.id.status_add_reaction); - status_add_custom_emoji = itemView.findViewById(R.id.status_add_custom_emoji); - reactions_view = itemView.findViewById(R.id.reactions_view); - fake_edittext = itemView.findViewById(R.id.fake_edittext); - } - - public View getView() { - return itemView; - } - - void updateAnimatedEmoji() { - status_account_displayname.invalidate(); - status_content.invalidate(); - } - - - private void startUpdateTimer() { - - final SharedPreferences sharedpreferences = context.getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE); - boolean disableAnimatedEmoji = sharedpreferences.getBoolean(Helper.SET_DISABLE_ANIMATED_EMOJI, false); - if (!disableAnimatedEmoji) { - if (BaseActivity.timer == null) { - BaseActivity.timer = new Timer(); - } - BaseActivity.timer.schedule(new TimerTask() { - @Override - public void run() { - mHandler.post(updateAnimatedEmoji); - } - }, 0, 130); - } - } - - } - -} \ No newline at end of file +} diff --git a/app/src/lite/java/app/fedilab/android/drawer/StatusListAdapter.java b/app/src/lite/java/app/fedilab/android/drawer/StatusListAdapter.java new file mode 100644 index 000000000..e438964dd --- /dev/null +++ b/app/src/lite/java/app/fedilab/android/drawer/StatusListAdapter.java @@ -0,0 +1,4 @@ +package app.fedilab.android.drawer; + +public class StatusListAdapter { +}