Files
FairEmail/app/src/main/java/eu/faircode/email/AdapterMessage.java

4044 lines
176 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +00:00
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2018-10-29 10:46:49 +00:00
FairEmail is distributed in the hope that it will be useful,
2018-08-02 13:33:06 +00:00
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
2018-10-29 10:46:49 +00:00
along with FairEmail. If not, see <http://www.gnu.org/licenses/>.
2018-08-02 13:33:06 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-09-08 14:57:03 +00:00
import android.Manifest;
2019-01-27 11:17:45 +00:00
import android.annotation.SuppressLint;
2019-03-07 12:29:03 +00:00
import android.annotation.TargetApi;
2019-04-19 08:31:00 +02:00
import android.app.Dialog;
2019-03-07 12:29:03 +00:00
import android.app.Notification;
import android.app.NotificationChannel;
2018-11-19 18:10:55 +01:00
import android.app.NotificationManager;
2018-09-08 14:57:03 +00:00
import android.content.ContentResolver;
2018-08-02 13:33:06 +00:00
import android.content.Context;
2018-09-19 10:00:58 +00:00
import android.content.DialogInterface;
2018-08-02 13:33:06 +00:00
import android.content.Intent;
import android.content.SharedPreferences;
2018-09-08 14:57:03 +00:00
import android.content.pm.PackageManager;
2018-12-10 19:27:04 +01:00
import android.content.res.ColorStateList;
2018-10-15 10:05:42 +00:00
import android.database.Cursor;
2018-09-12 16:54:48 +00:00
import android.graphics.Color;
2019-01-12 14:08:00 +00:00
import android.graphics.Rect;
2018-08-02 13:33:06 +00:00
import android.graphics.Typeface;
2018-09-08 14:57:03 +00:00
import android.graphics.drawable.Drawable;
import android.net.Uri;
2019-03-07 12:29:03 +00:00
import android.os.Build;
2018-09-01 06:27:13 +00:00
import android.os.Bundle;
2019-06-26 12:58:36 +02:00
import android.os.Handler;
2018-09-08 14:57:03 +00:00
import android.provider.ContactsContract;
2019-03-07 12:29:03 +00:00
import android.provider.Settings;
2019-06-28 17:06:13 +02:00
import android.text.Editable;
2018-10-15 10:05:42 +00:00
import android.text.Html;
import android.text.Layout;
import android.text.Spannable;
2018-12-20 21:12:28 +01:00
import android.text.SpannableStringBuilder;
2018-10-15 10:05:42 +00:00
import android.text.Spanned;
import android.text.TextUtils;
2019-06-28 17:06:13 +02:00
import android.text.TextWatcher;
2019-08-09 18:42:36 +02:00
import android.text.format.DateUtils;
2019-02-09 10:41:28 +00:00
import android.text.method.ArrowKeyMovementMethod;
2019-07-07 11:11:31 +02:00
import android.text.method.LinkMovementMethod;
2019-05-02 13:29:05 +02:00
import android.text.style.DynamicDrawableSpan;
2019-07-13 21:14:49 +02:00
import android.text.style.ForegroundColorSpan;
2018-10-15 10:05:42 +00:00
import android.text.style.ImageSpan;
2018-12-20 21:12:28 +01:00
import android.text.style.QuoteSpan;
2018-10-15 10:05:42 +00:00
import android.text.style.URLSpan;
2018-12-30 16:17:22 +00:00
import android.util.TypedValue;
2019-08-10 10:42:28 +02:00
import android.view.KeyEvent;
2018-08-02 13:33:06 +00:00
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
2018-10-15 10:05:42 +00:00
import android.view.MotionEvent;
2019-01-12 14:08:00 +00:00
import android.view.TouchDelegate;
2018-08-02 13:33:06 +00:00
import android.view.View;
2019-06-26 12:58:36 +02:00
import android.view.ViewConfiguration;
2018-08-02 13:33:06 +00:00
import android.view.ViewGroup;
2019-05-30 19:46:58 +02:00
import android.view.ViewStub;
2019-02-03 09:38:48 +00:00
import android.webkit.DownloadListener;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
2018-10-15 10:05:42 +00:00
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
2018-10-15 10:05:42 +00:00
import android.widget.EditText;
2019-08-14 12:16:25 +02:00
import android.widget.FrameLayout;
2018-12-21 15:19:07 +01:00
import android.widget.ImageButton;
import android.widget.ImageView;
2018-08-02 13:33:06 +00:00
import android.widget.TextView;
2019-08-13 10:27:17 +02:00
import android.widget.Toast;
2018-08-02 13:33:06 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
2019-06-30 20:56:31 +02:00
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.widget.PopupMenu;
2019-08-12 19:12:56 +02:00
import androidx.cardview.widget.CardView;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.constraintlayout.widget.Group;
2019-06-30 16:55:15 +02:00
import androidx.fragment.app.Fragment;
2019-07-10 18:17:28 +02:00
import androidx.fragment.app.FragmentManager;
2019-04-19 08:31:00 +02:00
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleObserver;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.Observer;
2019-04-19 08:31:00 +02:00
import androidx.lifecycle.OnLifecycleEvent;
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
import androidx.paging.AsyncPagedListDiffer;
import androidx.paging.PagedList;
import androidx.preference.PreferenceManager;
import androidx.recyclerview.selection.ItemDetailsLookup;
import androidx.recyclerview.selection.SelectionTracker;
import androidx.recyclerview.widget.AdapterListUpdateCallback;
import androidx.recyclerview.widget.AsyncDifferConfig;
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import androidx.recyclerview.widget.StaggeredGridLayoutManager;
2019-07-06 12:52:00 +02:00
import com.github.chrisbanes.photoview.PhotoView;
2018-10-15 10:05:42 +00:00
import com.google.android.material.bottomnavigation.BottomNavigationView;
import com.google.android.material.bottomnavigation.LabelVisibilityMode;
2018-10-24 10:34:02 +00:00
import com.google.android.material.snackbar.Snackbar;
2018-10-15 10:05:42 +00:00
2019-02-03 09:38:48 +00:00
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
2018-10-15 10:05:42 +00:00
import java.io.File;
2018-10-15 10:05:42 +00:00
import java.io.IOException;
import java.io.UnsupportedEncodingException;
2019-08-13 10:27:17 +02:00
import java.security.NoSuchAlgorithmException;
import java.text.DateFormat;
2019-03-10 08:02:17 +00:00
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
2018-10-15 10:05:42 +00:00
import java.util.ArrayList;
2018-11-26 12:42:06 +01:00
import java.util.Arrays;
2018-10-15 10:05:42 +00:00
import java.util.Collections;
import java.util.Date;
2019-08-11 16:08:53 +02:00
import java.util.HashMap;
import java.util.List;
2019-08-11 16:08:53 +02:00
import java.util.Map;
2019-06-25 09:46:31 +02:00
import java.util.Objects;
2018-10-15 10:05:42 +00:00
import javax.mail.Address;
import javax.mail.internet.InternetAddress;
2019-05-18 11:19:39 +02:00
import biweekly.Biweekly;
import biweekly.ICalendar;
import biweekly.component.VEvent;
2019-05-18 19:44:21 +02:00
import biweekly.parameter.ParticipationStatus;
2019-05-18 11:19:39 +02:00
import biweekly.property.Attendee;
2019-05-18 19:44:21 +02:00
import biweekly.property.Method;
import biweekly.property.Organizer;
2019-05-18 11:19:39 +02:00
import biweekly.property.Summary;
import biweekly.util.ICalDate;
2019-06-30 21:43:48 +02:00
import static android.app.Activity.RESULT_OK;
2018-12-03 08:21:02 +01:00
public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHolder> {
2019-06-30 16:55:15 +02:00
private Fragment parentFragment;
2019-07-19 08:27:44 +02:00
private String type;
2018-08-06 13:36:55 +00:00
private ViewType viewType;
2019-01-15 17:39:12 +00:00
private boolean compact;
2018-12-30 16:33:52 +00:00
private int zoom;
2019-01-21 18:12:22 +00:00
private String sort;
2019-04-28 15:16:26 +02:00
private boolean filter_duplicates;
private IProperties properties;
private Context context;
private LifecycleOwner owner;
private LayoutInflater inflater;
private boolean suitable;
private int dp3;
private int dp36;
private int colorPrimary;
private int colorAccent;
private int colorWarning;
private int textColorPrimary;
private int textColorSecondary;
private int colorUnread;
private boolean hasWebView;
private boolean contacts;
private float textSize;
2019-08-14 12:16:25 +02:00
private boolean cards;
private boolean date;
private boolean threading;
private boolean circular;
private boolean name_email;
private boolean subject_italic;
2019-03-02 15:54:38 +00:00
private boolean flags;
2018-11-04 12:42:41 +00:00
private boolean preview;
private boolean preview_italic;
private boolean attachments_alt;
private boolean contrast;
private boolean monospaced;
2019-07-22 12:31:30 +02:00
private boolean contact_images;
private boolean all_images;
private boolean collapse_quotes;
private boolean authentication;
2019-06-25 09:46:31 +02:00
private static boolean debug;
2018-09-08 17:04:10 +00:00
private int answers = -1;
2019-05-15 13:37:35 +02:00
private boolean gotoTop = false;
2019-05-04 10:24:42 +02:00
private AsyncPagedListDiffer<TupleMessageEx> differ;
2019-08-11 16:08:53 +02:00
private Map<Long, Integer> keyPosition = new HashMap<>();
2018-10-24 09:09:07 +00:00
private SelectionTracker<Long> selectionTracker = null;
2018-08-02 13:33:06 +00:00
2018-08-26 12:17:09 +00:00
enum ViewType {UNIFIED, FOLDER, THREAD, SEARCH}
2018-08-02 13:33:06 +00:00
private NumberFormat NF = NumberFormat.getNumberInstance();
private DateFormat TF;
2019-07-15 21:28:25 +02:00
private DateFormat DTF;
2018-12-03 08:21:02 +01:00
2019-07-29 22:27:55 +02:00
// https://github.com/newhouse/url-tracking-stripper
2019-04-17 13:37:14 +02:00
private static final List<String> PARANOID_QUERY = Collections.unmodifiableList(Arrays.asList(
"utm_source",
"utm_medium",
"utm_campaign",
"utm_term",
2019-07-29 22:27:55 +02:00
"utm_content",
"utm_name",
"utm_cid",
"utm_reader",
"utm_viz_id",
"utm_pubreferrer",
"utm_swu",
"gclid",
"fbclid"
2019-04-17 13:37:14 +02:00
));
2018-10-15 10:05:42 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements
2019-08-10 10:42:28 +02:00
View.OnClickListener, View.OnLongClickListener, View.OnKeyListener,
BottomNavigationView.OnNavigationItemSelectedListener {
2019-08-14 12:16:25 +02:00
private CardView card;
2019-03-15 11:53:22 +00:00
private View view;
2019-08-12 19:12:56 +02:00
private CardView vwColor;
2018-10-15 10:05:42 +00:00
private ImageView ivExpander;
private ImageView ivFlagged;
private ImageView ivAvatar;
private TextView tvFrom;
private TextView tvSize;
2018-10-15 10:05:42 +00:00
private TextView tvTime;
private ImageView ivType;
private ImageView ivAuth;
2019-01-07 15:05:24 +00:00
private ImageView ivSnoozed;
2019-01-19 16:14:40 +00:00
private ImageView ivBrowsed;
2018-11-24 19:14:28 +01:00
private ImageView ivAnswered;
2019-05-04 21:31:14 +02:00
private ImageView ivPlain;
private ImageView ivReceipt;
2018-10-15 10:05:42 +00:00
private ImageView ivAttachments;
private TextView tvSubject;
private TextView tvFolder;
private TextView tvCount;
private ImageView ivThread;
2018-11-04 16:16:45 +00:00
private TextView tvPreview;
2018-10-15 10:05:42 +00:00
private TextView tvError;
2018-12-27 12:31:02 +00:00
private ContentLoadingProgressBar pbLoading;
2019-03-08 10:27:33 +00:00
private View vwRipple;
2018-10-15 10:05:42 +00:00
2019-05-30 19:46:58 +02:00
private View vsBody;
2018-11-04 16:16:45 +00:00
private ImageView ivExpanderAddress;
2019-03-09 10:02:17 +00:00
2019-05-08 16:44:01 +02:00
private ImageButton ibSearchContact;
private ImageButton ibNotifyContact;
private ImageButton ibAddContact;
2019-03-09 10:02:17 +00:00
private TextView tvFromExTitle;
private TextView tvToTitle;
private TextView tvReplyToTitle;
private TextView tvCcTitle;
private TextView tvBccTitle;
private TextView tvIdentityTitle;
private TextView tvTimeExTitle;
private TextView tvSizeExTitle;
private TextView tvFromEx;
2018-10-15 10:05:42 +00:00
private TextView tvTo;
private TextView tvReplyTo;
private TextView tvCc;
private TextView tvBcc;
private TextView tvIdentity;
2018-11-29 19:42:40 +01:00
private TextView tvTimeEx;
private TextView tvSizeEx;
2019-03-09 10:02:17 +00:00
2018-10-15 10:05:42 +00:00
private TextView tvSubjectEx;
2019-01-29 20:15:24 +00:00
private TextView tvFlags;
2018-11-25 18:29:11 +01:00
private TextView tvKeywords;
2018-10-15 10:05:42 +00:00
private TextView tvHeaders;
2018-12-27 12:31:02 +00:00
private ContentLoadingProgressBar pbHeaders;
private TextView tvNoInternetHeaders;
2018-10-15 10:05:42 +00:00
private RecyclerView rvAttachment;
private CheckBox cbInline;
2019-01-05 12:00:36 +00:00
private Button btnDownloadAttachments;
2019-01-05 14:56:19 +00:00
private Button btnSaveAttachments;
private TextView tvNoInternetAttachments;
2018-10-15 10:05:42 +00:00
private BottomNavigationView bnvActions;
2018-10-18 07:56:31 +00:00
2019-07-10 19:00:25 +02:00
private ImageButton ibDecrypt;
2018-12-21 15:19:07 +01:00
private ImageButton ibImages;
private ImageButton ibFull;
2018-10-15 10:05:42 +00:00
private TextView tvBody;
private ContentLoadingProgressBar pbBody;
private TextView tvNoInternetBody;
2018-10-15 10:05:42 +00:00
2019-05-18 11:19:39 +02:00
private TextView tvCalendarSummary;
private TextView tvCalendarStart;
private TextView tvCalendarEnd;
private TextView tvAttendees;
2019-05-18 19:44:21 +02:00
private Button btnCalendarAccept;
private Button btnCalendarDecline;
private Button btnCalendarMaybe;
2019-05-18 11:19:39 +02:00
private ContentLoadingProgressBar pbCalendarWait;
2019-01-06 09:23:57 +00:00
private RecyclerView rvImage;
2019-05-17 18:54:44 +02:00
private Group grpAddresses;
2018-10-15 10:05:42 +00:00
private Group grpHeaders;
2019-05-18 11:19:39 +02:00
private Group grpCalendar;
2019-05-18 19:44:21 +02:00
private Group grpCalendarResponse;
2018-10-15 10:05:42 +00:00
private Group grpAttachments;
2019-05-13 20:44:08 +02:00
private Group grpImages;
2019-01-06 09:23:57 +00:00
private AdapterAttachment adapterAttachment;
private AdapterImage adapterImage;
2019-05-03 18:59:27 +02:00
private TwoStateOwner cowner = new TwoStateOwner(owner, "MessageAttachments");
private TwoStateOwner powner = new TwoStateOwner(owner, "MessagePopup");
2018-12-05 11:50:07 +01:00
2019-01-12 14:08:00 +00:00
ViewHolder(final View itemView) {
2018-08-02 13:33:06 +00:00
super(itemView);
2019-08-14 12:16:25 +02:00
card = itemView.findViewById(R.id.card);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2018-09-12 16:54:48 +00:00
vwColor = itemView.findViewById(R.id.vwColor);
2018-10-15 10:05:42 +00:00
ivExpander = itemView.findViewById(R.id.ivExpander);
2018-09-07 15:12:43 +00:00
ivFlagged = itemView.findViewById(R.id.ivFlagged);
ivAvatar = itemView.findViewById(R.id.ivAvatar);
2018-08-03 07:39:43 +00:00
tvFrom = itemView.findViewById(R.id.tvFrom);
tvSize = itemView.findViewById(R.id.tvSize);
2018-08-02 13:33:06 +00:00
tvTime = itemView.findViewById(R.id.tvTime);
ivType = itemView.findViewById(R.id.ivType);
ivAuth = itemView.findViewById(R.id.ivAuth);
2019-01-07 15:05:24 +00:00
ivSnoozed = itemView.findViewById(R.id.ivSnoozed);
2019-01-19 16:14:40 +00:00
ivBrowsed = itemView.findViewById(R.id.ivBrowsed);
2018-11-24 19:14:28 +01:00
ivAnswered = itemView.findViewById(R.id.ivAnswered);
2019-05-04 21:31:14 +02:00
ivPlain = itemView.findViewById(R.id.ivPlain);
ivReceipt = itemView.findViewById(R.id.ivReceipt);
ivAttachments = itemView.findViewById(R.id.ivAttachments);
2018-08-02 13:33:06 +00:00
tvSubject = itemView.findViewById(R.id.tvSubject);
2018-11-04 12:42:41 +00:00
tvPreview = itemView.findViewById(R.id.tvPreview);
2018-08-22 16:37:10 +00:00
tvFolder = itemView.findViewById(R.id.tvFolder);
2018-08-02 13:33:06 +00:00
tvCount = itemView.findViewById(R.id.tvCount);
2018-09-04 07:56:30 +00:00
ivThread = itemView.findViewById(R.id.ivThread);
tvError = itemView.findViewById(R.id.tvError);
2018-08-07 06:38:00 +00:00
pbLoading = itemView.findViewById(R.id.pbLoading);
2019-03-08 10:27:33 +00:00
vwRipple = itemView.findViewById(R.id.vwRipple);
2019-08-14 12:16:25 +02:00
if (!cards) {
FrameLayout.LayoutParams lparam = (FrameLayout.LayoutParams) card.getLayoutParams();
lparam.setMargins(0, 0, 0, 0);
card.setLayoutParams(lparam);
card.setRadius(0);
card.setElevation(0);
card.setCardBackgroundColor(Color.TRANSPARENT);
view.setPadding(0, 0, 0, 0);
}
vwColor.setRadius(circular ? dp3 / 2f : 0f);
2019-05-30 19:46:58 +02:00
}
2018-10-15 10:05:42 +00:00
2019-05-30 19:46:58 +02:00
private void ensureExpanded() {
if (vsBody != null)
return;
vsBody = ((ViewStub) itemView.findViewById(R.id.vsBody)).inflate();
ConstraintLayout inAttachments = vsBody.findViewById(R.id.inAttachments);
ConstraintLayout inAttachmentsAlt = vsBody.findViewById(R.id.inAttachmentsAlt);
inAttachments.setVisibility(attachments_alt ? View.GONE : View.VISIBLE);
inAttachmentsAlt.setVisibility(attachments_alt ? View.VISIBLE : View.GONE);
ConstraintLayout attachments = (attachments_alt ? inAttachmentsAlt : inAttachments);
ivExpanderAddress = vsBody.findViewById(R.id.ivExpanderAddress);
ibSearchContact = vsBody.findViewById(R.id.ibSearchContact);
ibNotifyContact = vsBody.findViewById(R.id.ibNotifyContact);
ibAddContact = vsBody.findViewById(R.id.ibAddContact);
tvFromExTitle = vsBody.findViewById(R.id.tvFromExTitle);
tvToTitle = vsBody.findViewById(R.id.tvToTitle);
tvReplyToTitle = vsBody.findViewById(R.id.tvReplyToTitle);
tvCcTitle = vsBody.findViewById(R.id.tvCcTitle);
tvBccTitle = vsBody.findViewById(R.id.tvBccTitle);
tvIdentityTitle = vsBody.findViewById(R.id.tvIdentityTitle);
tvTimeExTitle = vsBody.findViewById(R.id.tvTimeExTitle);
tvSizeExTitle = vsBody.findViewById(R.id.tvSizeExTitle);
tvFromEx = vsBody.findViewById(R.id.tvFromEx);
tvTo = vsBody.findViewById(R.id.tvTo);
tvReplyTo = vsBody.findViewById(R.id.tvReplyTo);
tvCc = vsBody.findViewById(R.id.tvCc);
tvBcc = vsBody.findViewById(R.id.tvBcc);
tvIdentity = vsBody.findViewById(R.id.tvIdentity);
tvTimeEx = vsBody.findViewById(R.id.tvTimeEx);
tvSizeEx = vsBody.findViewById(R.id.tvSizeEx);
tvSubjectEx = vsBody.findViewById(R.id.tvSubjectEx);
tvFlags = vsBody.findViewById(R.id.tvFlags);
tvKeywords = vsBody.findViewById(R.id.tvKeywords);
tvHeaders = vsBody.findViewById(R.id.tvHeaders);
pbHeaders = vsBody.findViewById(R.id.pbHeaders);
tvNoInternetHeaders = vsBody.findViewById(R.id.tvNoInternetHeaders);
tvCalendarSummary = vsBody.findViewById(R.id.tvCalendarSummary);
tvCalendarStart = vsBody.findViewById(R.id.tvCalendarStart);
tvCalendarEnd = vsBody.findViewById(R.id.tvCalendarEnd);
tvAttendees = vsBody.findViewById(R.id.tvAttendees);
btnCalendarAccept = vsBody.findViewById(R.id.btnCalendarAccept);
btnCalendarDecline = vsBody.findViewById(R.id.btnCalendarDecline);
btnCalendarMaybe = vsBody.findViewById(R.id.btnCalendarMaybe);
pbCalendarWait = vsBody.findViewById(R.id.pbCalendarWait);
rvAttachment = attachments.findViewById(R.id.rvAttachment);
rvAttachment.setHasFixedSize(false);
LinearLayoutManager llm = new LinearLayoutManager(context);
rvAttachment.setLayoutManager(llm);
rvAttachment.setItemAnimator(null);
adapterAttachment = new AdapterAttachment(parentFragment, true);
2019-05-30 19:46:58 +02:00
rvAttachment.setAdapter(adapterAttachment);
cbInline = attachments.findViewById(R.id.cbInline);
btnDownloadAttachments = attachments.findViewById(R.id.btnDownloadAttachments);
btnSaveAttachments = attachments.findViewById(R.id.btnSaveAttachments);
tvNoInternetAttachments = attachments.findViewById(R.id.tvNoInternetAttachments);
bnvActions = vsBody.findViewById(R.id.bnvActions);
if (compact) {
bnvActions.setLabelVisibilityMode(LabelVisibilityMode.LABEL_VISIBILITY_UNLABELED);
ViewGroup.LayoutParams lparam = bnvActions.getLayoutParams();
lparam.height = dp36;
bnvActions.setLayoutParams(lparam);
}
2019-05-30 19:46:58 +02:00
2019-07-06 18:59:25 +02:00
ibDecrypt = vsBody.findViewById(R.id.ibDecrypt);
2019-05-30 19:46:58 +02:00
ibImages = vsBody.findViewById(R.id.ibImages);
ibFull = vsBody.findViewById(R.id.ibFull);
tvBody = vsBody.findViewById(R.id.tvBody);
pbBody = vsBody.findViewById(R.id.pbBody);
2019-05-30 19:46:58 +02:00
tvNoInternetBody = vsBody.findViewById(R.id.tvNoInternetBody);
rvImage = vsBody.findViewById(R.id.rvImage);
rvImage.setHasFixedSize(false);
StaggeredGridLayoutManager sglm =
new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
rvImage.setLayoutManager(sglm);
adapterImage = new AdapterImage(parentFragment);
2019-05-30 19:46:58 +02:00
rvImage.setAdapter(adapterImage);
grpAddresses = vsBody.findViewById(R.id.grpAddresses);
grpHeaders = vsBody.findViewById(R.id.grpHeaders);
grpCalendar = vsBody.findViewById(R.id.grpCalendar);
grpCalendarResponse = vsBody.findViewById(R.id.grpCalendarResponse);
grpAttachments = attachments.findViewById(R.id.grpAttachments);
grpImages = vsBody.findViewById(R.id.grpImages);
2019-05-30 20:32:29 +02:00
unwire();
wire();
2018-08-02 13:33:06 +00:00
}
2019-01-20 15:22:21 +00:00
Rect getItemRect() {
return new Rect(
super.itemView.getLeft(),
2019-08-14 12:32:29 +02:00
super.itemView.getTop(),
2019-01-20 15:22:21 +00:00
super.itemView.getRight(),
super.itemView.getBottom());
}
2018-08-02 13:33:06 +00:00
private void wire() {
final View touch = (viewType == ViewType.THREAD ? ivExpander : vwColor);
2019-01-20 11:21:09 +00:00
touch.setOnClickListener(this);
2019-03-15 11:53:22 +00:00
view.post(new Runnable() {
2019-01-20 11:21:09 +00:00
@Override
public void run() {
Rect rect = new Rect(
2019-03-15 11:53:22 +00:00
view.getLeft(),
2019-01-24 07:10:51 +00:00
vwColor.getTop(),
2019-03-15 11:53:22 +00:00
view.getRight(),
2019-01-24 07:10:51 +00:00
vwColor.getBottom());
2019-03-15 11:53:22 +00:00
view.setTouchDelegate(new TouchDelegate(rect, touch));
2019-01-20 11:21:09 +00:00
}
});
2019-08-10 10:42:28 +02:00
view.setOnKeyListener(this);
2019-01-15 16:50:32 +00:00
2019-01-07 15:05:24 +00:00
ivSnoozed.setOnClickListener(this);
2018-12-04 17:08:36 +01:00
ivFlagged.setOnClickListener(this);
2019-06-28 18:43:36 +02:00
if (viewType == ViewType.THREAD)
ivFlagged.setOnLongClickListener(this);
2019-01-15 16:50:32 +00:00
2019-05-30 19:46:58 +02:00
if (vsBody != null) {
2019-05-30 15:46:00 +02:00
ivExpanderAddress.setOnClickListener(this);
ibSearchContact.setOnClickListener(this);
ibNotifyContact.setOnClickListener(this);
ibAddContact.setOnClickListener(this);
2019-01-15 16:50:32 +00:00
2019-07-06 18:59:25 +02:00
ibDecrypt.setOnClickListener(this);
2019-05-30 15:46:00 +02:00
btnDownloadAttachments.setOnClickListener(this);
btnSaveAttachments.setOnClickListener(this);
2019-01-15 16:50:32 +00:00
2019-05-30 15:46:00 +02:00
ibImages.setOnClickListener(this);
ibFull.setOnClickListener(this);
2019-05-30 15:46:00 +02:00
btnCalendarAccept.setOnClickListener(this);
btnCalendarDecline.setOnClickListener(this);
btnCalendarMaybe.setOnClickListener(this);
2019-05-18 19:44:21 +02:00
2019-05-30 15:46:00 +02:00
bnvActions.setOnNavigationItemSelectedListener(this);
}
2018-08-02 13:33:06 +00:00
}
private void unwire() {
2019-08-10 10:42:28 +02:00
final View touch = (viewType == ViewType.THREAD ? ivExpander : vwColor);
touch.setOnClickListener(null);
view.setOnKeyListener(null);
2019-05-18 19:44:21 +02:00
2019-01-07 15:05:24 +00:00
ivSnoozed.setOnClickListener(null);
2018-12-04 17:08:36 +01:00
ivFlagged.setOnClickListener(null);
2019-06-28 18:43:36 +02:00
if (viewType == ViewType.THREAD)
ivFlagged.setOnLongClickListener(null);
2019-05-18 19:44:21 +02:00
2019-05-30 19:46:58 +02:00
if (vsBody != null) {
2019-05-30 15:46:00 +02:00
ivExpanderAddress.setOnClickListener(null);
ibSearchContact.setOnClickListener(null);
ibNotifyContact.setOnClickListener(null);
ibAddContact.setOnClickListener(null);
2019-05-18 19:44:21 +02:00
2019-07-06 18:59:25 +02:00
ibDecrypt.setOnClickListener(null);
2019-05-30 15:46:00 +02:00
btnDownloadAttachments.setOnClickListener(null);
btnSaveAttachments.setOnClickListener(null);
2019-05-18 19:44:21 +02:00
2019-05-30 15:46:00 +02:00
ibImages.setOnClickListener(null);
ibFull.setOnClickListener(null);
2019-05-30 15:46:00 +02:00
btnCalendarAccept.setOnClickListener(null);
btnCalendarDecline.setOnClickListener(null);
btnCalendarMaybe.setOnClickListener(null);
2019-05-18 19:44:21 +02:00
2019-05-30 15:46:00 +02:00
bnvActions.setOnNavigationItemSelectedListener(null);
}
2018-08-02 13:33:06 +00:00
}
2018-08-07 06:38:00 +00:00
private void clear() {
2018-10-15 10:05:42 +00:00
vwColor.setVisibility(View.GONE);
ivExpander.setVisibility(View.GONE);
2018-09-07 15:12:43 +00:00
ivFlagged.setVisibility(View.GONE);
2018-09-08 17:39:35 +00:00
ivAvatar.setVisibility(View.GONE);
2018-08-07 06:38:00 +00:00
tvFrom.setText(null);
tvSize.setText(null);
2018-08-07 06:38:00 +00:00
tvTime.setText(null);
ivType.setVisibility(View.GONE);
ivAuth.setVisibility(View.GONE);
2019-01-07 15:05:24 +00:00
ivSnoozed.setVisibility(View.GONE);
2019-01-19 16:14:40 +00:00
ivBrowsed.setVisibility(View.GONE);
2018-11-24 19:14:28 +01:00
ivAnswered.setVisibility(View.GONE);
2019-05-04 21:31:14 +02:00
ivPlain.setVisibility(View.GONE);
ivReceipt.setVisibility(View.GONE);
2018-08-07 06:38:00 +00:00
ivAttachments.setVisibility(View.GONE);
2018-09-07 15:12:43 +00:00
tvSubject.setText(null);
2018-08-23 06:57:24 +00:00
tvFolder.setText(null);
2018-08-07 06:38:00 +00:00
tvCount.setText(null);
2018-09-04 07:56:30 +00:00
ivThread.setVisibility(View.GONE);
2018-11-04 16:16:45 +00:00
tvPreview.setVisibility(View.GONE);
2018-09-08 17:39:35 +00:00
tvError.setVisibility(View.GONE);
pbLoading.setVisibility(View.VISIBLE);
2018-11-04 16:16:45 +00:00
2019-06-05 07:59:34 +02:00
clearExpanded(null);
2018-08-07 06:38:00 +00:00
}
2019-01-27 11:17:45 +00:00
@SuppressLint("WrongConstant")
2019-03-04 10:18:42 +00:00
private void bindTo(final TupleMessageEx message) {
pbLoading.setVisibility(View.GONE);
2019-08-11 20:11:48 +02:00
boolean inbox = EntityFolder.INBOX.equals(message.folderType);
boolean outbox = EntityFolder.OUTBOX.equals(message.folderType);
if (viewType == ViewType.THREAD)
2019-04-28 15:16:26 +02:00
view.setVisibility(!filter_duplicates || !message.duplicate ? View.VISIBLE : View.GONE);
// Text size
2019-01-20 11:21:09 +00:00
if (textSize != 0) {
tvFrom.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * (message.unseen > 0 ? 1.1f : 1f));
2019-03-07 21:20:52 +00:00
tvSubject.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
2019-04-17 09:38:24 +02:00
tvPreview.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
2019-03-08 09:15:40 +00:00
int px = Math.round(TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_PX, textSize * (compact ? 1.5f : 3.0f),
context.getResources().getDisplayMetrics()));
if (compact && tvFrom.getMinHeight() != px)
tvFrom.setMinimumHeight(px);
ViewGroup.LayoutParams lparams = ivAvatar.getLayoutParams();
if (lparams.height != px) {
lparams.width = px;
lparams.height = px;
ivAvatar.requestLayout();
}
2019-01-20 11:21:09 +00:00
}
// Selected / disabled
2019-03-15 11:53:22 +00:00
view.setActivated(selectionTracker != null && selectionTracker.isSelected(message.id));
view.setAlpha(
(EntityFolder.OUTBOX.equals(message.folderType)
? message.identitySynchronize == null || !message.identitySynchronize
: message.uid == null)
? Helper.LOW_LIGHT : 1.0f);
2019-01-04 18:37:56 +00:00
// Duplicate
2018-11-27 07:27:32 +01:00
if (viewType == ViewType.THREAD) {
2019-03-07 13:26:36 +00:00
boolean dim = (message.duplicate || EntityFolder.TRASH.equals(message.folderType));
ivFlagged.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivAvatar.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvFrom.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvSize.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvTime.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivType.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivAuth.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
2019-03-07 13:26:36 +00:00
ivSnoozed.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivBrowsed.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivAnswered.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
2019-05-04 21:31:14 +02:00
ivPlain.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivReceipt.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
2019-03-07 13:26:36 +00:00
ivAttachments.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvSubject.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvFolder.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvCount.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
ivThread.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvPreview.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
tvError.setAlpha(dim ? Helper.LOW_LIGHT : 1.0f);
2018-11-27 07:27:32 +01:00
}
// Unseen
Typeface typeface = (message.unseen > 0 ? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
tvFrom.setTypeface(typeface);
tvSize.setTypeface(typeface);
tvTime.setTypeface(typeface);
if (subject_italic)
if (message.unseen > 0)
tvSubject.setTypeface(null, Typeface.BOLD_ITALIC);
else
tvSubject.setTypeface(null, Typeface.ITALIC);
else
tvSubject.setTypeface(typeface);
tvCount.setTypeface(typeface);
2018-12-24 18:16:01 +00:00
int colorUnseen = (message.unseen > 0 ? colorUnread : textColorSecondary);
tvFrom.setTextColor(colorUnseen);
tvSize.setTextColor(colorUnseen);
tvTime.setTextColor(colorUnseen);
2018-09-08 14:57:03 +00:00
// Account color
2019-08-12 19:12:56 +02:00
vwColor.setCardBackgroundColor(message.accountColor == null ? Color.TRANSPARENT : message.accountColor);
2019-08-13 10:27:17 +02:00
vwColor.setVisibility(ActivityBilling.isPro(context) ? View.VISIBLE : View.INVISIBLE);
2018-09-12 16:54:48 +00:00
// Expander
boolean expanded = (viewType == ViewType.THREAD && properties.getValue("expanded", message.id));
2019-04-28 10:44:07 +02:00
ivExpander.setImageLevel(expanded ? 0 /* less */ : 1 /* more */);
if (viewType == ViewType.THREAD)
2018-11-13 10:22:41 +01:00
ivExpander.setVisibility(EntityFolder.DRAFTS.equals(message.folderType) ? View.INVISIBLE : View.VISIBLE);
else
ivExpander.setVisibility(View.GONE);
2018-10-15 10:05:42 +00:00
// Line 1
2019-08-04 13:43:37 +02:00
boolean outgoing = (viewType != ViewType.THREAD && EntityFolder.isOutgoing(message.folderType));
Address[] addresses = (outgoing ? message.to : message.senders);
tvFrom.setText(MessageHelper.formatAddresses(addresses, name_email, false));
2019-04-05 08:57:50 +02:00
Long size = ("size".equals(sort) ? message.totalSize : message.size);
tvSize.setText(size == null ? null : Helper.humanReadableByteCount(size, true));
tvSize.setVisibility(size == null || (message.content && !"size".equals(sort)) ? View.GONE : View.VISIBLE);
tvTime.setText(date && "time".equals(sort)
? TF.format(message.received)
: Helper.getRelativeTimeSpanString(context, message.received));
2018-08-07 06:38:00 +00:00
// Line 2
tvSubject.setText(message.subject);
boolean authenticated =
!(Boolean.FALSE.equals(message.dkim) ||
Boolean.FALSE.equals(message.spf) ||
Boolean.FALSE.equals(message.dmarc) ||
Boolean.FALSE.equals(message.mx));
// Line 3
ivType.setImageResource(message.drafts > 0
? R.drawable.baseline_edit_24 : EntityFolder.getIcon(message.folderType));
ivType.setVisibility(message.drafts > 0 ||
2019-08-11 20:11:48 +02:00
(viewType == ViewType.UNIFIED && type == null && !inbox) ||
2019-06-07 11:24:48 +02:00
(viewType == ViewType.THREAD && EntityFolder.SENT.equals(message.folderType))
? View.VISIBLE : View.GONE);
ivAuth.setVisibility(authentication && !authenticated ? View.VISIBLE : View.GONE);
2019-01-07 15:05:24 +00:00
ivSnoozed.setVisibility(message.ui_snoozed == null ? View.GONE : View.VISIBLE);
2019-01-19 16:14:40 +00:00
ivBrowsed.setVisibility(message.ui_browsed ? View.VISIBLE : View.GONE);
2018-11-24 19:14:28 +01:00
ivAnswered.setVisibility(message.ui_answered ? View.VISIBLE : View.GONE);
2019-05-04 21:31:14 +02:00
ivPlain.setVisibility(message.plain_only != null && message.plain_only ? View.VISIBLE : View.GONE);
ivReceipt.setVisibility(message.receipt_request != null && message.receipt_request ? View.VISIBLE : View.GONE);
2018-08-23 06:57:24 +00:00
ivAttachments.setVisibility(message.attachments > 0 ? View.VISIBLE : View.GONE);
2018-08-07 06:38:00 +00:00
2019-01-20 10:18:42 +00:00
if (viewType == ViewType.FOLDER)
2019-08-11 20:11:48 +02:00
tvFolder.setText(outbox ? message.identityEmail : message.accountName);
2019-07-19 08:27:44 +02:00
else if (type == null) {
2019-01-20 10:18:42 +00:00
String folderName = (message.folderDisplay == null
2018-09-19 17:47:03 +00:00
? Helper.localizeFolderName(context, message.folderName)
: message.folderDisplay);
2019-01-20 10:18:42 +00:00
tvFolder.setText((compact ? "" : message.accountName + "/") + folderName);
2019-07-19 08:27:44 +02:00
} else {
String folderName = (message.folderDisplay == null
? Helper.localizeFolderName(context, message.folderName)
: message.folderDisplay);
tvFolder.setText(message.accountName + "/" + folderName);
2019-01-20 10:18:42 +00:00
}
tvFolder.setVisibility(compact &&
2019-08-11 20:11:48 +02:00
((viewType == ViewType.FOLDER && !outbox) || (viewType == ViewType.UNIFIED && type == null && inbox))
? View.GONE : View.VISIBLE);
2018-08-23 06:57:24 +00:00
if (viewType == ViewType.THREAD || !threading) {
2018-08-23 06:57:24 +00:00
tvCount.setVisibility(View.GONE);
2018-09-04 07:56:30 +00:00
ivThread.setVisibility(View.GONE);
} else {
tvCount.setText(NF.format(message.visible));
2018-09-04 07:56:30 +00:00
ivThread.setVisibility(View.VISIBLE);
2018-08-09 05:37:52 +00:00
}
2018-08-07 06:38:00 +00:00
// Starred
bindFlagged(message);
// Message text preview
2019-07-09 15:19:20 +02:00
tvPreview.setTextColor(contrast ? textColorPrimary : textColorSecondary);
tvPreview.setTypeface(
monospaced ? Typeface.MONOSPACE : Typeface.DEFAULT,
preview_italic ? Typeface.ITALIC : Typeface.NORMAL);
tvPreview.setText(message.preview);
2019-06-05 08:42:46 +02:00
tvPreview.setVisibility(preview && !TextUtils.isEmpty(message.preview) ? View.VISIBLE : View.GONE);
// Error / warning
2019-01-17 10:49:18 +00:00
String error = message.error;
if (message.warning != null)
if (error == null)
error = message.warning;
else
error += " " + message.warning;
if (debug) {
2019-01-17 10:49:18 +00:00
String text = "error=" + error +
"\nuid=" + message.uid + " id=" + message.id + " " + DTF.format(new Date(message.received)) +
2019-06-23 13:23:29 +02:00
"\n" + (message.ui_hide == 0 ? "" : "HIDDEN ") +
2019-01-05 14:08:07 +00:00
"seen=" + message.seen + "/" + message.ui_seen +
" unseen=" + message.unseen +
2019-01-10 18:55:40 +00:00
" ignored=" + message.ui_ignored +
2018-12-05 11:50:07 +01:00
" found=" + message.ui_found +
2019-01-05 14:08:07 +00:00
"\nmsgid=" + message.msgid +
"\nthread=" + message.thread +
"\nsender=" + message.sender;
2018-12-05 11:50:07 +01:00
tvError.setText(text);
tvError.setVisibility(View.VISIBLE);
2018-10-15 10:05:42 +00:00
} else {
2019-01-17 10:49:18 +00:00
tvError.setText(error);
tvError.setVisibility(error == null ? View.GONE : View.VISIBLE);
}
2018-08-11 09:18:49 +00:00
// Contact info
ContactInfo info = ContactInfo.get(context, addresses, true);
if (info == null) {
Bundle aargs = new Bundle();
aargs.putLong("id", message.id);
aargs.putSerializable("addresses", addresses);
2019-01-10 17:39:52 +00:00
new SimpleTask<ContactInfo>() {
@Override
protected void onPreExecute(Bundle args) {
2019-08-04 13:43:37 +02:00
//Address[] addresses = (Address[]) args.getSerializable("addresses");
ivAvatar.setVisibility(View.GONE);
//tvFrom.setText(MessageHelper.formatAddresses(addresses, name_email, false));
}
2018-12-05 11:50:07 +01:00
@Override
protected ContactInfo onExecute(Context context, Bundle args) {
Address[] addresses = (Address[]) args.getSerializable("addresses");
return ContactInfo.get(context, addresses, false);
2018-12-05 11:50:07 +01:00
}
@Override
protected void onExecuted(Bundle args, ContactInfo info) {
2019-02-01 09:29:26 +00:00
long id = args.getLong("id");
TupleMessageEx amessage = getMessage();
if (amessage == null || !amessage.id.equals(id))
return;
bindContactInfo(info, message);
}
2018-12-05 11:50:07 +01:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2018-12-05 11:50:07 +01:00
}
}.execute(context, owner, aargs, "message:avatar");
2018-12-22 08:48:23 +01:00
} else
bindContactInfo(info, message);
2018-08-07 06:38:00 +00:00
2019-07-22 12:31:30 +02:00
if (all_images || (contact_images && message.avatar != null))
properties.setValue("images", message.id, true);
2019-02-04 11:45:38 +00:00
if (viewType == ViewType.THREAD) {
2019-06-24 11:05:30 +02:00
if (expanded)
2019-02-04 11:45:38 +00:00
bindExpanded(message);
else {
2019-06-05 07:59:34 +02:00
clearExpanded(message);
2019-02-04 11:45:38 +00:00
properties.setBody(message.id, null);
}
2019-05-30 15:46:00 +02:00
}
2019-01-30 07:50:20 +00:00
}
2019-06-05 07:59:34 +02:00
private void clearExpanded(TupleMessageEx message) {
if (compact) {
tvFrom.setSingleLine(true);
tvSubject.setSingleLine(true);
}
2019-06-05 08:42:46 +02:00
tvPreview.setVisibility(
preview && message != null && !TextUtils.isEmpty(message.preview)
? View.VISIBLE : View.GONE);
if (vsBody == null)
return;
cowner.stop();
2019-05-17 18:54:44 +02:00
grpAddresses.setVisibility(View.GONE);
grpHeaders.setVisibility(View.GONE);
2019-05-18 11:19:39 +02:00
grpCalendar.setVisibility(View.GONE);
2019-05-18 19:44:21 +02:00
grpCalendarResponse.setVisibility(View.GONE);
grpAttachments.setVisibility(View.GONE);
2019-05-14 19:21:11 +02:00
grpImages.setVisibility(View.GONE);
2019-05-08 16:44:01 +02:00
ibSearchContact.setVisibility(View.GONE);
ibNotifyContact.setVisibility(View.GONE);
ibAddContact.setVisibility(View.GONE);
2019-03-09 10:02:17 +00:00
tvFromExTitle.setVisibility(View.GONE);
tvToTitle.setVisibility(View.GONE);
tvReplyToTitle.setVisibility(View.GONE);
tvCcTitle.setVisibility(View.GONE);
tvBccTitle.setVisibility(View.GONE);
tvIdentityTitle.setVisibility(View.GONE);
tvTimeExTitle.setVisibility(View.GONE);
tvSizeExTitle.setVisibility(View.GONE);
tvFromEx.setVisibility(View.GONE);
tvTo.setVisibility(View.GONE);
tvReplyTo.setVisibility(View.GONE);
tvCc.setVisibility(View.GONE);
tvBcc.setVisibility(View.GONE);
tvIdentity.setVisibility(View.GONE);
tvTimeEx.setVisibility(View.GONE);
tvSizeEx.setVisibility(View.GONE);
tvSubjectEx.setVisibility(View.GONE);
tvFlags.setVisibility(View.GONE);
tvKeywords.setVisibility(View.GONE);
2019-03-09 10:02:17 +00:00
pbHeaders.setVisibility(View.GONE);
tvNoInternetHeaders.setVisibility(View.GONE);
2019-05-18 11:19:39 +02:00
tvCalendarSummary.setVisibility(View.GONE);
tvCalendarStart.setVisibility(View.GONE);
tvCalendarEnd.setVisibility(View.GONE);
tvAttendees.setVisibility(View.GONE);
pbCalendarWait.setVisibility(View.GONE);
cbInline.setVisibility(View.GONE);
btnDownloadAttachments.setVisibility(View.GONE);
btnSaveAttachments.setVisibility(View.GONE);
tvNoInternetAttachments.setVisibility(View.GONE);
2019-05-17 18:54:44 +02:00
bnvActions.setVisibility(View.GONE);
2019-07-10 19:00:25 +02:00
ibDecrypt.setVisibility(View.GONE);
ibImages.setVisibility(View.GONE);
ibFull.setVisibility(View.GONE);
tvBody.setVisibility(View.GONE);
pbBody.setVisibility(View.GONE);
tvNoInternetBody.setVisibility(View.GONE);
}
2019-02-04 11:45:38 +00:00
private void bindFlagged(TupleMessageEx message) {
int flagged = (message.count - message.unflagged);
ivFlagged.setImageResource(flagged > 0 ? R.drawable.baseline_star_24 : R.drawable.baseline_star_border_24);
2019-05-15 11:10:47 +02:00
ivFlagged.setImageTintList(ColorStateList.valueOf(flagged > 0
2019-08-13 10:27:17 +02:00
? message.color == null || !ActivityBilling.isPro(context)
2019-06-28 13:08:04 +02:00
? colorAccent : message.color : textColorSecondary));
2019-07-07 09:25:52 +02:00
ivFlagged.setVisibility(flags && !message.folderReadOnly
2019-08-06 10:02:37 +02:00
? (message.uid == null ? View.INVISIBLE : View.VISIBLE)
2019-07-07 09:25:52 +02:00
: View.GONE);
2019-02-04 11:45:38 +00:00
}
private void bindContactInfo(ContactInfo info, TupleMessageEx message) {
if (info.hasPhoto()) {
2019-04-25 21:20:20 +02:00
ivAvatar.setImageBitmap(info.getPhotoBitmap());
ivAvatar.setVisibility(View.VISIBLE);
} else
ivAvatar.setVisibility(View.GONE);
2019-08-04 13:43:37 +02:00
//tvFrom.setText(info.getDisplayName(name_email));
}
private void bindExpanded(final TupleMessageEx message) {
DB db = DB.getInstance(context);
2019-05-04 12:49:25 +02:00
boolean show_addresses = !properties.getValue("addresses", message.id);
boolean show_headers = properties.getValue("headers", message.id);
if (compact) {
tvFrom.setSingleLine(false);
tvSubject.setSingleLine(false);
}
2019-06-05 08:42:46 +02:00
tvPreview.setVisibility(View.GONE);
2019-05-30 19:46:58 +02:00
ensureExpanded();
2019-05-17 18:54:44 +02:00
grpAddresses.setVisibility(View.VISIBLE);
2019-03-09 10:02:17 +00:00
boolean hasFrom = (message.from != null && message.from.length > 0);
2019-05-13 14:08:51 +02:00
boolean hasTo = (message.to != null && message.to.length > 0);
2019-03-09 10:02:17 +00:00
boolean hasChannel = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O);
2019-05-13 14:08:51 +02:00
ibSearchContact.setVisibility(show_addresses && (hasFrom || hasTo) ? View.VISIBLE : View.GONE);
2019-05-08 16:44:01 +02:00
ibNotifyContact.setVisibility(show_addresses && hasChannel && hasFrom ? View.VISIBLE : View.GONE);
ibAddContact.setVisibility(show_addresses && contacts && hasFrom ? View.VISIBLE : View.GONE);
grpHeaders.setVisibility(show_headers ? View.VISIBLE : View.GONE);
if (show_headers && message.headers == null) {
2019-03-16 13:12:31 +00:00
pbHeaders.setVisibility(suitable ? View.VISIBLE : View.GONE);
tvNoInternetHeaders.setVisibility(suitable ? View.GONE : View.VISIBLE);
2019-02-04 12:17:42 +00:00
} else {
pbHeaders.setVisibility(View.GONE);
tvNoInternetHeaders.setVisibility(View.GONE);
}
grpAttachments.setVisibility(message.attachments > 0 ? View.VISIBLE : View.GONE);
2019-05-17 18:54:44 +02:00
bnvActions.setVisibility(View.VISIBLE);
bnvActions.setTag(null);
for (int i = 0; i < bnvActions.getMenu().size(); i++)
bnvActions.getMenu().getItem(i).setVisible(false);
2019-05-04 12:49:25 +02:00
ibImages.setVisibility(View.INVISIBLE);
2019-05-30 20:32:29 +02:00
ibFull.setVisibility(hasWebView ? View.INVISIBLE : View.GONE);
2019-05-30 19:46:58 +02:00
if (textSize != 0)
tvBody.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
tvBody.setTextColor(contrast ? textColorPrimary : textColorSecondary);
tvBody.setTypeface(monospaced ? Typeface.MONOSPACE : Typeface.DEFAULT);
2019-05-30 20:32:29 +02:00
tvBody.setVisibility(View.INVISIBLE);
// Addresses
2019-04-28 10:44:07 +02:00
ivExpanderAddress.setImageLevel(show_addresses ? 0 /* less */ : 1 /* more */);
2019-08-04 13:43:37 +02:00
String from = MessageHelper.formatAddresses(message.senders);
2019-03-09 10:02:17 +00:00
String to = MessageHelper.formatAddresses(message.to);
String replyto = MessageHelper.formatAddresses(message.reply);
String cc = MessageHelper.formatAddresses(message.cc);
String bcc = MessageHelper.formatAddresses(message.bcc);
boolean self = false;
InternetAddress via = null;
if (message.identityEmail != null)
try {
via = new InternetAddress(message.identityEmail, message.identityName);
if (message.to != null) {
2019-05-12 18:22:41 +02:00
String v = MessageHelper.canonicalAddress(via.getAddress());
for (Address t : message.to) {
if (EntityFolder.isOutgoing(message.folderType) ||
v.equals(MessageHelper.canonicalAddress(((InternetAddress) t).getAddress()))) {
self = true;
break;
}
}
}
} catch (UnsupportedEncodingException ignored) {
}
2019-03-09 10:02:17 +00:00
tvFromExTitle.setVisibility(show_addresses && !TextUtils.isEmpty(from) ? View.VISIBLE : View.GONE);
tvFromEx.setVisibility(show_addresses && !TextUtils.isEmpty(from) ? View.VISIBLE : View.GONE);
tvFromEx.setText(from);
tvToTitle.setVisibility(show_addresses && !TextUtils.isEmpty(to) ? View.VISIBLE : View.GONE);
tvTo.setVisibility(show_addresses && !TextUtils.isEmpty(to) ? View.VISIBLE : View.GONE);
tvTo.setText(to);
tvToTitle.setTextColor(self ? textColorSecondary : colorWarning);
tvTo.setTextColor(self ? textColorSecondary : colorWarning);
2019-03-09 10:02:17 +00:00
tvReplyToTitle.setVisibility(show_addresses && !TextUtils.isEmpty(replyto) ? View.VISIBLE : View.GONE);
tvReplyTo.setVisibility(show_addresses && !TextUtils.isEmpty(replyto) ? View.VISIBLE : View.GONE);
tvReplyTo.setText(replyto);
tvCcTitle.setVisibility(show_addresses && !TextUtils.isEmpty(cc) ? View.VISIBLE : View.GONE);
tvCc.setVisibility(show_addresses && !TextUtils.isEmpty(cc) ? View.VISIBLE : View.GONE);
tvCc.setText(cc);
tvBccTitle.setVisibility(show_addresses && !TextUtils.isEmpty(bcc) ? View.VISIBLE : View.GONE);
tvBcc.setVisibility(show_addresses && !TextUtils.isEmpty(bcc) ? View.VISIBLE : View.GONE);
tvBcc.setText(bcc);
2019-03-31 08:35:31 +02:00
tvIdentityTitle.setVisibility(show_addresses && via != null ? View.VISIBLE : View.GONE);
tvIdentity.setVisibility(show_addresses && via != null ? View.VISIBLE : View.GONE);
2019-03-10 08:53:59 +00:00
tvIdentity.setText(via == null ? null : MessageHelper.formatAddresses(new Address[]{via}));
2019-03-09 10:02:17 +00:00
tvTimeExTitle.setVisibility(show_addresses ? View.VISIBLE : View.GONE);
tvTimeEx.setVisibility(show_addresses ? View.VISIBLE : View.GONE);
tvTimeEx.setText(DTF.format(message.received));
if (!message.duplicate)
tvSizeEx.setAlpha(message.content ? 1.0f : Helper.LOW_LIGHT);
2019-03-09 10:02:17 +00:00
tvSizeExTitle.setVisibility(!show_addresses || message.size == null ? View.GONE : View.VISIBLE);
tvSizeEx.setVisibility(!show_addresses || message.size == null ? View.GONE : View.VISIBLE);
tvSizeEx.setText(message.size == null ? null : Helper.humanReadableByteCount(message.size, true));
2019-03-09 10:02:17 +00:00
tvSubjectEx.setVisibility(show_addresses ? View.VISIBLE : View.GONE);
tvSubjectEx.setText(message.subject);
if (subject_italic)
tvSubjectEx.setTypeface(Typeface.DEFAULT, Typeface.ITALIC);
else
tvSubjectEx.setTypeface(Typeface.DEFAULT);
// Flags
2019-03-09 10:02:17 +00:00
tvFlags.setVisibility(show_addresses && debug ? View.VISIBLE : View.GONE);
tvFlags.setText(message.flags);
// Keywords
2019-03-09 10:02:17 +00:00
tvKeywords.setVisibility(show_addresses && message.keywords.length > 0 ? View.VISIBLE : View.GONE);
tvKeywords.setText(TextUtils.join(" ", message.keywords));
// Headers
if (show_headers && message.headers != null) {
SpannableStringBuilder ssb = new SpannableStringBuilder(message.headers);
int index = 0;
for (String line : message.headers.split("\n")) {
if (line.length() > 0 && !Character.isWhitespace(line.charAt(0))) {
int colon = line.indexOf(':');
if (colon > 0)
2019-07-13 21:14:49 +02:00
ssb.setSpan(new ForegroundColorSpan(colorAccent), index, index + colon, 0);
}
index += line.length() + 1;
}
tvHeaders.setText(ssb);
} else
tvHeaders.setText(null);
// Attachments
2019-04-04 14:47:56 +02:00
bindAttachments(message, properties.getAttachments(message.id));
2019-04-13 08:02:01 +02:00
cowner.recreate();
cowner.start();
2019-03-17 20:31:24 +00:00
db.attachment().liveAttachments(message.id).observe(cowner, new Observer<List<EntityAttachment>>() {
@Override
public void onChanged(@Nullable List<EntityAttachment> attachments) {
2019-02-04 12:17:42 +00:00
bindAttachments(message, attachments);
2019-05-31 08:14:06 +02:00
loadText(message);
}
2019-03-17 20:31:24 +00:00
});
// Setup actions
Bundle sargs = new Bundle();
sargs.putLong("id", message.id);
sargs.putLong("account", message.account);
new SimpleTask<List<EntityFolder>>() {
@Override
protected List<EntityFolder> onExecute(Context context, Bundle args) {
long account = args.getLong("account");
return DB.getInstance(context).folder().getSystemFolders(account);
}
@Override
protected void onExecuted(Bundle args, List<EntityFolder> folders) {
long id = args.getLong("id");
TupleMessageEx amessage = getMessage();
if (amessage == null || !amessage.id.equals(id))
return;
boolean hasArchive = false;
boolean hasTrash = false;
boolean hasJunk = false;
if (folders != null)
for (EntityFolder folder : folders) {
if (EntityFolder.ARCHIVE.equals(folder.type))
hasArchive = true;
else if (EntityFolder.TRASH.equals(folder.type))
hasTrash = true;
else if (EntityFolder.JUNK.equals(folder.type))
hasJunk = true;
}
boolean inOutbox = EntityFolder.OUTBOX.equals(message.folderType);
boolean inArchive = EntityFolder.ARCHIVE.equals(message.folderType);
boolean inTrash = EntityFolder.TRASH.equals(message.folderType);
2019-05-25 17:37:01 +02:00
boolean inJunk = EntityFolder.JUNK.equals(message.folderType);
ActionData data = new ActionData();
data.hasJunk = hasJunk;
2019-06-09 18:45:33 +02:00
data.delete = (inTrash || !hasTrash || inOutbox);
data.message = message;
bnvActions.setTag(data);
bnvActions.getMenu().findItem(R.id.action_more).setVisible(!inOutbox);
2019-07-07 09:25:52 +02:00
if (!message.folderReadOnly) {
bnvActions.getMenu().findItem(R.id.action_delete).setVisible(debug ||
(inTrash && (message.uid != null || message.msgid != null)) ||
(!inTrash && hasTrash && message.uid != null));
bnvActions.getMenu().findItem(R.id.action_delete).setTitle(
data.delete ? R.string.title_delete : R.string.title_trash);
bnvActions.getMenu().findItem(R.id.action_move).setVisible(
message.uid != null || inOutbox);
bnvActions.getMenu().findItem(R.id.action_move).setTitle(
inOutbox ? R.string.title_folder_drafts : R.string.title_move);
bnvActions.getMenu().findItem(R.id.action_move).setIcon(
inOutbox ? R.drawable.baseline_drafts_24 : R.drawable.baseline_folder_24);
bnvActions.getMenu().findItem(R.id.action_archive).setVisible(
message.uid != null && (inJunk || (!inArchive && hasArchive)));
bnvActions.getMenu().findItem(R.id.action_archive).setTitle(
inJunk ? R.string.title_folder_inbox : R.string.title_archive);
bnvActions.getMenu().findItem(R.id.action_archive).setIcon(
inJunk ? R.drawable.baseline_inbox_24 : R.drawable.baseline_archive_24);
}
2019-05-25 17:37:01 +02:00
bnvActions.getMenu().findItem(R.id.action_reply).setEnabled(message.content);
bnvActions.getMenu().findItem(R.id.action_reply).setVisible(!inOutbox);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
}
}.execute(context, owner, sargs, "message:actions");
// Message text
pbBody.setVisibility(suitable || message.content ? View.VISIBLE : View.GONE);
2019-03-16 13:12:31 +00:00
tvNoInternetBody.setVisibility(suitable || message.content ? View.GONE : View.VISIBLE);
2019-05-30 20:32:29 +02:00
Spanned body = properties.getBody(message.id);
tvBody.setText(body);
tvBody.setMovementMethod(null);
tvBody.setVisibility(View.VISIBLE);
2019-02-10 14:13:23 +00:00
2019-05-31 08:14:06 +02:00
loadText(message);
}
2019-02-04 12:17:42 +00:00
private void bindAttachments(final TupleMessageEx message, @Nullable List<EntityAttachment> attachments) {
if (attachments == null)
attachments = new ArrayList<>();
2019-04-04 14:47:56 +02:00
properties.setAttchments(message.id, attachments);
2019-02-04 12:17:42 +00:00
boolean show_inline = properties.getValue("inline", message.id);
Log.i("Show inline=" + show_inline);
2019-02-17 12:05:58 +00:00
boolean has_inline = false;
2019-07-06 18:59:25 +02:00
boolean is_encrypted = false;
2019-02-04 12:17:42 +00:00
boolean download = false;
boolean save = (attachments.size() > 1);
boolean downloading = false;
2019-05-18 11:19:39 +02:00
boolean calendar = false;
2019-02-04 12:17:42 +00:00
List<EntityAttachment> a = new ArrayList<>();
for (EntityAttachment attachment : attachments) {
2019-07-08 12:37:24 +02:00
boolean inline = (attachment.isInline() && attachment.isImage());
2019-02-17 12:05:58 +00:00
if (inline)
has_inline = true;
2019-07-06 18:59:25 +02:00
if (Objects.equals(attachment.encryption, EntityAttachment.PGP_MESSAGE))
is_encrypted = true;
2019-02-04 12:17:42 +00:00
if (attachment.progress == null && !attachment.available)
download = true;
if (!attachment.available)
save = false;
if (attachment.progress != null)
downloading = true;
2019-02-17 12:05:58 +00:00
if (show_inline || !inline)
2019-02-04 12:17:42 +00:00
a.add(attachment);
2019-05-18 11:19:39 +02:00
2019-05-18 19:44:21 +02:00
if (attachment.available && "text/calendar".equals(attachment.type)) {
2019-05-18 11:19:39 +02:00
calendar = true;
2019-07-22 09:30:58 +02:00
bindCalendar(message, attachment);
2019-05-18 11:19:39 +02:00
}
2019-02-04 12:17:42 +00:00
}
adapterAttachment.set(a);
2019-05-18 11:19:39 +02:00
if (!calendar) {
tvCalendarSummary.setVisibility(View.GONE);
tvCalendarStart.setVisibility(View.GONE);
tvCalendarEnd.setVisibility(View.GONE);
tvAttendees.setVisibility(View.GONE);
pbCalendarWait.setVisibility(View.GONE);
grpCalendar.setVisibility(View.GONE);
2019-05-18 19:44:21 +02:00
grpCalendarResponse.setVisibility(View.GONE);
2019-05-18 11:19:39 +02:00
}
2019-02-04 12:17:42 +00:00
cbInline.setOnCheckedChangeListener(null);
cbInline.setChecked(show_inline);
2019-02-17 12:05:58 +00:00
cbInline.setVisibility(has_inline ? View.VISIBLE : View.GONE);
2019-07-06 18:59:25 +02:00
ibDecrypt.setVisibility(is_encrypted ? View.VISIBLE : View.GONE);
2019-03-16 13:12:31 +00:00
btnDownloadAttachments.setVisibility(download && suitable ? View.VISIBLE : View.GONE);
2019-02-04 12:17:42 +00:00
btnSaveAttachments.setVisibility(save ? View.VISIBLE : View.GONE);
2019-03-16 13:12:31 +00:00
tvNoInternetAttachments.setVisibility(downloading && !suitable ? View.VISIBLE : View.GONE);
2019-02-04 12:17:42 +00:00
cbInline.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
properties.setValue("inline", message.id, isChecked);
2019-03-17 20:31:24 +00:00
cowner.restart();
DB.getInstance(context).attachment().liveAttachments(message.id).observe(cowner, new Observer<List<EntityAttachment>>() {
@Override
public void onChanged(@Nullable List<EntityAttachment> attachments) {
bindAttachments(message, attachments);
}
});
2019-02-04 12:17:42 +00:00
}
});
List<EntityAttachment> images = new ArrayList<>();
for (EntityAttachment attachment : attachments)
2019-05-06 07:36:44 +02:00
if (!attachment.isInline() && attachment.isImage())
2019-02-04 12:17:42 +00:00
images.add(attachment);
adapterImage.set(images);
2019-05-14 19:21:11 +02:00
grpImages.setVisibility(images.size() > 0 ? View.VISIBLE : View.GONE);
2019-02-04 12:17:42 +00:00
}
2019-07-22 09:30:58 +02:00
private void bindCalendar(final TupleMessageEx message, EntityAttachment attachment) {
// https://tools.ietf.org/html/rfc5546
Bundle args = new Bundle();
args.putLong("id", message.id);
args.putSerializable("file", attachment.getFile(context));
new SimpleTask<ICalendar>() {
@Override
protected void onPreExecute(Bundle args) {
grpCalendar.setVisibility(View.VISIBLE);
pbCalendarWait.setVisibility(View.VISIBLE);
}
@Override
protected void onPostExecute(Bundle args) {
pbCalendarWait.setVisibility(View.GONE);
}
@Override
protected ICalendar onExecute(Context context, Bundle args) throws IOException {
File file = (File) args.getSerializable("file");
return Biweekly.parse(file).first();
}
@Override
protected void onExecuted(Bundle args, ICalendar icalendar) {
long id = args.getLong("id");
TupleMessageEx amessage = getMessage();
if (amessage == null || !amessage.id.equals(id))
return;
if (icalendar == null ||
icalendar.getMethod() == null ||
icalendar.getEvents().size() == 0) {
tvCalendarSummary.setVisibility(View.GONE);
tvCalendarStart.setVisibility(View.GONE);
tvCalendarEnd.setVisibility(View.GONE);
tvAttendees.setVisibility(View.GONE);
pbCalendarWait.setVisibility(View.GONE);
grpCalendar.setVisibility(View.GONE);
grpCalendarResponse.setVisibility(View.GONE);
return;
}
DateFormat DTF = Helper.getDateTimeInstance(context);
VEvent event = icalendar.getEvents().get(0);
Summary summary = event.getSummary();
ICalDate start = event.getDateStart() == null ? null : event.getDateStart().getValue();
ICalDate end = event.getDateEnd() == null ? null : event.getDateEnd().getValue();
List<String> attendee = new ArrayList<>();
for (Attendee a : event.getAttendees()) {
String email = a.getEmail();
String name = a.getCommonName();
if (TextUtils.isEmpty(name)) {
if (!TextUtils.isEmpty(email))
attendee.add(email);
} else {
if (TextUtils.isEmpty(email) || name.equals(email))
attendee.add(name);
else
attendee.add(name + " (" + email + ")");
}
}
Organizer organizer = event.getOrganizer();
tvCalendarSummary.setText(summary == null ? null : summary.getValue());
tvCalendarSummary.setVisibility(summary == null ? View.GONE : View.VISIBLE);
tvCalendarStart.setText(start == null ? null : DTF.format(start.getTime()));
tvCalendarStart.setVisibility(start == null ? View.GONE : View.VISIBLE);
tvCalendarEnd.setText(end == null ? null : DTF.format(end.getTime()));
tvCalendarEnd.setVisibility(end == null ? View.GONE : View.VISIBLE);
tvAttendees.setText(TextUtils.join(", ", attendee));
tvAttendees.setVisibility(attendee.size() == 0 ? View.GONE : View.VISIBLE);
boolean canRespond =
(icalendar.getMethod().isRequest() &&
organizer != null && organizer.getEmail() != null &&
message.to != null && message.to.length > 0);
grpCalendarResponse.setVisibility(canRespond ? View.VISIBLE : View.GONE);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
}
}.execute(context, owner, args, "message:calendar");
}
2019-05-18 19:44:21 +02:00
private void onActionCalendar(TupleMessageEx message, int action) {
2019-08-13 10:27:17 +02:00
if (!ActivityBilling.isPro(context)) {
context.startActivity(new Intent(context, ActivityBilling.class));
2019-05-25 16:12:53 +02:00
return;
}
2019-05-18 19:44:21 +02:00
Bundle args = new Bundle();
args.putLong("id", message.id);
args.putInt("action", action);
new SimpleTask<File>() {
@Override
protected File onExecute(Context context, Bundle args) throws Throwable {
long id = args.getLong("id");
int action = args.getInt("action");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
List<EntityAttachment> attachments = db.attachment().getAttachments(id);
for (EntityAttachment attachment : attachments)
if (attachment.available && "text/calendar".equals(attachment.type)) {
File file = attachment.getFile(context);
ICalendar icalendar = Biweekly.parse(file).first();
VEvent event = icalendar.getEvents().get(0);
// https://tools.ietf.org/html/rfc5546#section-4.2.2
VEvent ev = new VEvent();
ev.setOrganizer(event.getOrganizer());
ev.setUid(event.getUid());
if (event.getSequence() != null)
ev.setSequence(event.getSequence());
if (event.getDateStart() != null)
ev.setDateStart(event.getDateStart());
if (event.getDateEnd() != null)
ev.setDateEnd(event.getDateEnd());
2019-05-18 19:44:21 +02:00
InternetAddress to = (InternetAddress) message.to[0];
Attendee attendee = new Attendee(to.getPersonal(), to.getAddress());
switch (action) {
case R.id.btnCalendarAccept:
attendee.setParticipationStatus(ParticipationStatus.ACCEPTED);
break;
case R.id.btnCalendarDecline:
attendee.setParticipationStatus(ParticipationStatus.DECLINED);
break;
case R.id.btnCalendarMaybe:
attendee.setParticipationStatus(ParticipationStatus.TENTATIVE);
break;
}
ev.addAttendee(attendee);
// https://icalendar.org/validator.html
2019-05-18 19:44:21 +02:00
ICalendar response = new ICalendar();
response.setMethod(Method.REPLY);
response.addEvent(ev);
2019-08-03 13:31:18 +02:00
File ics = File.createTempFile("calendar", ".ics", context.getCacheDir());
2019-05-18 19:44:21 +02:00
response.write(ics);
return ics;
}
return null;
}
@Override
protected void onExecuted(Bundle args, File ics) {
Intent reply = new Intent(context, ActivityCompose.class)
.putExtra("action", "participation")
.putExtra("reference", args.getLong("id"))
.putExtra("ics", ics);
context.startActivity(reply);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-05-18 19:44:21 +02:00
}
}.execute(context, owner, args, "message:participation");
}
2019-02-01 09:29:26 +00:00
private TupleMessageEx getMessage() {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
2019-02-01 09:29:26 +00:00
return null;
return differ.getItem(pos);
}
2018-10-15 10:05:42 +00:00
2019-06-26 12:58:36 +02:00
private boolean firstClick = false;
2019-02-01 09:29:26 +00:00
@Override
public void onClick(View view) {
2019-06-26 12:58:36 +02:00
final TupleMessageEx message = getMessage();
2019-01-26 10:09:40 +00:00
if (message == null)
return;
2018-08-02 13:33:06 +00:00
2019-07-10 19:00:25 +02:00
if (view.getId() == R.id.ivSnoozed)
2019-01-07 15:05:24 +00:00
onShowSnoozed(message);
else if (view.getId() == R.id.ivFlagged)
2018-12-04 17:08:36 +01:00
onToggleFlag(message);
2019-05-08 16:44:01 +02:00
else if (view.getId() == R.id.ibSearchContact)
2019-01-27 13:50:21 +00:00
onSearchContact(message);
2019-05-08 16:44:01 +02:00
else if (view.getId() == R.id.ibNotifyContact)
2019-03-07 12:29:03 +00:00
onNotifyContact(message);
2019-05-08 16:44:01 +02:00
else if (view.getId() == R.id.ibAddContact)
2018-10-15 10:05:42 +00:00
onAddContact(message);
else if (viewType == ViewType.THREAD) {
2019-05-18 19:44:21 +02:00
switch (view.getId()) {
case R.id.ivExpanderAddress:
onToggleAddresses(message);
break;
case R.id.btnDownloadAttachments:
onDownloadAttachments(message);
break;
case R.id.btnSaveAttachments:
onSaveAttachments(message);
break;
2019-07-10 19:00:25 +02:00
case R.id.ibDecrypt:
onMenuDecrypt(message);
break;
2019-05-18 19:44:21 +02:00
case R.id.ibImages:
onShowImages(message);
break;
case R.id.ibFull:
onShowFull(message);
break;
case R.id.btnCalendarAccept:
case R.id.btnCalendarDecline:
case R.id.btnCalendarMaybe:
onActionCalendar(message, view.getId());
break;
default:
onToggleMessage(message);
}
2018-10-15 10:05:42 +00:00
} else {
2019-03-08 10:27:33 +00:00
vwRipple.setPressed(true);
vwRipple.setPressed(false);
2019-02-05 10:28:38 +00:00
if (EntityFolder.DRAFTS.equals(message.folderType) && message.visible == 1)
2018-10-15 10:05:42 +00:00
context.startActivity(
new Intent(context, ActivityCompose.class)
.putExtra("action", "edit")
.putExtra("id", message.id));
else {
2019-06-26 13:55:35 +02:00
final LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
final Intent viewThread = new Intent(ActivityView.ACTION_VIEW_THREAD)
.putExtra("account", message.account)
.putExtra("thread", message.thread)
.putExtra("id", message.id)
.putExtra("found", viewType == ViewType.SEARCH);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean doubletap = prefs.getBoolean("doubletap", false);
2019-07-07 09:25:52 +02:00
if (!doubletap || message.folderReadOnly || EntityFolder.OUTBOX.equals(message.folderType)) {
2019-06-26 13:55:35 +02:00
lbm.sendBroadcast(viewThread);
return;
}
2019-06-26 12:58:36 +02:00
firstClick = !firstClick;
if (firstClick) {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if (firstClick) {
firstClick = false;
2019-06-26 13:55:35 +02:00
lbm.sendBroadcast(viewThread);
2019-06-26 12:58:36 +02:00
}
}
}, ViewConfiguration.getDoubleTapTimeout());
} else {
Bundle args = new Bundle();
args.putLong("id", message.id);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message != null) {
2019-07-25 15:38:14 +02:00
List<EntityMessage> messages = db.message().getMessagesByThread(
message.account, message.thread, threading ? null : id, null);
for (EntityMessage threaded : messages)
if (threaded.ui_seen == message.ui_seen)
EntityOperation.queue(context, threaded, EntityOperation.SEEN, !message.ui_seen);
}
2019-06-26 12:58:36 +02:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-06-26 12:58:36 +02:00
}
}.execute(context, owner, args, "message:seen");
}
2018-10-15 10:05:42 +00:00
}
}
}
2019-06-28 18:43:36 +02:00
@Override
public boolean onLongClick(View view) {
final TupleMessageEx message = getMessage();
2019-07-07 09:25:52 +02:00
if (message == null || message.folderReadOnly)
2019-06-28 18:43:36 +02:00
return false;
if (view.getId() == R.id.ivFlagged) {
onMenuColoredStar(message);
return true;
}
return false;
}
2019-08-10 10:42:28 +02:00
@Override
public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {
if (keyEvent.getAction() == KeyEvent.ACTION_DOWN &&
(keyCode == KeyEvent.KEYCODE_ENTER ||
keyCode == KeyEvent.KEYCODE_DPAD_CENTER ||
keyCode == KeyEvent.KEYCODE_BUTTON_A)) {
onClick(view);
return true;
} else
return false;
}
2019-01-07 17:50:23 +00:00
private void onShowSnoozed(TupleMessageEx message) {
if (message.ui_snoozed != null) {
2019-07-15 21:28:25 +02:00
DateFormat DTF = Helper.getDateTimeInstance(context, SimpleDateFormat.MEDIUM, SimpleDateFormat.SHORT);
DateFormat D = new SimpleDateFormat("E");
2019-06-24 09:49:45 +02:00
Snackbar.make(
2019-06-30 16:55:15 +02:00
parentFragment.getView(),
2019-08-09 18:42:36 +02:00
D.format(message.ui_snoozed) + " " + DTF.format(message.ui_snoozed) + " - " +
DateUtils.getRelativeTimeSpanString(
message.ui_snoozed,
System.currentTimeMillis(),
DateUtils.MINUTE_IN_MILLIS,
DateUtils.FORMAT_ABBREV_RELATIVE),
2019-06-19 10:55:11 +02:00
Snackbar.LENGTH_LONG).show();
}
2019-01-07 17:50:23 +00:00
}
private void onToggleFlag(TupleMessageEx message) {
2019-03-30 08:05:51 +00:00
int flagged = (message.count - message.unflagged);
Log.i("Set message id=" + message.id + " flagged=" + flagged);
2019-01-30 07:50:20 +00:00
2019-01-07 17:50:23 +00:00
Bundle args = new Bundle();
args.putLong("id", message.id);
2019-03-30 08:05:51 +00:00
args.putBoolean("flagged", flagged == 0);
2019-01-07 17:50:23 +00:00
args.putBoolean("thread", viewType != ViewType.THREAD);
2019-01-30 07:50:20 +00:00
message.unflagged = message.ui_flagged ? message.count : 0;
message.ui_flagged = !message.ui_flagged;
bindFlagged(message);
2019-01-07 17:50:23 +00:00
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
boolean flagged = args.getBoolean("flagged");
boolean thread = args.getBoolean("thread");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
2019-07-25 15:38:14 +02:00
List<EntityMessage> messages = db.message().getMessagesByThread(
2019-03-30 08:05:51 +00:00
message.account, message.thread, threading && thread ? null : id, null);
2019-01-07 17:50:23 +00:00
for (EntityMessage threaded : messages)
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, threaded, EntityOperation.FLAG, flagged);
2019-01-07 17:50:23 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-01-07 17:50:23 +00:00
}
}.execute(context, owner, args, "message:flag");
}
2019-01-27 13:50:21 +00:00
private void onSearchContact(TupleMessageEx message) {
2019-01-27 14:38:53 +00:00
Bundle args = new Bundle();
args.putLong("id", message.id);
new SimpleTask<Address[]>() {
@Override
protected Address[] onExecute(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
EntityFolder folder = db.folder().getFolder(message.folder);
boolean outgoing;
if (message.identity == null || message.from == null || message.from.length == 0)
outgoing = EntityFolder.isOutgoing(folder.type);
else {
String from = ((InternetAddress) message.from[0]).getAddress();
EntityIdentity identity = db.identity().getIdentity(message.identity);
2019-05-13 13:38:27 +02:00
outgoing = MessageHelper.canonicalAddress(identity.email).equals(MessageHelper.canonicalAddress(from));
2019-01-27 14:38:53 +00:00
}
2019-05-13 13:38:27 +02:00
return (outgoing ? message.to : message.from);
2019-01-27 14:38:53 +00:00
}
@Override
protected void onExecuted(Bundle args, Address[] addresses) {
2019-05-13 14:08:51 +02:00
String query = ((InternetAddress) addresses[0]).getAddress();
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_SEARCH)
.putExtra("folder", -1L)
.putExtra("query", query));
2019-01-27 14:38:53 +00:00
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-01-27 14:38:53 +00:00
}
}.execute(context, owner, args, "message:search");
2019-01-27 13:50:21 +00:00
}
2019-03-07 12:29:03 +00:00
@TargetApi(Build.VERSION_CODES.O)
private void onNotifyContact(final TupleMessageEx message) {
final NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
final InternetAddress from = (InternetAddress) message.from[0];
final String channelId = "notification." + from.getAddress().toLowerCase();
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, ibAddContact);
NotificationChannel channel = nm.getNotificationChannel(channelId);
if (channel == null)
popupMenu.getMenu().add(Menu.NONE, R.string.title_create_channel, 1, R.string.title_create_channel);
else {
popupMenu.getMenu().add(Menu.NONE, R.string.title_edit_channel, 2, R.string.title_edit_channel);
popupMenu.getMenu().add(Menu.NONE, R.string.title_delete_channel, 3, R.string.title_delete_channel);
}
2019-03-07 12:29:03 +00:00
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem item) {
switch (item.getItemId()) {
case R.string.title_create_channel:
onActionCreateChannel();
return true;
case R.string.title_edit_channel:
onActionEditChannel();
return true;
case R.string.title_delete_channel:
onActionDeleteChannel();
return true;
default:
return false;
}
}
@TargetApi(Build.VERSION_CODES.O)
private void onActionCreateChannel() {
2019-08-13 10:27:17 +02:00
if (!ActivityBilling.isPro(context)) {
context.startActivity(new Intent(context, ActivityBilling.class));
2019-05-16 11:10:01 +02:00
return;
}
NotificationChannel channel = new NotificationChannel(
channelId, from.getAddress(),
NotificationManager.IMPORTANCE_HIGH);
channel.setGroup("contacts");
channel.setDescription(from.getPersonal());
channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
channel.enableLights(true);
nm.createNotificationChannel(channel);
onActionEditChannel();
}
private void onActionEditChannel() {
Intent intent = new Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS)
.putExtra(Settings.EXTRA_APP_PACKAGE, context.getPackageName())
.putExtra(Settings.EXTRA_CHANNEL_ID, channelId);
context.startActivity(intent);
}
private void onActionDeleteChannel() {
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
nm.deleteNotificationChannel(channelId);
}
});
popupMenu.show();
}
2018-11-13 10:22:41 +01:00
private void onAddContact(TupleMessageEx message) {
2018-10-15 10:05:42 +00:00
for (Address address : message.from) {
InternetAddress ia = (InternetAddress) address;
String name = ia.getPersonal();
String email = ia.getAddress();
// https://developer.android.com/training/contacts-provider/modify-data
Intent edit = new Intent();
if (!TextUtils.isEmpty(name))
edit.putExtra(ContactsContract.Intents.Insert.NAME, name);
if (!TextUtils.isEmpty(email))
edit.putExtra(ContactsContract.Intents.Insert.EMAIL, email);
2019-02-22 16:59:23 +01:00
ContentResolver resolver = context.getContentResolver();
try (Cursor cursor = resolver.query(ContactsContract.CommonDataKinds.Email.CONTENT_URI,
new String[]{
ContactsContract.CommonDataKinds.Photo.CONTACT_ID,
ContactsContract.Contacts.LOOKUP_KEY
},
ContactsContract.CommonDataKinds.Email.ADDRESS + " = ?",
new String[]{email}, null)) {
2018-12-24 10:51:32 +00:00
if (cursor != null && cursor.moveToNext()) {
2018-10-15 10:05:42 +00:00
int colContactId = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Photo.CONTACT_ID);
int colLookupKey = cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY);
long contactId = cursor.getLong(colContactId);
String lookupKey = cursor.getString(colLookupKey);
Uri lookupUri = ContactsContract.Contacts.getLookupUri(contactId, lookupKey);
edit.setAction(Intent.ACTION_EDIT);
edit.setDataAndType(lookupUri, ContactsContract.Contacts.CONTENT_ITEM_TYPE);
} else {
edit.setAction(Intent.ACTION_INSERT);
edit.setType(ContactsContract.Contacts.CONTENT_TYPE);
}
}
2019-01-23 19:32:37 +00:00
PackageManager pm = context.getPackageManager();
if (edit.resolveActivity(pm) == null)
2019-06-30 16:55:15 +02:00
Snackbar.make(parentFragment.getView(),
R.string.title_no_contacts, Snackbar.LENGTH_LONG).show();
2019-01-23 19:32:37 +00:00
else
context.startActivity(edit);
2018-10-15 10:05:42 +00:00
}
}
2019-02-01 09:29:26 +00:00
private void onToggleMessage(TupleMessageEx message) {
2018-11-13 10:22:41 +01:00
if (EntityFolder.DRAFTS.equals(message.folderType))
context.startActivity(
new Intent(context, ActivityCompose.class)
.putExtra("action", "edit")
.putExtra("id", message.id));
else {
2018-12-21 08:32:26 +01:00
boolean expanded = !properties.getValue("expanded", message.id);
properties.setValue("expanded", message.id, expanded);
2018-12-22 09:06:33 +01:00
2019-04-28 10:44:07 +02:00
ivExpander.setImageLevel(expanded ? 0 /* less*/ : 1 /* more */);
2019-04-17 09:38:24 +02:00
2019-04-17 09:19:56 +02:00
if (expanded) {
bindExpanded(message);
2019-04-27 10:40:06 +02:00
properties.scrollTo(getAdapterPosition());
2019-04-17 09:19:56 +02:00
} else
2019-06-05 07:59:34 +02:00
clearExpanded(message);
2018-11-13 10:22:41 +01:00
}
2018-11-04 16:16:45 +00:00
}
2019-02-01 09:29:26 +00:00
private void onToggleAddresses(TupleMessageEx message) {
2018-12-21 08:32:26 +01:00
boolean addresses = !properties.getValue("addresses", message.id);
properties.setValue("addresses", message.id, addresses);
2019-04-17 09:19:56 +02:00
bindExpanded(message);
2018-11-04 16:16:45 +00:00
}
2019-01-05 14:56:19 +00:00
private void onDownloadAttachments(final TupleMessageEx message) {
Bundle args = new Bundle();
args.putLong("id", message.id);
new SimpleTask<Void>() {
@Override
2019-03-02 08:48:02 +00:00
protected Void onExecute(Context context, Bundle args) {
2019-01-05 14:56:19 +00:00
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage msg = db.message().getMessage(id);
2019-03-02 08:48:02 +00:00
if (msg != null)
2019-01-05 14:56:19 +00:00
for (EntityAttachment attachment : db.attachment().getAttachments(message.id))
if (attachment.progress == null && !attachment.available) {
db.attachment().setProgress(attachment.id, 0);
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, msg, EntityOperation.ATTACHMENT, attachment.id);
2019-01-05 14:56:19 +00:00
}
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-01-05 14:56:19 +00:00
}
2019-01-07 10:17:27 +00:00
}.execute(context, owner, args, "message:attachment:download");
2019-01-05 14:56:19 +00:00
}
private void onSaveAttachments(TupleMessageEx message) {
2019-01-05 12:00:36 +00:00
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
2019-06-19 11:51:15 +02:00
new Intent(FragmentMessages.ACTION_STORE_ATTACHMENTS)
2019-01-05 12:00:36 +00:00
.putExtra("id", message.id));
}
2019-05-30 20:32:29 +02:00
private void onShowFull(final TupleMessageEx message) {
boolean show_images = properties.getValue("images", message.id);
2019-05-21 18:06:06 +02:00
Bundle args = new Bundle();
args.putLong("id", message.id);
args.putBoolean("show_images", show_images);
args.putFloat("text_size", textSize);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
if (properties.getValue("confirmed", message.id) ||
prefs.getBoolean("show_html_confirmed", false)) {
FragmentDialogWebView fragment = new FragmentDialogWebView();
fragment.setArguments(args);
fragment.show(parentFragment.getFragmentManager(), "message:full");
} else {
FragmentDialogFull fragment = new FragmentDialogFull();
fragment.setArguments(args);
fragment.setTargetFragment(parentFragment, FragmentMessages.REQUEST_MESSAGE_PROPERTY);
fragment.show(parentFragment.getFragmentManager(), "message:full:confirm");
}
}
2018-11-13 10:22:41 +01:00
private void onShowImages(final TupleMessageEx message) {
2019-01-30 08:47:54 +00:00
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
if (prefs.getBoolean("show_images_confirmed", false)) {
onShowImagesConfirmed(message);
2019-01-30 08:47:54 +00:00
return;
}
final View dview = LayoutInflater.from(context).inflate(R.layout.dialog_ask_again, null);
final TextView tvMessage = dview.findViewById(R.id.tvMessage);
final CheckBox cbNotAgain = dview.findViewById(R.id.cbNotAgain);
tvMessage.setText(context.getText(R.string.title_ask_show_image));
2019-07-01 19:54:37 +02:00
// TODO: dialog fragment
final Dialog dialog = new AlertDialog.Builder(context)
2019-01-30 08:47:54 +00:00
.setView(dview)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if (cbNotAgain.isChecked())
prefs.edit().putBoolean("show_images_confirmed", true).apply();
onShowImagesConfirmed(message);
}
})
.setNegativeButton(android.R.string.cancel, null)
.create();
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_CREATE)
public void onCreate() {
dialog.show();
}
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
dialog.dismiss();
}
});
}
2018-10-15 10:05:42 +00:00
private void onShowImagesConfirmed(final TupleMessageEx message) {
2018-12-21 08:32:26 +01:00
properties.setValue("images", message.id, true);
2019-05-04 11:16:33 +02:00
ibImages.setVisibility(View.GONE);
2019-03-28 07:14:45 +00:00
2019-05-31 08:14:06 +02:00
loadText(message);
// Download inline images
2019-05-04 11:16:33 +02:00
Bundle args = new Bundle();
args.putSerializable("message", message);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
List<EntityAttachment> attachments = db.attachment().getAttachments(message.id);
for (EntityAttachment attachment : attachments)
if (!attachment.available && !TextUtils.isEmpty(attachment.cid))
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, message, EntityOperation.ATTACHMENT, attachment.id);
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
}
}.execute(context, owner, args, "show:images");
2018-10-15 10:05:42 +00:00
}
2019-05-31 08:14:06 +02:00
private void loadText(TupleMessageEx message) {
2019-05-04 11:16:33 +02:00
if (message.content) {
boolean show_images = properties.getValue("images", message.id);
boolean show_quotes = (properties.getValue("quotes", message.id) || !collapse_quotes);
2019-05-04 11:16:33 +02:00
Bundle args = new Bundle();
args.putSerializable("message", message);
args.putBoolean("show_images", show_images);
args.putBoolean("show_quotes", show_quotes);
2019-05-04 11:16:33 +02:00
args.putInt("zoom", zoom);
2019-06-13 11:59:35 +02:00
bodyTask.setCount(false).execute(context, owner, args, "message:body");
2019-05-04 11:16:33 +02:00
}
}
2018-12-21 18:21:35 +01:00
private SimpleTask<SpannableStringBuilder> bodyTask = new SimpleTask<SpannableStringBuilder>() {
2018-12-21 08:49:31 +01:00
@Override
2019-05-04 11:16:33 +02:00
protected SpannableStringBuilder onExecute(final Context context, final Bundle args) throws IOException {
2019-05-03 13:08:20 +02:00
final TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
final boolean show_images = args.getBoolean("show_images");
2019-05-02 13:29:05 +02:00
boolean show_quotes = args.getBoolean("show_quotes");
2019-05-03 08:42:44 +02:00
int zoom = args.getInt("zoom");
2019-02-06 18:40:12 +00:00
2019-05-13 22:14:21 +02:00
if (message == null || !message.content)
return null;
File file = message.getFile(context);
if (!file.exists())
return null;
String body = Helper.readText(file);
2018-12-20 21:12:28 +01:00
if (!show_quotes) {
Document document = Jsoup.parse(body);
for (Element quote : document.select("blockquote"))
quote.html("&#8230;");
body = document.html();
}
String html = HtmlHelper.sanitize(context, body, show_images);
2019-05-03 13:08:20 +02:00
if (debug)
html += "<pre>" + Html.escapeHtml(html) + "</pre>";
2018-12-20 21:12:28 +01:00
2019-05-03 13:08:20 +02:00
Spanned spanned = HtmlHelper.fromHtml(html, new Html.ImageGetter() {
@Override
public Drawable getDrawable(String source) {
2019-07-15 12:17:01 +02:00
return HtmlHelper.decodeImage(context, message.id, source, show_images, tvBody);
2019-05-03 13:08:20 +02:00
}
}, null);
SpannableStringBuilder builder = new SpannableStringBuilder(spanned);
2019-01-08 12:29:05 +00:00
QuoteSpan[] quoteSpans = builder.getSpans(0, builder.length(), QuoteSpan.class);
for (QuoteSpan quoteSpan : quoteSpans) {
2018-12-20 21:12:28 +01:00
builder.setSpan(
2019-01-08 12:29:05 +00:00
new StyledQuoteSpan(colorPrimary),
builder.getSpanStart(quoteSpan),
builder.getSpanEnd(quoteSpan),
builder.getSpanFlags(quoteSpan));
builder.removeSpan(quoteSpan);
2018-12-20 21:12:28 +01:00
}
2019-05-02 13:29:05 +02:00
if (!show_quotes) {
2019-05-03 08:42:44 +02:00
final int px = Helper.dp2pixels(context, 24 + (zoom) * 8);
2019-05-03 09:41:50 +02:00
2019-05-02 13:29:05 +02:00
StyledQuoteSpan[] squotes = builder.getSpans(0, builder.length(), StyledQuoteSpan.class);
for (StyledQuoteSpan squote : squotes)
builder.setSpan(new DynamicDrawableSpan() {
@Override
public Drawable getDrawable() {
Drawable d = context.getDrawable(R.drawable.baseline_format_quote_24);
d.setTint(colorAccent);
2019-05-03 08:42:44 +02:00
d.setBounds(0, 0, px, px);
2019-05-02 13:29:05 +02:00
return d;
}
},
builder.getSpanStart(squote),
builder.getSpanEnd(squote),
builder.getSpanFlags(squote));
}
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean inline = prefs.getBoolean("inline_images", false);
boolean has_images;
ImageSpan[] spans = builder.getSpans(0, body.length(), ImageSpan.class);
if (inline) {
has_images = false;
for (ImageSpan span : spans) {
String source = span.getSource();
if (source == null || !source.startsWith("cid:")) {
has_images = true;
break;
}
}
} else
has_images = spans.length > 0;
args.putBoolean("has_images", has_images);
2019-02-01 09:02:30 +00:00
2018-12-20 21:12:28 +01:00
return builder;
}
2018-10-15 10:05:42 +00:00
@Override
2018-12-31 07:03:48 +00:00
protected void onExecuted(Bundle args, SpannableStringBuilder body) {
2019-02-01 09:02:30 +00:00
TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
properties.setBody(message.id, body);
2019-02-01 09:29:26 +00:00
TupleMessageEx amessage = getMessage();
if (amessage == null || !amessage.id.equals(message.id))
return;
boolean show_expanded = properties.getValue("expanded", message.id);
if (!show_expanded)
return;
2019-02-01 09:02:30 +00:00
boolean has_images = args.getBoolean("has_images");
2018-12-21 08:32:26 +01:00
boolean show_images = properties.getValue("images", message.id);
2018-10-15 10:05:42 +00:00
2019-05-30 20:32:29 +02:00
ibFull.setVisibility(hasWebView ? View.VISIBLE : View.GONE);
ibImages.setVisibility(has_images && !show_images ? View.VISIBLE : View.GONE);
2019-05-04 12:49:25 +02:00
2018-10-15 10:05:42 +00:00
tvBody.setText(body);
2019-02-09 10:41:28 +00:00
tvBody.setTextIsSelectable(false);
tvBody.setTextIsSelectable(true);
2019-05-02 13:29:05 +02:00
tvBody.setMovementMethod(new TouchHandler(message));
2019-05-04 12:49:25 +02:00
pbBody.setVisibility(View.GONE);
2018-09-23 04:28:13 +00:00
}
2018-10-15 10:05:42 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2018-10-15 10:05:42 +00:00
}
};
2019-04-19 08:31:00 +02:00
private class TouchHandler extends ArrowKeyMovementMethod {
2019-05-02 13:29:05 +02:00
private TupleMessageEx message;
2019-04-19 08:31:00 +02:00
2019-05-02 13:29:05 +02:00
TouchHandler(TupleMessageEx message) {
this.message = message;
2019-04-19 08:31:00 +02:00
}
2019-02-17 19:08:09 +00:00
@Override
2018-10-15 10:05:42 +00:00
public boolean onTouchEvent(TextView widget, Spannable buffer, MotionEvent event) {
2019-02-17 19:08:09 +00:00
if (event.getAction() == MotionEvent.ACTION_UP) {
int x = (int) event.getX();
int y = (int) event.getY();
2018-10-15 10:05:42 +00:00
2019-02-17 19:08:09 +00:00
x -= widget.getTotalPaddingLeft();
y -= widget.getTotalPaddingTop();
2018-10-15 10:05:42 +00:00
2019-02-17 19:08:09 +00:00
x += widget.getScrollX();
y += widget.getScrollY();
2018-10-15 10:05:42 +00:00
2019-02-17 19:08:09 +00:00
Layout layout = widget.getLayout();
int line = layout.getLineForVertical(y);
int off = layout.getOffsetForHorizontal(line, x);
2018-10-15 10:05:42 +00:00
boolean show_images = properties.getValue("images", message.id);
if (!show_images) {
ImageSpan[] image = buffer.getSpans(off, off, ImageSpan.class);
if (image.length > 0 && image[0].getSource() != null) {
2019-07-26 20:45:53 +02:00
HtmlHelper.AnnotatedSource a = new HtmlHelper.AnnotatedSource(image[0].getSource());
Uri uri = Uri.parse(a.getSource());
if ("http".equals(uri.getScheme()) || "https".equals(uri.getScheme())) {
2019-05-18 09:54:01 +02:00
onOpenLink(uri, null);
return true;
}
}
}
URLSpan[] link = buffer.getSpans(off, off, URLSpan.class);
if (link.length > 0) {
String url = link[0].getURL();
Uri uri = Uri.parse(url);
if (uri.getScheme() == null)
uri = Uri.parse("https://" + url);
2019-05-18 09:54:01 +02:00
int start = buffer.getSpanStart(link[0]);
int end = buffer.getSpanEnd(link[0]);
String title = (start < 0 || end < 0 || end <= start
? null : buffer.subSequence(start, end).toString());
if (url.equals(title))
title = null;
onOpenLink(uri, title);
return true;
}
2019-04-19 08:31:00 +02:00
2019-04-24 18:46:46 +02:00
ImageSpan[] image = buffer.getSpans(off, off, ImageSpan.class);
2019-07-06 12:52:00 +02:00
if (image.length > 0) {
String source = image[0].getSource();
if (source != null) {
onOpenImage(message.id, source);
return true;
}
2019-02-17 19:08:09 +00:00
}
2019-05-02 13:29:05 +02:00
DynamicDrawableSpan[] ddss = buffer.getSpans(off, off, DynamicDrawableSpan.class);
if (ddss.length > 0) {
properties.setValue("quotes", message.id, true);
2019-05-31 08:14:06 +02:00
loadText(message);
2019-05-02 13:29:05 +02:00
}
2018-10-15 10:05:42 +00:00
}
2018-09-19 10:00:58 +00:00
2019-02-17 19:08:09 +00:00
return super.onTouchEvent(widget, buffer, event);
2018-10-15 10:05:42 +00:00
}
}
2018-09-19 10:00:58 +00:00
2019-05-18 09:54:01 +02:00
private void onOpenLink(final Uri uri, String title) {
2019-05-03 10:37:14 +02:00
Log.i("Opening uri=" + uri);
2019-02-03 18:38:56 +00:00
if (BuildConfig.APPLICATION_ID.equals(uri.getHost()) && "/activate/".equals(uri.getPath())) {
2019-08-13 10:27:17 +02:00
try {
if (ActivityBilling.activatePro(context, uri))
ToastEx.makeText(context, R.string.title_pro_valid, Toast.LENGTH_LONG).show();
else
ToastEx.makeText(context, R.string.title_pro_invalid, Toast.LENGTH_LONG).show();
} catch (NoSuchAlgorithmException ex) {
Log.e(ex);
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
}
2019-02-03 18:38:56 +00:00
} else {
2019-03-27 06:52:36 +00:00
if ("cid".equals(uri.getScheme()))
return;
2019-06-30 20:56:31 +02:00
Bundle args = new Bundle();
args.putParcelable("uri", uri);
args.putString("title", title);
2019-03-09 15:46:49 +00:00
2019-06-30 20:56:31 +02:00
FragmentDialogLink fragment = new FragmentDialogLink();
fragment.setArguments(args);
fragment.show(parentFragment.getFragmentManager(), "open:link");
2019-02-03 18:38:56 +00:00
}
}
2019-07-06 12:52:00 +02:00
private void onOpenImage(long id, String source) {
Log.i("Viewing image source=" + source);
2019-04-19 08:31:00 +02:00
2019-07-06 12:52:00 +02:00
Bundle args = new Bundle();
args.putLong("id", id);
args.putString("source", source);
2019-04-19 08:31:00 +02:00
2019-07-06 12:52:00 +02:00
FragmentDialogImage fragment = new FragmentDialogImage();
fragment.setArguments(args);
fragment.show(parentFragment.getFragmentManager(), "view:image");
2019-04-19 08:31:00 +02:00
}
2018-10-15 10:05:42 +00:00
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
ActionData data = (ActionData) bnvActions.getTag();
2018-10-16 09:32:57 +00:00
if (data == null)
return false;
2018-10-15 10:05:42 +00:00
switch (item.getItemId()) {
case R.id.action_more:
2019-01-07 17:50:23 +00:00
onActionMore(data);
2018-10-15 10:05:42 +00:00
return true;
case R.id.action_delete:
2019-01-07 17:50:23 +00:00
onActionDelete(data);
2018-10-15 10:05:42 +00:00
return true;
case R.id.action_move:
if (EntityFolder.OUTBOX.equals(data.message.folderType))
2019-06-23 10:09:39 +02:00
onActionMoveOutbox(data);
else
2019-06-28 18:49:50 +02:00
onActionMove(data.message, false);
2018-10-15 10:05:42 +00:00
return true;
case R.id.action_archive:
2019-05-25 17:37:01 +02:00
if (EntityFolder.JUNK.equals(data.message.folderType))
onActionMoveJunk(data);
else
onActionArchive(data);
2018-10-15 10:05:42 +00:00
return true;
case R.id.action_reply:
2019-03-02 08:48:02 +00:00
onActionReplyMenu(data);
2018-10-15 10:05:42 +00:00
return true;
default:
return false;
}
}
2018-09-19 10:00:58 +00:00
2019-06-28 18:49:50 +02:00
private void onMenuForward(final TupleMessageEx message) {
2019-05-08 15:27:54 +02:00
Intent forward = new Intent(context, ActivityCompose.class)
.putExtra("action", "forward")
2019-06-28 18:49:50 +02:00
.putExtra("reference", message.id);
2019-05-08 15:27:54 +02:00
context.startActivity(forward);
2018-10-15 10:05:42 +00:00
}
2018-09-19 10:00:58 +00:00
2019-07-21 11:54:36 +02:00
private void onMenuEditAsNew(final TupleMessageEx message) {
Intent asnew = new Intent(context, ActivityCompose.class)
.putExtra("action", "editasnew")
.putExtra("reference", message.id);
context.startActivity(asnew);
}
2019-06-28 18:49:50 +02:00
private void onMenuUnseen(final TupleMessageEx message) {
2018-10-15 10:05:42 +00:00
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
2018-10-15 10:05:42 +00:00
new SimpleTask<Void>() {
@Override
2018-12-31 07:03:48 +00:00
protected Void onExecute(Context context, Bundle args) {
2018-10-15 10:05:42 +00:00
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
2019-01-02 19:38:32 +01:00
if (message == null)
return null;
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, message, EntityOperation.SEEN, false);
2018-10-15 10:05:42 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2018-10-15 10:05:42 +00:00
return null;
}
@Override
2018-12-31 07:03:48 +00:00
protected void onExecuted(Bundle args, Void ignored) {
2019-06-28 18:49:50 +02:00
properties.setValue("expanded", message.id, false);
2018-10-15 10:05:42 +00:00
notifyDataSetChanged();
}
2018-12-01 10:47:08 +01:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2018-12-01 10:47:08 +01:00
}
2019-01-07 10:17:27 +00:00
}.execute(context, owner, args, "message:unseen");
2018-10-15 10:05:42 +00:00
}
2019-06-28 18:43:36 +02:00
private void onMenuColoredStar(final TupleMessageEx message) {
2019-06-30 16:55:15 +02:00
int color = (message.color == null ? Color.TRANSPARENT : message.color);
2019-05-15 11:10:47 +02:00
2019-06-30 16:55:15 +02:00
Bundle args = new Bundle();
args.putLong("id", message.id);
2019-06-30 19:56:23 +02:00
FragmentDialogColor fragment = new FragmentDialogColor();
2019-06-30 16:55:15 +02:00
fragment.initialize(R.string.title_flag_color, color, args, context);
fragment.setTargetFragment(parentFragment, FragmentMessages.REQUEST_MESSAGE_COLOR);
fragment.show(parentFragment.getFragmentManager(), "message:color");
2019-05-15 11:10:47 +02:00
}
2019-06-28 18:49:50 +02:00
private void onMenuDelete(final TupleMessageEx message) {
2019-01-25 09:01:09 +00:00
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
2019-01-25 09:01:09 +00:00
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
db.message().deleteMessage(id);
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-01-25 09:01:09 +00:00
}
}.execute(context, owner, args, "message:delete");
}
2019-06-28 18:49:50 +02:00
private void onMenuJunk(final TupleMessageEx message) {
String who = MessageHelper.formatAddresses(message.from);
Bundle aargs = new Bundle();
aargs.putString("question", context.getString(R.string.title_ask_spam_who, who));
aargs.putLong("id", message.id);
FragmentDialogAsk ask = new FragmentDialogAsk();
ask.setArguments(aargs);
ask.setTargetFragment(parentFragment, FragmentMessages.REQUEST_MESSAGE_JUNK);
ask.show(parentFragment.getFragmentManager(), "message:junk");
}
2019-06-28 18:49:50 +02:00
private void onMenuDecrypt(TupleMessageEx message) {
2019-03-11 16:02:40 +00:00
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
2019-06-19 11:51:15 +02:00
new Intent(FragmentMessages.ACTION_DECRYPT)
2019-06-28 18:49:50 +02:00
.putExtra("id", message.id));
2019-03-11 16:02:40 +00:00
}
2019-06-28 18:49:50 +02:00
private void onMenuResync(TupleMessageEx message) {
2019-04-04 17:54:05 +02:00
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
2019-04-04 17:54:05 +02:00
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message == null || message.uid == null)
return null;
db.message().deleteMessage(id);
2019-07-27 10:55:27 +02:00
EntityOperation.sync(context, message.folder, true);
2019-04-04 17:54:05 +02:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-04-04 17:54:05 +02:00
}
}.execute(context, owner, args, "message:share");
}
2019-06-28 18:49:50 +02:00
private void onMenuCreateRule(TupleMessageEx message) {
2019-03-01 12:51:57 +00:00
Intent rule = new Intent(ActivityView.ACTION_EDIT_RULE);
2019-06-28 18:49:50 +02:00
rule.putExtra("account", message.account);
rule.putExtra("folder", message.folder);
if (message.from != null && message.from.length > 0)
rule.putExtra("sender", ((InternetAddress) message.from[0]).getAddress());
if (message.to != null && message.to.length > 0)
rule.putExtra("recipient", ((InternetAddress) message.to[0]).getAddress());
if (!TextUtils.isEmpty(message.subject))
rule.putExtra("subject", message.subject);
2019-03-01 12:51:57 +00:00
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(rule);
}
2019-06-28 18:49:50 +02:00
private void onMenuManageKeywords(TupleMessageEx message) {
2019-03-11 16:02:40 +00:00
Bundle args = new Bundle();
args.putLong("id", message.id);
args.putStringArray("keywords", message.keywords);
2019-03-11 16:02:40 +00:00
new SimpleTask<EntityFolder>() {
@Override
protected EntityFolder onExecute(Context context, Bundle args) {
long id = args.getLong("id");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
return db.folder().getFolder(message.folder);
2019-03-11 16:02:40 +00:00
}
@Override
protected void onExecuted(final Bundle args, EntityFolder folder) {
if (folder == null)
return;
2019-03-11 16:02:40 +00:00
args.putStringArray("fkeywords", folder.keywords);
2019-03-11 16:02:40 +00:00
FragmentKeywordManage fragment = new FragmentKeywordManage();
fragment.setArguments(args);
fragment.show(parentFragment.getFragmentManager(), "keyword:manage");
2019-03-11 16:02:40 +00:00
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-03-11 16:02:40 +00:00
}
}.execute(context, owner, args, "message:keywords");
}
2019-06-28 18:49:50 +02:00
private void onMenuShare(TupleMessageEx message) {
2019-01-03 20:31:45 +01:00
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
2019-01-03 20:31:45 +01:00
2019-01-07 20:40:14 +00:00
new SimpleTask<String[]>() {
2019-01-03 20:31:45 +01:00
@Override
2019-01-07 20:40:14 +00:00
protected String[] onExecute(Context context, Bundle args) throws Throwable {
2019-01-03 20:31:45 +01:00
long id = args.getLong("id");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
2019-05-13 22:14:21 +02:00
if (message == null || !message.content)
return null;
File file = message.getFile(context);
if (!file.exists())
return null;
2019-01-03 20:31:45 +01:00
2019-01-07 20:40:14 +00:00
String from = null;
if (message.from != null && message.from.length > 0)
from = ((InternetAddress) message.from[0]).getAddress();
2019-01-03 20:31:45 +01:00
2019-05-13 22:14:21 +02:00
String html = HtmlHelper.getText(Helper.readText(file));
return new String[]{from, message.subject, html};
2019-01-03 20:31:45 +01:00
}
@Override
2019-01-07 20:40:14 +00:00
protected void onExecuted(Bundle args, String[] text) {
2019-05-13 22:14:21 +02:00
if (text == null)
return;
2019-01-03 20:31:45 +01:00
Intent share = new Intent();
share.setAction(Intent.ACTION_SEND);
share.setType("text/plain");
2019-01-07 20:40:14 +00:00
if (!TextUtils.isEmpty(text[0]))
share.putExtra(Intent.EXTRA_EMAIL, new String[]{text[0]});
if (!TextUtils.isEmpty(text[1]))
share.putExtra(Intent.EXTRA_SUBJECT, text[1]);
2019-05-13 22:14:21 +02:00
if (!TextUtils.isEmpty(text[2]))
share.putExtra(Intent.EXTRA_TEXT, text[2]);
2019-01-03 20:31:45 +01:00
PackageManager pm = context.getPackageManager();
if (share.resolveActivity(pm) == null)
2019-06-30 16:55:15 +02:00
Snackbar.make(parentFragment.getView(),
R.string.title_no_viewer, Snackbar.LENGTH_LONG).show();
2019-01-03 20:31:45 +01:00
else
context.startActivity(share);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-01-03 20:31:45 +01:00
}
2019-01-07 10:17:27 +00:00
}.execute(context, owner, args, "message:share");
2019-01-03 20:31:45 +01:00
}
2019-06-30 21:43:48 +02:00
private void onMenuPrint(TupleMessageEx message) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
2019-03-05 21:20:47 +00:00
if (prefs.getBoolean("print_html_confirmed", false)) {
2019-06-30 21:43:48 +02:00
Bundle args = new Bundle();
args.putLong("id", message.id);
Intent data = new Intent();
data.putExtra("args", args);
parentFragment.onActivityResult(FragmentMessages.REQUEST_PRINT, RESULT_OK, data);
2019-03-05 21:20:47 +00:00
return;
}
2019-06-30 21:43:48 +02:00
Bundle aargs = new Bundle();
aargs.putString("question", context.getString(R.string.title_ask_show_html));
aargs.putString("notagain", "print_html_confirmed");
aargs.putLong("id", message.id);
2019-03-05 21:20:47 +00:00
2019-06-30 21:43:48 +02:00
FragmentDialogAsk ask = new FragmentDialogAsk();
ask.setArguments(aargs);
ask.setTargetFragment(parentFragment, FragmentMessages.REQUEST_PRINT);
ask.show(parentFragment.getFragmentManager(), "message:print");
2019-03-05 21:20:47 +00:00
}
2019-06-28 18:49:50 +02:00
private void onMenuShowHeaders(TupleMessageEx message) {
boolean show_headers = !properties.getValue("headers", message.id);
properties.setValue("headers", message.id, show_headers);
if (show_headers && message.headers == null) {
2018-10-17 18:29:24 +00:00
grpHeaders.setVisibility(View.VISIBLE);
2019-03-16 13:12:31 +00:00
if (suitable)
pbHeaders.setVisibility(View.VISIBLE);
else
tvNoInternetHeaders.setVisibility(View.VISIBLE);
2018-10-16 10:56:05 +00:00
2018-10-17 18:29:24 +00:00
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
2018-10-16 10:56:05 +00:00
2018-10-17 18:29:24 +00:00
new SimpleTask<Void>() {
@Override
2018-12-31 07:03:48 +00:00
protected Void onExecute(Context context, Bundle args) {
2018-10-17 18:29:24 +00:00
Long id = args.getLong("id");
2019-01-02 19:38:32 +01:00
2018-10-17 18:29:24 +00:00
DB db = DB.getInstance(context);
2019-01-02 19:38:32 +01:00
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, message, EntityOperation.HEADERS);
2019-01-02 19:38:32 +01:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2018-10-17 18:29:24 +00:00
return null;
}
2018-10-16 10:56:05 +00:00
2018-10-17 18:29:24 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2018-10-17 18:29:24 +00:00
}
2019-01-07 10:17:27 +00:00
}.execute(context, owner, args, "message:headers");
2018-10-17 18:29:24 +00:00
} else
notifyDataSetChanged();
}
2018-10-16 10:56:05 +00:00
2019-06-28 18:49:50 +02:00
private void onMenuRaw(TupleMessageEx message) {
if (message.raw == null) {
Bundle args = new Bundle();
2019-06-28 18:49:50 +02:00
args.putLong("id", message.id);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
Long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
2019-05-18 08:49:20 +02:00
EntityOperation.queue(context, message, EntityOperation.RAW);
db.message().setMessageRaw(message.id, false);
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
}
}.execute(context, owner, args, "message:raw");
} else {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
2019-06-19 11:51:15 +02:00
new Intent(FragmentMessages.ACTION_STORE_RAW)
2019-06-28 18:49:50 +02:00
.putExtra("id", message.id));
}
}
2019-01-07 17:50:23 +00:00
private void onActionMore(final ActionData data) {
2018-12-21 08:32:26 +01:00
boolean show_headers = properties.getValue("headers", data.message.id);
2018-10-16 10:56:05 +00:00
2018-10-17 18:29:24 +00:00
View anchor = bnvActions.findViewById(R.id.action_more);
2019-05-03 18:59:27 +02:00
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, anchor);
2018-10-17 18:29:24 +00:00
popupMenu.inflate(R.menu.menu_message);
2018-10-21 14:53:39 +00:00
popupMenu.getMenu().findItem(R.id.menu_forward).setEnabled(data.message.content);
2019-07-21 11:54:36 +02:00
popupMenu.getMenu().findItem(R.id.menu_editasnew).setEnabled(data.message.content);
2018-11-13 20:05:09 +01:00
2019-07-07 09:25:52 +02:00
popupMenu.getMenu().findItem(R.id.menu_unseen).setEnabled(data.message.uid != null && !data.message.folderReadOnly);
popupMenu.getMenu().findItem(R.id.menu_flag_color).setEnabled(data.message.uid != null && !data.message.folderReadOnly);
2019-01-04 18:37:56 +00:00
2019-07-07 09:25:52 +02:00
popupMenu.getMenu().findItem(R.id.menu_copy).setEnabled(data.message.uid != null && !data.message.folderReadOnly);
popupMenu.getMenu().findItem(R.id.menu_delete).setVisible(debug);
2019-07-07 09:25:52 +02:00
popupMenu.getMenu().findItem(R.id.menu_junk).setEnabled(data.message.uid != null && !data.message.folderReadOnly);
2019-01-28 16:59:31 +00:00
popupMenu.getMenu().findItem(R.id.menu_junk).setVisible(
data.hasJunk && !EntityFolder.JUNK.equals(data.message.folderType));
2019-01-25 09:01:09 +00:00
2019-02-08 08:43:16 +00:00
popupMenu.getMenu().findItem(R.id.menu_share).setEnabled(data.message.content);
2019-03-10 09:21:18 +00:00
popupMenu.getMenu().findItem(R.id.menu_print).setEnabled(hasWebView && data.message.content);
2019-04-05 14:12:56 +02:00
popupMenu.getMenu().findItem(R.id.menu_print).setVisible(Helper.canPrint(context));
2019-01-03 20:31:45 +01:00
2018-10-28 12:49:13 +00:00
popupMenu.getMenu().findItem(R.id.menu_show_headers).setChecked(show_headers);
2019-01-04 18:37:56 +00:00
popupMenu.getMenu().findItem(R.id.menu_show_headers).setEnabled(data.message.uid != null);
2018-10-21 14:53:39 +00:00
popupMenu.getMenu().findItem(R.id.menu_raw).setEnabled(
data.message.uid != null && (data.message.raw == null || data.message.raw));
popupMenu.getMenu().findItem(R.id.menu_raw).setTitle(
data.message.raw == null || !data.message.raw ? R.string.title_raw_download : R.string.title_raw_save);
2019-07-07 09:25:52 +02:00
popupMenu.getMenu().findItem(R.id.menu_manage_keywords).setEnabled(data.message.uid != null && !data.message.folderReadOnly);
2018-11-26 12:42:06 +01:00
2018-12-14 08:53:02 +01:00
popupMenu.getMenu().findItem(R.id.menu_decrypt).setEnabled(
data.message.content && data.message.to != null && data.message.to.length > 0);
2018-10-16 10:56:05 +00:00
2019-04-04 17:54:05 +02:00
popupMenu.getMenu().findItem(R.id.menu_resync).setEnabled(data.message.uid != null);
2018-10-17 18:29:24 +00:00
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem target) {
switch (target.getItemId()) {
case R.id.menu_forward:
2019-06-28 18:49:50 +02:00
onMenuForward(data.message);
2018-10-17 18:29:24 +00:00
return true;
2019-07-21 11:54:36 +02:00
case R.id.menu_editasnew:
onMenuEditAsNew(data.message);
return true;
2018-10-28 12:49:13 +00:00
case R.id.menu_unseen:
2019-06-28 18:49:50 +02:00
onMenuUnseen(data.message);
2018-10-17 18:29:24 +00:00
return true;
2019-05-15 11:10:47 +02:00
case R.id.menu_flag_color:
2019-06-28 18:43:36 +02:00
onMenuColoredStar(data.message);
2019-05-15 11:10:47 +02:00
return true;
2019-03-02 14:32:19 +00:00
case R.id.menu_copy:
2019-06-28 18:49:50 +02:00
onActionMove(data.message, true);
2019-03-02 14:32:19 +00:00
return true;
2019-01-25 09:01:09 +00:00
case R.id.menu_delete:
// For emergencies
2019-06-28 18:49:50 +02:00
onMenuDelete(data.message);
2019-01-25 09:01:09 +00:00
return true;
case R.id.menu_junk:
2019-06-28 18:49:50 +02:00
onMenuJunk(data.message);
return true;
2019-03-11 16:02:40 +00:00
case R.id.menu_decrypt:
2019-06-28 18:49:50 +02:00
onMenuDecrypt(data.message);
2019-03-11 16:02:40 +00:00
return true;
2019-04-04 17:54:05 +02:00
case R.id.menu_resync:
2019-06-28 18:49:50 +02:00
onMenuResync(data.message);
2019-04-04 17:54:05 +02:00
return true;
2019-03-01 12:51:57 +00:00
case R.id.menu_create_rule:
2019-06-28 18:49:50 +02:00
onMenuCreateRule(data.message);
2019-03-01 12:51:57 +00:00
return true;
2019-03-11 16:02:40 +00:00
case R.id.menu_manage_keywords:
2019-06-28 18:49:50 +02:00
onMenuManageKeywords(data.message);
2019-03-11 16:02:40 +00:00
return true;
2019-01-03 20:31:45 +01:00
case R.id.menu_share:
2019-06-28 18:49:50 +02:00
onMenuShare(data.message);
2019-01-03 20:31:45 +01:00
return true;
2019-03-05 11:18:22 +00:00
case R.id.menu_print:
2019-06-28 18:49:50 +02:00
onMenuPrint(data.message);
2019-03-05 11:18:22 +00:00
return true;
2018-10-28 12:49:13 +00:00
case R.id.menu_show_headers:
2019-06-28 18:49:50 +02:00
onMenuShowHeaders(data.message);
2018-10-17 18:29:24 +00:00
return true;
case R.id.menu_raw:
2019-06-28 18:49:50 +02:00
onMenuRaw(data.message);
return true;
2018-10-17 18:29:24 +00:00
default:
return false;
}
}
});
popupMenu.show();
2018-10-16 10:56:05 +00:00
}
2019-01-07 17:50:23 +00:00
private void onActionDelete(final ActionData data) {
2018-10-15 10:05:42 +00:00
if (data.delete) {
Bundle aargs = new Bundle();
aargs.putString("question", context.getString(R.string.title_ask_delete));
aargs.putLong("id", data.message.id);
2018-10-15 10:05:42 +00:00
FragmentDialogAsk ask = new FragmentDialogAsk();
ask.setArguments(aargs);
ask.setTargetFragment(parentFragment, FragmentMessages.REQUEST_MESSAGE_DELETE);
ask.show(parentFragment.getFragmentManager(), "message:delete");
2018-11-20 09:44:13 +01:00
} else
properties.move(data.message.id, EntityFolder.TRASH);
2018-10-15 10:05:42 +00:00
}
2019-06-28 18:49:50 +02:00
private void onActionMove(final TupleMessageEx message, final boolean copy) {
Bundle args = new Bundle();
args.putString("title", context.getString(copy ? R.string.title_copy_to : R.string.title_move_to_folder));
args.putLong("account", message.account);
args.putLongArray("disabled", new long[]{message.folder});
args.putLong("message", message.id);
args.putBoolean("copy", copy);
2019-07-06 07:53:12 +02:00
args.putBoolean("similar", false);
2019-05-22 22:36:35 +02:00
2019-06-30 19:56:23 +02:00
FragmentDialogFolder fragment = new FragmentDialogFolder();
fragment.setArguments(args);
fragment.setTargetFragment(parentFragment, FragmentMessages.REQUEST_MESSAGE_MOVE);
fragment.show(parentFragment.getFragmentManager(), "message:move");
2018-10-15 10:05:42 +00:00
}
2019-06-23 10:09:39 +02:00
private void onActionMoveOutbox(ActionData data) {
2019-05-25 17:37:01 +02:00
Bundle args = new Bundle();
args.putLong("id", data.message.id);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
EntityMessage message;
DB db = DB.getInstance(context);
try {
db.beginTransaction();
message = db.message().getMessage(id);
if (message == null)
return null;
db.folder().setFolderError(message.folder, null);
File source = message.getFile(context);
// Insert into drafts
EntityFolder drafts = db.folder().getFolderByType(message.account, EntityFolder.DRAFTS);
message.id = null;
message.folder = drafts.id;
message.ui_snoozed = null;
2019-06-20 08:39:37 +02:00
message.error = null;
2019-05-25 17:37:01 +02:00
message.id = db.message().insertMessage(message);
File target = message.getFile(context);
source.renameTo(target);
List<EntityAttachment> attachments = db.attachment().getAttachments(id);
for (EntityAttachment attachment : attachments)
db.attachment().setMessage(attachment.id, message.id);
EntityOperation.queue(context, message, EntityOperation.ADD);
// Delete from outbox
db.message().deleteMessage(id); // will delete operation too
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2019-06-23 18:20:52 +02:00
if (message.identity != null) {
// Identity can be deleted
NotificationManager nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
2019-06-23 20:56:07 +02:00
nm.cancel("send:" + message.identity, 1);
2019-06-23 18:20:52 +02:00
}
2019-05-25 17:37:01 +02:00
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-05-25 17:37:01 +02:00
}
}.execute(context, owner, args, "message:move:draft");
}
2019-01-07 17:50:23 +00:00
private void onActionArchive(ActionData data) {
properties.move(data.message.id, EntityFolder.ARCHIVE);
2018-10-15 10:05:42 +00:00
}
2019-05-25 17:37:01 +02:00
private void onActionMoveJunk(ActionData data) {
properties.move(data.message.id, EntityFolder.INBOX);
2019-05-25 17:37:01 +02:00
}
2019-03-02 08:48:02 +00:00
private void onActionReplyMenu(final ActionData data) {
2019-05-29 14:09:54 +02:00
Bundle args = new Bundle();
args.putSerializable("message", data.message);
2019-05-29 09:14:56 +02:00
2019-05-29 14:09:54 +02:00
new SimpleTask<EntityIdentity>() {
@Override
protected EntityIdentity onExecute(Context context, Bundle args) {
TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
if (message.identity == null)
return null;
2019-05-22 16:21:04 +02:00
2019-05-29 14:09:54 +02:00
DB db = DB.getInstance(context);
return db.identity().getIdentity(message.identity);
}
2019-03-02 08:48:02 +00:00
@Override
2019-05-29 14:09:54 +02:00
protected void onExecuted(Bundle args, EntityIdentity identity) {
TupleMessageEx message = (TupleMessageEx) args.getSerializable("message");
TupleMessageEx amessage = getMessage();
if (amessage == null || !amessage.id.equals(message.id))
return;
String via = (identity == null ? null : MessageHelper.canonicalAddress(identity.email));
Address[] recipients = data.message.getAllRecipients(via);
if (recipients.length == 0 &&
data.message.list_post == null &&
data.message.receipt_to == null &&
2019-08-13 10:27:17 +02:00
(answers == 0 && ActivityBilling.isPro(context))) {
2019-05-29 14:09:54 +02:00
onMenuReply(data, "reply");
return;
2019-03-02 08:48:02 +00:00
}
2019-05-29 14:09:54 +02:00
View anchor = bnvActions.findViewById(R.id.action_reply);
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, anchor);
popupMenu.inflate(R.menu.menu_reply);
popupMenu.getMenu().findItem(R.id.menu_reply_to_all).setVisible(recipients.length > 0);
popupMenu.getMenu().findItem(R.id.menu_reply_list).setVisible(data.message.list_post != null);
popupMenu.getMenu().findItem(R.id.menu_reply_receipt).setVisible(data.message.receipt_to != null);
2019-08-13 10:27:17 +02:00
popupMenu.getMenu().findItem(R.id.menu_reply_answer).setVisible(answers != 0 || !ActivityBilling.isPro(context));
2019-05-29 14:09:54 +02:00
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem target) {
switch (target.getItemId()) {
case R.id.menu_reply_to_sender:
onMenuReply(data, "reply");
return true;
case R.id.menu_reply_to_all:
onMenuReply(data, "reply_all");
return true;
case R.id.menu_reply_list:
onMenuReply(data, "list");
return true;
case R.id.menu_reply_receipt:
onMenuReply(data, "receipt");
return true;
case R.id.menu_reply_answer:
onMenuAnswer(data);
return true;
default:
return false;
}
}
});
popupMenu.show();
2019-03-02 08:48:02 +00:00
}
2019-05-29 14:09:54 +02:00
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-05-29 14:09:54 +02:00
}
}.execute(context, owner, args, "message:reply");
2019-03-02 08:48:02 +00:00
}
2019-04-18 19:13:38 +02:00
private void onMenuReply(final ActionData data, String action) {
2019-05-08 15:27:54 +02:00
Intent reply = new Intent(context, ActivityCompose.class)
.putExtra("action", action)
.putExtra("reference", data.message.id);
context.startActivity(reply);
}
2018-10-24 09:09:07 +00:00
2019-03-02 08:48:02 +00:00
private void onMenuAnswer(final ActionData data) {
new SimpleTask<List<EntityAnswer>>() {
@Override
protected List<EntityAnswer> onExecute(Context context, Bundle args) {
2019-04-20 10:35:30 +02:00
return DB.getInstance(context).answer().getAnswers(false);
2019-03-02 08:48:02 +00:00
}
@Override
protected void onExecuted(Bundle args, List<EntityAnswer> answers) {
if (answers == null || answers.size() == 0) {
Snackbar snackbar = Snackbar.make(
2019-06-30 16:55:15 +02:00
parentFragment.getView(),
2019-03-02 08:48:02 +00:00
context.getString(R.string.title_no_answers),
Snackbar.LENGTH_LONG);
snackbar.setAction(R.string.title_fix, new View.OnClickListener() {
@Override
public void onClick(View v) {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(new Intent(ActivityView.ACTION_EDIT_ANSWERS));
}
});
snackbar.show();
} else {
View anchor = bnvActions.findViewById(R.id.action_reply);
2019-05-03 18:59:27 +02:00
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(context, powner, anchor);
2019-03-02 08:48:02 +00:00
int order = 0;
for (EntityAnswer answer : answers)
popupMenu.getMenu().add(Menu.NONE, answer.id.intValue(), order++, answer.name);
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
@Override
public boolean onMenuItemClick(MenuItem target) {
2019-08-13 10:27:17 +02:00
if (!ActivityBilling.isPro(context)) {
context.startActivity(new Intent(context, ActivityBilling.class));
return true;
2019-03-02 08:48:02 +00:00
}
context.startActivity(new Intent(context, ActivityCompose.class)
.putExtra("action", "reply")
.putExtra("reference", data.message.id)
.putExtra("answer", (long) target.getItemId()));
2019-03-02 08:48:02 +00:00
return true;
}
});
popupMenu.show();
}
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(parentFragment.getFragmentManager(), ex);
2019-03-02 08:48:02 +00:00
}
}.execute(context, owner, new Bundle(), "message:answer");
}
2018-10-24 09:09:07 +00:00
ItemDetailsLookup.ItemDetails<Long> getItemDetails(@NonNull MotionEvent motionEvent) {
2018-12-03 13:18:23 +01:00
return new ItemDetailsMessage(this);
}
Long getKey() {
return getKeyAtPosition(getAdapterPosition());
2018-10-24 09:09:07 +00:00
}
2019-05-18 19:44:21 +02:00
private class ActionData {
boolean hasJunk;
boolean delete;
TupleMessageEx message;
}
2018-08-02 13:33:06 +00:00
}
AdapterMessage(Fragment parentFragment,
2019-07-19 08:27:44 +02:00
String type, ViewType viewType,
boolean compact, int zoom, String sort, boolean filter_duplicates,
final IProperties properties) {
2019-06-30 16:55:15 +02:00
this.parentFragment = parentFragment;
2019-07-19 08:27:44 +02:00
this.type = type;
2018-08-02 13:33:06 +00:00
this.viewType = viewType;
2019-01-15 17:39:12 +00:00
this.compact = compact;
2018-12-30 16:33:52 +00:00
this.zoom = zoom;
2019-01-21 18:12:22 +00:00
this.sort = sort;
2019-04-28 15:16:26 +02:00
this.filter_duplicates = filter_duplicates;
this.properties = properties;
this.context = parentFragment.getContext();
this.owner = parentFragment.getViewLifecycleOwner();
this.suitable = ConnectionHelper.getNetworkState(context).isSuitable();
this.inflater = LayoutInflater.from(context);
this.TF = Helper.getTimeInstance(context, SimpleDateFormat.SHORT);
2019-07-15 21:28:25 +02:00
this.DTF = Helper.getDateTimeInstance(context, SimpleDateFormat.LONG, SimpleDateFormat.LONG);
this.dp3 = Helper.dp2pixels(context, 3);
this.dp36 = Helper.dp2pixels(context, 36);
this.colorPrimary = Helper.resolveColor(context, R.attr.colorPrimary);
this.colorAccent = Helper.resolveColor(context, R.attr.colorAccent);
this.colorWarning = Helper.resolveColor(context, R.attr.colorWarning);
this.textColorPrimary = Helper.resolveColor(context, android.R.attr.textColorPrimary);
this.textColorSecondary = Helper.resolveColor(context, android.R.attr.textColorSecondary);
this.colorUnread = Helper.resolveColor(context, R.attr.colorUnread);
this.hasWebView = Helper.hasWebView(context);
2019-02-07 09:02:40 +00:00
this.contacts = Helper.hasPermission(context, Manifest.permission.READ_CONTACTS);
this.textSize = Helper.getTextSize(context, zoom);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
2019-08-14 12:16:25 +02:00
this.cards = prefs.getBoolean("cards", true);
this.date = prefs.getBoolean("date", true);
this.threading = prefs.getBoolean("threading", true);
this.circular = prefs.getBoolean("circular", true);
this.name_email = prefs.getBoolean("name_email", !compact);
this.subject_italic = prefs.getBoolean("subject_italic", true);
2019-03-02 15:54:38 +00:00
this.flags = prefs.getBoolean("flags", true);
2018-11-04 12:42:41 +00:00
this.preview = prefs.getBoolean("preview", false);
this.preview_italic = prefs.getBoolean("preview_italic", true);
this.attachments_alt = prefs.getBoolean("attachments_alt", false);
this.contrast = prefs.getBoolean("contrast", false);
this.monospaced = prefs.getBoolean("monospaced", false);
2019-07-22 12:31:30 +02:00
this.contact_images = (this.contacts && prefs.getBoolean("contact_images", true));
this.all_images = prefs.getBoolean("all_images", false);
this.collapse_quotes = prefs.getBoolean("collapse_quotes", false);
this.authentication = prefs.getBoolean("authentication", true);
2019-07-11 20:16:58 +02:00
debug = prefs.getBoolean("debug", false);
2019-05-04 10:24:42 +02:00
AsyncDifferConfig<TupleMessageEx> config = new AsyncDifferConfig.Builder<>(DIFF_CALLBACK)
.build();
this.differ = new AsyncPagedListDiffer<>(new AdapterListUpdateCallback(this), config);
2019-05-04 10:24:42 +02:00
this.differ.addPagedListListener(new AsyncPagedListDiffer.PagedListListener<TupleMessageEx>() {
@Override
public void onCurrentListChanged(@Nullable PagedList<TupleMessageEx> previousList, @Nullable PagedList<TupleMessageEx> currentList) {
2019-05-15 13:37:35 +02:00
if (gotoTop) {
gotoTop = false;
2019-05-04 10:24:42 +02:00
properties.scrollTo(0);
}
}
});
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
Log.i(AdapterMessage.this + " parent destroyed");
AdapterMessage.this.parentFragment = null;
}
});
2018-08-02 13:33:06 +00:00
}
2019-05-15 13:37:35 +02:00
void gotoTop() {
properties.scrollTo(0);
this.gotoTop = true;
}
void submitList(PagedList<TupleMessageEx> list) {
2019-08-11 16:08:53 +02:00
keyPosition.clear();
2019-01-29 11:38:38 +00:00
differ.submitList(list);
2019-01-20 13:27:35 +00:00
}
2018-12-03 08:21:02 +01:00
PagedList<TupleMessageEx> getCurrentList() {
return differ.getCurrentList();
}
2019-01-15 17:39:12 +00:00
void setCompact(boolean compact) {
if (this.compact != compact) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
2019-01-15 17:39:12 +00:00
this.compact = compact;
this.name_email = prefs.getBoolean("name_email", !compact);
2019-01-15 17:39:12 +00:00
notifyDataSetChanged();
}
}
2018-12-13 19:26:27 +01:00
void setZoom(int zoom) {
2018-12-30 16:33:52 +00:00
if (this.zoom != zoom) {
this.zoom = zoom;
textSize = Helper.getTextSize(context, zoom);
notifyDataSetChanged();
}
2018-12-13 19:26:27 +01:00
}
2019-01-21 18:12:22 +00:00
2019-04-04 10:11:24 +02:00
int getZoom() {
return this.zoom;
}
2019-01-21 18:12:22 +00:00
void setSort(String sort) {
if (!sort.equals(this.sort)) {
this.sort = sort;
2019-04-11 12:50:09 +02:00
notifyDataSetChanged();
// Needed to redraw item decorators / add/remove size
2019-01-21 18:12:22 +00:00
}
}
2018-12-13 19:26:27 +01:00
2019-04-04 10:11:24 +02:00
String getSort() {
return this.sort;
}
2019-04-28 15:16:26 +02:00
void setFilterDuplicates(boolean filter_duplicates) {
if (this.filter_duplicates != filter_duplicates) {
this.filter_duplicates = filter_duplicates;
notifyDataSetChanged();
}
}
void checkInternet() {
2019-05-12 18:41:51 +02:00
boolean suitable = ConnectionHelper.getNetworkState(context).isSuitable();
2019-03-16 13:12:31 +00:00
if (this.suitable != suitable) {
this.suitable = suitable;
notifyDataSetChanged();
}
}
2019-05-21 15:43:17 +02:00
void setAnswerCount(int answers) {
this.answers = answers;
Log.i("Answer count=" + answers);
}
2019-01-15 17:39:12 +00:00
@Override
public int getItemViewType(int position) {
2019-05-30 20:32:29 +02:00
return (compact ? R.layout.item_message_compact : R.layout.item_message_normal);
2019-01-15 17:39:12 +00:00
}
2018-12-03 08:21:02 +01:00
@Override
public int getItemCount() {
return differ.getItemCount();
}
2018-08-12 16:14:20 +00:00
private static final DiffUtil.ItemCallback<TupleMessageEx> DIFF_CALLBACK =
2018-08-07 06:38:00 +00:00
new DiffUtil.ItemCallback<TupleMessageEx>() {
@Override
public boolean areItemsTheSame(
@NonNull TupleMessageEx prev, @NonNull TupleMessageEx next) {
return prev.id.equals(next.id);
}
2018-08-02 13:33:06 +00:00
2018-08-07 06:38:00 +00:00
@Override
public boolean areContentsTheSame(
@NonNull TupleMessageEx prev, @NonNull TupleMessageEx next) {
2019-06-25 09:46:31 +02:00
boolean same = true;
// id
// account
// folder
if (!Objects.equals(prev.identity, next.identity)) {
// via
same = false;
Log.i("Entity changed id=" + next.id);
}
// extra
if (!Objects.equals(prev.uid, next.uid)) {
same = false;
Log.i("uid changed id=" + next.id);
}
if (!Objects.equals(prev.msgid, next.msgid)) {
// debug info
same = false;
Log.i("msgid changed id=" + next.id);
}
// references
// deliveredto
// inreplyto
if (!Objects.equals(prev.thread, next.thread)) {
same = false;
Log.i("thread changed id=" + next.id);
}
// receipt_request
if (!MessageHelper.equal(prev.receipt_to, next.receipt_to)) {
same = false;
Log.i("receipt_to changed id=" + next.id);
}
if (!Objects.equals(prev.dkim, next.dkim)) {
same = false;
Log.i("dkim changed id=" + next.id);
}
if (!Objects.equals(prev.spf, next.spf)) {
same = false;
Log.i("spf changed id=" + next.id);
}
if (!Objects.equals(prev.dmarc, next.dmarc)) {
same = false;
Log.i("dmarc changed id=" + next.id);
}
if (!Objects.equals(prev.mx, next.mx)) {
same = false;
Log.i("mx changed id=" + next.id);
}
2019-06-25 09:46:31 +02:00
if (!Objects.equals(prev.avatar, next.avatar)) {
same = false;
Log.i("avatar changed id=" + next.id);
}
if (!Objects.equals(prev.sender, next.sender)) {
same = false;
Log.i("sender changed id=" + next.id);
}
if (!MessageHelper.equal(prev.from, next.from)) {
same = false;
Log.i("from changed id=" + next.id);
}
if (!MessageHelper.equal(prev.to, next.to)) {
same = false;
Log.i("to changed id=" + next.id);
}
if (!MessageHelper.equal(prev.cc, next.cc)) {
same = false;
Log.i("cc changed id=" + next.id);
}
if (!MessageHelper.equal(prev.bcc, next.bcc)) {
same = false;
Log.i("bcc changed id=" + next.id);
}
if (!MessageHelper.equal(prev.reply, next.reply)) {
same = false;
Log.i("reply changed id=" + next.id);
}
if (!MessageHelper.equal(prev.list_post, next.list_post)) {
same = false;
Log.i("list_post changed id=" + next.id);
}
if (!Objects.equals(prev.headers, next.headers)) {
same = false;
Log.i("headers changed id=" + next.id);
}
if (!Objects.equals(prev.raw, next.raw)) {
same = false;
Log.i("raw changed id=" + next.id);
}
if (!Objects.equals(prev.subject, next.subject)) {
same = false;
Log.i("subject changed id=" + next.id);
}
if (!Objects.equals(prev.size, next.size)) {
same = false;
Log.i("size changed id=" + next.id);
}
if (!Objects.equals(prev.attachments, next.attachments)) {
same = false;
Log.i("attachments changed id=" + next.id);
}
2019-06-25 09:46:31 +02:00
if (!prev.content.equals(next.content)) {
same = false;
Log.i("content changed id=" + next.id);
}
// plain_only
if (!Objects.equals(prev.preview, next.preview)) {
same = false;
Log.i("preview changed id=" + next.id);
}
2019-06-25 14:25:56 +02:00
if (!Objects.equals(prev.sent, next.sent)) {
2019-06-25 09:46:31 +02:00
same = false;
Log.i("sent changed id=" + next.id);
}
if (!prev.received.equals(next.received)) {
same = false;
Log.i("received changed id=" + next.id);
}
if (!prev.stored.equals(next.stored)) {
// updated after decryption
same = false;
Log.i("stored changed id=" + next.id);
}
// seen
// answered
// flagged
if (debug && !Objects.equals(prev.flags, next.flags)) {
same = false;
Log.i("flags changed id=" + next.id);
}
if (!Helper.equal(prev.keywords, next.keywords)) {
same = false;
Log.i("keywords changed id=" + next.id);
}
if (!prev.ui_seen.equals(next.ui_seen)) {
same = false;
Log.i("ui_seen changed id=" + next.id);
}
if (!prev.ui_answered.equals(next.ui_answered)) {
same = false;
Log.i("ui_answer changed id=" + next.id);
}
if (!prev.ui_flagged.equals(next.ui_flagged)) {
same = false;
Log.i("ui_flagged changed id=" + next.id);
}
if (!prev.ui_hide.equals(next.ui_hide)) {
same = false;
Log.i("ui_hide changed id=" + next.id);
}
if (!prev.ui_found.equals(next.ui_found)) {
same = false;
Log.i("ui_found changed id=" + next.id);
}
// ui_ignored
if (!prev.ui_browsed.equals(next.ui_browsed)) {
same = false;
Log.i("ui_browsed changed id=" + next.id);
}
if (!Objects.equals(prev.ui_snoozed, next.ui_snoozed)) {
same = false;
Log.i("ui_snoozed changed id=" + next.id);
}
if (!Objects.equals(prev.color, next.color)) {
same = false;
Log.i("color changed id=" + next.id);
}
// revision
// revisions
if (!Objects.equals(prev.warning, next.warning)) {
same = false;
Log.i("warning changed id=" + next.id);
}
if (!Objects.equals(prev.error, next.error)) {
same = false;
Log.i("error changed id=" + next.id);
}
// last_attempt
if (!Objects.equals(prev.accountName, next.accountName)) {
same = false;
Log.i("accountName changed id=" + next.id);
}
if (!Objects.equals(prev.accountColor, next.accountColor)) {
same = false;
Log.i("accountColor changed id=" + next.id);
}
// accountNotify
if (!prev.folderName.equals(next.folderName)) {
same = false;
Log.i("folderName changed id=" + next.id);
}
if (!Objects.equals(prev.folderDisplay, next.folderDisplay)) {
same = false;
Log.i("folderDisplay changed id=" + next.id);
}
if (!prev.folderType.equals(next.folderType)) {
same = false;
Log.i("folderType changed id=" + next.id);
}
if (!Objects.equals(prev.identityName, next.identityName)) {
same = false;
Log.i("identityName changed id=" + next.id);
}
if (!Objects.equals(prev.identityEmail, next.identityEmail)) {
same = false;
Log.i("identityEmail changed id=" + next.id);
}
if (!Objects.equals(prev.identitySynchronize, next.identitySynchronize)) {
same = false;
Log.i("identitySynchronize changed id=" + next.id);
}
if (prev.count != next.count) {
same = false;
Log.i("count changed id=" + next.id);
}
if (prev.unseen != next.unseen) {
same = false;
Log.i("unseen changed id=" + next.id);
}
if (prev.unflagged != next.unflagged) {
same = false;
Log.i("unflagged changed id=" + next.id);
}
if (prev.attachments != next.attachments) {
same = false;
Log.i("attachments changed id=" + next.id);
}
if (prev.drafts != next.drafts) {
same = false;
Log.i("drafts changed id=" + next.id);
}
if (prev.visible != next.visible) {
same = false;
Log.i("visible changed id=" + next.id);
}
if (!Objects.equals(prev.totalSize, next.totalSize)) {
same = false;
Log.i("totalSize changed id=" + next.id);
}
if (prev.duplicate != next.duplicate) {
same = false;
Log.i("duplicate changed id=" + next.id);
}
return same;
2018-08-07 06:38:00 +00:00
}
};
2018-08-02 13:33:06 +00:00
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
2019-01-15 17:39:12 +00:00
return new ViewHolder(inflater.inflate(viewType, parent, false));
2018-08-02 13:33:06 +00:00
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
2018-12-03 08:21:02 +01:00
TupleMessageEx message = differ.getItem(position);
2019-07-11 20:19:52 +02:00
if (message == null || context == null)
2018-08-07 06:38:00 +00:00
holder.clear();
else {
2019-03-04 10:18:42 +00:00
holder.bindTo(message);
2018-08-07 06:38:00 +00:00
holder.wire();
2018-08-02 13:33:06 +00:00
}
}
2019-04-11 16:54:00 +02:00
@Override
public void onViewRecycled(@NonNull ViewHolder holder) {
2019-04-13 08:02:01 +02:00
holder.cowner.stop();
2019-05-03 18:59:27 +02:00
holder.powner.recreate();
2019-04-11 16:54:00 +02:00
}
2018-10-24 09:09:07 +00:00
void setSelectionTracker(SelectionTracker<Long> selectionTracker) {
this.selectionTracker = selectionTracker;
}
2018-12-03 13:18:23 +01:00
int getPositionForKey(long key) {
2019-08-11 16:08:53 +02:00
if (keyPosition.isEmpty()) {
PagedList<TupleMessageEx> messages = getCurrentList();
if (messages != null) {
for (int i = 0; i < messages.size(); i++) {
TupleMessageEx message = messages.get(i);
if (message != null)
keyPosition.put(message.id, i);
}
Log.i("Mapped keys=" + keyPosition.size());
2018-12-03 13:18:23 +01:00
}
2019-08-11 16:08:53 +02:00
}
if (keyPosition.containsKey(key)) {
int pos = keyPosition.get(key);
Log.d("Position=" + pos + " @Key=" + key);
return pos;
}
2018-12-24 12:27:45 +00:00
Log.i("Position=" + RecyclerView.NO_POSITION + " @Key=" + key);
2018-12-03 13:18:23 +01:00
return RecyclerView.NO_POSITION;
}
TupleMessageEx getItemAtPosition(int pos) {
2019-08-11 16:08:53 +02:00
PagedList<TupleMessageEx> messages = getCurrentList();
if (messages != null && pos >= 0 && pos < messages.size()) {
TupleMessageEx message = messages.get(pos);
2018-12-03 13:18:23 +01:00
Long key = (message == null ? null : message.id);
2019-08-11 15:49:14 +02:00
Log.d("Item=" + key + " @Position=" + pos);
2018-12-03 13:18:23 +01:00
return message;
} else {
2019-08-11 15:49:14 +02:00
Log.d("Item=" + null + " @Position=" + pos);
2018-12-03 13:18:23 +01:00
return null;
}
}
TupleMessageEx getItemForKey(long key) {
2019-08-11 16:08:53 +02:00
int pos = getPositionForKey(key);
if (pos == RecyclerView.NO_POSITION) {
Log.d("Item=" + null + " @Key=" + key);
return null;
} else
return getItemAtPosition(pos);
2018-12-03 13:18:23 +01:00
}
Long getKeyAtPosition(int pos) {
TupleMessageEx message = getItemAtPosition(pos);
Long key = (message == null ? null : message.id);
2019-08-11 15:49:14 +02:00
Log.d("Key=" + key + " @Position=" + pos);
2018-12-03 13:18:23 +01:00
return key;
}
interface IProperties {
2018-12-21 08:32:26 +01:00
void setValue(String name, long id, boolean enabled);
2018-12-21 08:32:26 +01:00
boolean getValue(String name, long id);
2018-11-20 09:44:13 +01:00
2018-12-22 08:48:23 +01:00
void setBody(long id, Spanned body);
Spanned getBody(long id);
2019-04-04 14:47:56 +02:00
void setAttchments(long id, List<EntityAttachment> attachments);
List<EntityAttachment> getAttachments(long id);
2019-04-27 10:40:06 +02:00
void scrollTo(int pos);
void scrollBy(int dx, int dy);
2018-12-22 09:06:33 +01:00
void move(long id, String type);
void finish();
}
2019-06-30 20:56:31 +02:00
2019-08-04 09:22:53 +02:00
public static class FragmentDialogLink extends FragmentDialogEx {
2019-06-30 20:56:31 +02:00
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final Uri uri = getArguments().getParcelable("uri");
String title = getArguments().getString("title");
final Uri sanitized;
if (uri.isOpaque())
sanitized = uri;
else {
// https://en.wikipedia.org/wiki/UTM_parameters
Uri.Builder builder = uri.buildUpon();
boolean changed = false;
2019-06-30 20:56:31 +02:00
builder.clearQuery();
for (String key : uri.getQueryParameterNames())
if (PARANOID_QUERY.contains(key.toLowerCase()))
changed = true;
else if (!TextUtils.isEmpty(key))
for (String value : uri.getQueryParameters(key)) {
Log.i("Query " + key + "=" + value);
builder.appendQueryParameter(key, value);
}
2019-06-30 20:56:31 +02:00
sanitized = (changed ? builder.build() : uri);
2019-06-30 20:56:31 +02:00
}
View view = LayoutInflater.from(getContext()).inflate(R.layout.dialog_open_link, null);
TextView tvTitle = view.findViewById(R.id.tvTitle);
final EditText etLink = view.findViewById(R.id.etLink);
final CheckBox cbSecure = view.findViewById(R.id.cbSecure);
CheckBox cbSanitize = view.findViewById(R.id.cbSanitize);
2019-07-07 10:49:16 +02:00
final Button btnOwner = view.findViewById(R.id.btnOwner);
2019-07-07 11:11:31 +02:00
TextView tvOwnerRemark = view.findViewById(R.id.tvOwnerRemark);
2019-07-07 10:49:16 +02:00
final ContentLoadingProgressBar pbWait = view.findViewById(R.id.pbWait);
2019-06-30 20:56:31 +02:00
final TextView tvOwner = view.findViewById(R.id.tvOwner);
2019-07-06 13:17:04 +02:00
final TextView tvHost = view.findViewById(R.id.tvHost);
2019-06-30 20:56:31 +02:00
final Group grpOwner = view.findViewById(R.id.grpOwner);
tvTitle.setText(title);
tvTitle.setVisibility(TextUtils.isEmpty(title) ? View.GONE : View.VISIBLE);
cbSecure.setVisibility(View.GONE);
etLink.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence text, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable text) {
Uri uri = Uri.parse(text.toString());
cbSecure.setVisibility(!uri.isOpaque() &&
("http".equals(uri.getScheme()) || "https".equals(uri.getScheme()))
? View.VISIBLE : View.GONE);
}
});
etLink.setText(uri.toString());
boolean secure = "https".equals(uri.getScheme());
cbSecure.setChecked(secure);
cbSecure.setText(
secure ? R.string.title_link_secured : R.string.title_secure_link);
cbSecure.setTextColor(Helper.resolveColor(getContext(),
secure ? android.R.attr.textColorSecondary : R.attr.colorWarning));
cbSecure.setTypeface(
secure ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
2019-07-07 11:11:31 +02:00
2019-06-30 20:56:31 +02:00
cbSecure.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
Uri uri = Uri.parse(etLink.getText().toString());
Uri.Builder builder = uri.buildUpon();
builder.scheme(checked ? "https" : "http");
String authority = uri.getEncodedAuthority();
if (authority != null) {
authority = authority.replace(checked ? ":80" : ":443", checked ? ":443" : ":80");
builder.encodedAuthority(authority);
}
etLink.setText(builder.build().toString());
cbSecure.setText(
checked ? R.string.title_link_secured : R.string.title_secure_link);
cbSecure.setTextColor(Helper.resolveColor(getContext(),
checked ? android.R.attr.textColorSecondary : R.attr.colorWarning));
cbSecure.setTypeface(
checked ? Typeface.DEFAULT : Typeface.DEFAULT_BOLD);
}
});
cbSanitize.setVisibility(uri.equals(sanitized) ? View.GONE : View.VISIBLE);
2019-07-07 11:11:31 +02:00
2019-06-30 20:56:31 +02:00
cbSanitize.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
if (checked)
etLink.setText(sanitized.toString());
else
etLink.setText(uri.toString());
}
});
2019-07-07 11:11:31 +02:00
tvOwnerRemark.setMovementMethod(LinkMovementMethod.getInstance());
2019-07-07 10:49:16 +02:00
pbWait.setVisibility(View.GONE);
2019-06-30 20:56:31 +02:00
grpOwner.setVisibility(View.GONE);
2019-07-07 11:11:31 +02:00
2019-07-07 10:49:16 +02:00
btnOwner.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Bundle args = new Bundle();
args.putParcelable("uri", uri);
2019-06-30 20:56:31 +02:00
2019-07-07 10:49:16 +02:00
new SimpleTask<String[]>() {
@Override
protected void onPreExecute(Bundle args) {
btnOwner.setEnabled(false);
pbWait.setVisibility(View.VISIBLE);
grpOwner.setVisibility(View.GONE);
}
2019-06-30 20:56:31 +02:00
2019-07-07 10:49:16 +02:00
@Override
protected void onPostExecute(Bundle args) {
btnOwner.setEnabled(true);
pbWait.setVisibility(View.GONE);
grpOwner.setVisibility(View.VISIBLE);
}
2019-06-30 20:56:31 +02:00
2019-07-07 10:49:16 +02:00
@Override
protected String[] onExecute(Context context, Bundle args) throws Throwable {
Uri uri = args.getParcelable("uri");
return IPInfo.getOrganization(uri);
}
2019-06-30 20:56:31 +02:00
2019-07-07 10:49:16 +02:00
@Override
protected void onExecuted(Bundle args, String[] data) {
String host = data[0];
String organization = data[1];
tvHost.setText(host);
tvOwner.setText(organization == null ? "?" : organization);
}
2019-06-30 20:56:31 +02:00
2019-07-07 10:49:16 +02:00
@Override
protected void onException(Bundle args, Throwable ex) {
2019-06-30 20:56:31 +02:00
tvOwner.setText(ex.getMessage());
2019-07-07 10:49:16 +02:00
}
}.execute(getContext(), getActivity(), args, "link:owner");
}
});
2019-06-30 20:56:31 +02:00
return new AlertDialog.Builder(getContext())
.setView(view)
.setPositiveButton(R.string.title_yes, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Uri uri = Uri.parse(etLink.getText().toString());
2019-07-01 20:34:02 +02:00
Helper.view(getContext(), uri, false);
2019-06-30 20:56:31 +02:00
}
})
.setNeutralButton(R.string.title_browse, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Uri uri = Uri.parse(etLink.getText().toString());
2019-07-01 20:34:02 +02:00
Helper.view(getContext(), uri, true);
2019-06-30 20:56:31 +02:00
}
})
.setNegativeButton(R.string.title_no, null)
2019-07-01 19:54:37 +02:00
.create();
2019-06-30 20:56:31 +02:00
}
}
2019-08-04 09:22:53 +02:00
public static class FragmentDialogImage extends FragmentDialogEx {
2019-07-06 12:52:00 +02:00
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final PhotoView pv = new PhotoView(getContext());
new SimpleTask<Drawable>() {
@Override
protected Drawable onExecute(Context context, Bundle args) throws Throwable {
long id = args.getLong("id");
String source = args.getString("source");
return HtmlHelper.decodeImage(context, id, source, true, null);
}
@Override
protected void onExecuted(Bundle args, Drawable drawable) {
pv.setImageDrawable(drawable);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getFragmentManager(), ex);
}
}.execute(getContext(), getActivity(), getArguments(), "view:image");
final Dialog dialog = new Dialog(getContext(), android.R.style.Theme_Black_NoTitleBar_Fullscreen);
dialog.setContentView(pv);
return dialog;
}
}
2019-08-04 09:22:53 +02:00
public static class FragmentDialogFull extends FragmentDialogEx {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final View dview = LayoutInflater.from(getContext()).inflate(R.layout.dialog_ask_again, null);
final TextView tvMessage = dview.findViewById(R.id.tvMessage);
final CheckBox cbNotAgain = dview.findViewById(R.id.cbNotAgain);
tvMessage.setText(getText(R.string.title_ask_show_html));
return new AlertDialog.Builder(getContext())
.setView(dview)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
getArguments().putString("name", "confirmed");
getArguments().putBoolean("value", true);
if (cbNotAgain.isChecked()) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
prefs.edit().putBoolean("show_html_confirmed", true).apply();
}
FragmentDialogWebView fragment = new FragmentDialogWebView();
fragment.setArguments(getArguments());
fragment.show(getFragmentManager(), "message:full");
sendResult(RESULT_OK);
}
})
.create();
}
}
2019-08-04 09:22:53 +02:00
public static class FragmentDialogWebView extends FragmentDialogEx {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
boolean show_images = getArguments().getBoolean("show_images");
float textSize = getArguments().getFloat("text_size");
2019-07-01 23:00:22 +02:00
final View dview = LayoutInflater.from(getContext()).inflate(R.layout.dialog_webview, null);
final WebView webView = dview.findViewById(R.id.webView);
final ContentLoadingProgressBar pbWait = dview.findViewById(R.id.pbWait);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
boolean inline = prefs.getBoolean("inline_images", false);
boolean autocontent = prefs.getBoolean("autocontent", false);
setupWebView(webView);
WebSettings settings = webView.getSettings();
settings.setDefaultFontSize(Math.round(textSize));
settings.setDefaultFixedFontSize(Math.round(textSize));
settings.setLoadsImagesAutomatically(show_images || inline);
settings.setBlockNetworkLoads(!show_images && !autocontent);
settings.setBlockNetworkImage(!show_images && !autocontent);
settings.setBuiltInZoomControls(true);
settings.setDisplayZoomControls(false);
2019-07-01 23:00:22 +02:00
Dialog dialog = new Dialog(getContext(), android.R.style.Theme_Light_NoTitleBar_Fullscreen);
dialog.setContentView(dview);
new SimpleTask<String>() {
2019-07-01 23:00:22 +02:00
@Override
protected void onPreExecute(Bundle args) {
webView.setVisibility(View.GONE);
pbWait.setVisibility(View.VISIBLE);
}
@Override
protected void onPostExecute(Bundle args) {
pbWait.setVisibility(View.GONE);
}
@Override
protected String onExecute(Context context, Bundle args) throws Throwable {
long id = args.getLong("id");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null || !message.content)
return null;
File file = message.getFile(context);
if (!file.exists())
return null;
String html = HtmlHelper.getHtmlEmbedded(context, id, Helper.readText(file));
// Remove viewport limitations
Document doc = Jsoup.parse(html);
for (Element meta : doc.select("meta").select("[name=viewport]")) {
String content = meta.attr("content");
String[] params = content.split(";");
if (params.length > 0) {
List<String> viewport = new ArrayList<>();
for (String param : params)
if (!param.toLowerCase().contains("maximum-scale") &&
!param.toLowerCase().contains("user-scalable"))
viewport.add(param.trim());
if (viewport.size() == 0)
meta.attr("content", "");
else
meta.attr("content", TextUtils.join(" ;", viewport) + ";");
}
}
return doc.html();
}
@Override
protected void onExecuted(Bundle args, String html) {
webView.loadDataWithBaseURL("", html, "text/html", "UTF-8", null);
2019-07-01 23:00:22 +02:00
webView.setVisibility(View.VISIBLE);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getFragmentManager(), ex);
}
}.execute(getContext(), getActivity(), getArguments(), "message:full");
return dialog;
}
private void setupWebView(WebView webView) {
webView.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
Log.i("Open url=" + url);
Uri uri = Uri.parse(url);
if ("cid".equals(uri.getScheme()) || "data".equals(uri.getScheme()))
return false;
2019-07-10 18:17:28 +02:00
FragmentManager manager = getFragmentManager();
if (manager == null)
return false;
Bundle args = new Bundle();
args.putParcelable("uri", uri);
args.putString("title", null);
FragmentDialogLink fragment = new FragmentDialogLink();
fragment.setArguments(args);
2019-07-10 18:17:28 +02:00
fragment.show(manager, "open:link");
return true;
}
});
webView.setDownloadListener(new DownloadListener() {
public void onDownloadStart(
String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
Log.i("Download url=" + url + " mime type=" + mimetype);
Uri uri = Uri.parse(url);
if ("cid".equals(uri.getScheme()) || "data".equals(uri.getScheme()))
return;
2019-07-01 20:34:02 +02:00
Helper.view(getContext(), uri, true);
}
});
webView.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View view) {
WebView.HitTestResult result = ((WebView) view).getHitTestResult();
if (result.getType() == WebView.HitTestResult.IMAGE_TYPE ||
result.getType() == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE) {
Log.i("Long press url=" + result.getExtra());
Uri uri = Uri.parse(result.getExtra());
if ("cid".equals(uri.getScheme()) || "data".equals(uri.getScheme()))
return false;
2019-07-01 20:34:02 +02:00
Helper.view(getContext(), uri, true);
return true;
}
return false;
}
});
WebSettings settings = webView.getSettings();
settings.setUseWideViewPort(true);
settings.setLoadWithOverviewMode(true);
settings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.TEXT_AUTOSIZING);
settings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
settings.setAllowFileAccess(false);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
boolean monospaced = prefs.getBoolean("monospaced", false);
if (monospaced)
settings.setStandardFontFamily("monospace");
}
}
2019-08-04 09:22:53 +02:00
public static class FragmentKeywordManage extends FragmentDialogEx {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final long id = getArguments().getLong("id");
List<String> keywords = Arrays.asList(getArguments().getStringArray("keywords"));
List<String> fkeywords = Arrays.asList(getArguments().getStringArray("fkeywords"));
final List<String> items = new ArrayList<>(keywords);
for (String keyword : fkeywords)
if (!items.contains(keyword))
items.add(keyword);
Collections.sort(items);
final boolean[] selected = new boolean[items.size()];
final boolean[] dirty = new boolean[items.size()];
for (int i = 0; i < selected.length; i++) {
selected[i] = keywords.contains(items.get(i));
dirty[i] = false;
}
return new AlertDialog.Builder(getContext())
.setTitle(R.string.title_manage_keywords)
.setMultiChoiceItems(items.toArray(new String[0]), selected, new DialogInterface.OnMultiChoiceClickListener() {
@Override
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
dirty[which] = true;
}
})
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
2019-08-13 10:27:17 +02:00
if (!ActivityBilling.isPro(getContext())) {
getContext().startActivity(new Intent(getContext(), ActivityBilling.class));
return;
}
Bundle args = new Bundle();
args.putLong("id", id);
args.putStringArray("keywords", items.toArray(new String[0]));
args.putBooleanArray("selected", selected);
args.putBooleanArray("dirty", dirty);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
String[] keywords = args.getStringArray("keywords");
boolean[] selected = args.getBooleanArray("selected");
boolean[] dirty = args.getBooleanArray("dirty");
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
for (int i = 0; i < selected.length; i++)
if (dirty[i])
EntityOperation.queue(context, message, EntityOperation.KEYWORD, keywords[i], selected[i]);
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getFragmentManager(), ex);
}
2019-06-30 23:12:36 +02:00
}.execute(getContext(), getActivity(), args, "message:keywords:manage");
}
})
.setNeutralButton(R.string.title_add, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Bundle args = new Bundle();
args.putLong("id", id);
FragmentKeywordAdd fragment = new FragmentKeywordAdd();
fragment.setArguments(args);
fragment.show(getFragmentManager(), "keyword:add");
}
})
.create();
}
}
2019-08-04 09:22:53 +02:00
public static class FragmentKeywordAdd extends FragmentDialogEx {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
final long id = getArguments().getLong("id");
View view = LayoutInflater.from(getContext()).inflate(R.layout.dialog_keyword, null);
final EditText etKeyword = view.findViewById(R.id.etKeyword);
etKeyword.setText(null);
return new AlertDialog.Builder(getContext())
.setView(view)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
2019-08-13 10:27:17 +02:00
if (!ActivityBilling.isPro(getContext())) {
getContext().startActivity(new Intent(getContext(), ActivityBilling.class));
return;
}
String keyword = Helper.sanitizeKeyword(etKeyword.getText().toString());
if (!TextUtils.isEmpty(keyword)) {
Bundle args = new Bundle();
args.putLong("id", id);
args.putString("keyword", keyword);
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
String keyword = args.getString("keyword");
DB db = DB.getInstance(context);
EntityMessage message = db.message().getMessage(id);
if (message == null)
return null;
EntityOperation.queue(context, message, EntityOperation.KEYWORD, keyword, true);
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(getFragmentManager(), ex);
}
2019-06-30 23:12:36 +02:00
}.execute(getContext(), getActivity(), args, "message:keyword:add");
}
}
}).create();
}
}
2018-08-02 13:33:06 +00:00
}