FairEmail/app/src/main/java/eu/faircode/email/AdapterAttachment.java

446 lines
16 KiB
Java
Raw Normal View History

2018-08-03 13:46:25 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-03 13:46:25 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-03 13:46:25 +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-03 13:46:25 +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-03 13:46:25 +00:00
2020-01-05 17:32:53 +00:00
Copyright 2018-2020 by Marcel Bokhorst (M66B)
2018-08-03 13:46:25 +00:00
*/
import android.content.Context;
2018-08-04 12:49:44 +00:00
import android.content.Intent;
import android.content.SharedPreferences;
2020-07-17 07:33:14 +00:00
import android.net.Uri;
import android.os.Bundle;
2018-08-03 13:46:25 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
2019-05-08 14:44:01 +00:00
import android.widget.ImageButton;
2018-08-03 19:12:19 +00:00
import android.widget.ImageView;
2018-08-05 06:18:43 +00:00
import android.widget.ProgressBar;
2018-08-03 13:46:25 +00:00
import android.widget.TextView;
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
2020-07-17 07:33:14 +00:00
import androidx.core.content.FileProvider;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleObserver;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.OnLifecycleEvent;
2018-08-23 06:33:27 +00:00
import androidx.localbroadcastmanager.content.LocalBroadcastManager;
2019-03-15 13:54:25 +00:00
import androidx.preference.PreferenceManager;
2018-08-08 06:55:47 +00:00
import androidx.recyclerview.widget.DiffUtil;
import androidx.recyclerview.widget.ListUpdateCallback;
import androidx.recyclerview.widget.RecyclerView;
2020-07-17 07:33:14 +00:00
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2020-07-01 17:46:07 +00:00
import javax.mail.Part;
2018-08-03 13:46:25 +00:00
public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.ViewHolder> {
private Fragment parentFragment;
2018-08-03 13:46:25 +00:00
private Context context;
private LifecycleOwner owner;
private LayoutInflater inflater;
2018-12-24 13:41:49 +00:00
2018-08-14 14:16:29 +00:00
private boolean readonly;
2018-08-13 08:58:36 +00:00
private boolean debug;
2020-08-07 13:23:07 +00:00
private int dp12;
2018-08-03 13:46:25 +00:00
2019-03-15 11:53:22 +00:00
private List<EntityAttachment> items = new ArrayList<>();
2018-08-03 13:46:25 +00:00
2020-07-17 07:33:14 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener, View.OnLongClickListener {
2019-05-08 14:44:01 +00:00
private View view;
private ImageButton ibDelete;
2020-02-01 19:33:24 +00:00
private ImageView ivType;
2020-07-01 17:46:07 +00:00
private ImageView ivDisposition;
2019-05-08 14:44:01 +00:00
private TextView tvName;
private TextView tvSize;
private ImageView ivStatus;
private ImageButton ibSave;
2019-05-24 07:10:20 +00:00
private TextView tvType;
2019-07-08 10:37:24 +00:00
private TextView tvError;
2019-05-08 14:44:01 +00:00
private ProgressBar progressbar;
2018-08-03 13:46:25 +00:00
ViewHolder(View itemView) {
super(itemView);
2019-03-15 11:53:22 +00:00
view = itemView.findViewById(R.id.clItem);
2019-05-08 14:44:01 +00:00
ibDelete = itemView.findViewById(R.id.ibDelete);
2020-02-01 19:33:24 +00:00
ivType = itemView.findViewById(R.id.ivType);
2018-08-03 13:46:25 +00:00
tvName = itemView.findViewById(R.id.tvName);
2018-08-03 19:12:19 +00:00
tvSize = itemView.findViewById(R.id.tvSize);
2018-08-04 10:32:34 +00:00
ivStatus = itemView.findViewById(R.id.ivStatus);
2019-05-08 14:44:01 +00:00
ibSave = itemView.findViewById(R.id.ibSave);
2019-05-24 07:10:20 +00:00
tvType = itemView.findViewById(R.id.tvType);
2020-07-01 17:46:07 +00:00
ivDisposition = itemView.findViewById(R.id.ivDisposition);
2019-07-08 10:37:24 +00:00
tvError = itemView.findViewById(R.id.tvError);
2018-08-05 06:18:43 +00:00
progressbar = itemView.findViewById(R.id.progressbar);
2018-08-03 13:46:25 +00:00
}
private void wire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(this);
2019-05-08 14:44:01 +00:00
ibDelete.setOnClickListener(this);
ibSave.setOnClickListener(this);
2020-07-17 07:33:14 +00:00
view.setOnLongClickListener(this);
2018-08-03 13:46:25 +00:00
}
private void unwire() {
2019-03-15 11:53:22 +00:00
view.setOnClickListener(null);
2019-05-08 14:44:01 +00:00
ibDelete.setOnClickListener(null);
ibSave.setOnClickListener(null);
2020-07-17 07:33:14 +00:00
view.setOnLongClickListener(null);
2018-08-03 13:46:25 +00:00
}
2018-08-13 08:58:36 +00:00
private void bindTo(EntityAttachment attachment) {
2020-04-23 18:12:37 +00:00
view.setAlpha(!attachment.isAttachment() ? Helper.LOW_LIGHT : 1.0f);
2019-01-09 11:09:35 +00:00
2020-08-07 13:23:07 +00:00
ViewGroup.MarginLayoutParams lparam = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
lparam.setMarginStart(attachment.subsequence == null ? 0 : dp12);
view.setLayoutParams(lparam);
2020-06-22 11:12:20 +00:00
ibDelete.setVisibility(readonly ? View.GONE : View.VISIBLE);
2020-06-12 09:56:58 +00:00
int resid = 0;
2020-07-14 13:07:09 +00:00
String extension = Helper.guessExtension(attachment.getMimeType());
2020-06-12 09:56:58 +00:00
if (extension != null)
resid = context.getResources().getIdentifier("file_" + extension, "drawable", context.getPackageName());
if (resid == 0)
ivType.setImageDrawable(null);
else
ivType.setImageResource(resid);
2020-06-12 09:56:58 +00:00
2020-07-01 17:46:07 +00:00
ivDisposition.setImageLevel(Part.INLINE.equals(attachment.disposition) ? 1 : 0);
ivDisposition.setVisibility(
Part.ATTACHMENT.equals(attachment.disposition) ||
Part.INLINE.equals(attachment.disposition)
? View.VISIBLE : View.INVISIBLE);
tvName.setText(attachment.name);
if (attachment.size != null)
2020-07-02 08:19:01 +00:00
tvSize.setText(Helper.humanReadableByteCount(attachment.size));
tvSize.setVisibility(attachment.size == null ? View.GONE : View.VISIBLE);
2018-08-19 06:53:56 +00:00
if (attachment.available) {
2020-09-28 07:18:56 +00:00
ivStatus.setImageResource(R.drawable.twotone_visibility_24);
2018-08-19 06:53:56 +00:00
ivStatus.setVisibility(View.VISIBLE);
} else {
if (attachment.progress == null) {
2020-09-28 07:18:56 +00:00
ivStatus.setImageResource(R.drawable.twotone_cloud_download_24);
ivStatus.setVisibility(View.VISIBLE);
} else
ivStatus.setVisibility(View.GONE);
}
2018-08-13 08:58:36 +00:00
2019-09-22 08:29:59 +00:00
ibSave.setVisibility(attachment.available ? View.VISIBLE : View.GONE);
2018-08-14 14:16:29 +00:00
2018-08-13 08:58:36 +00:00
if (attachment.progress != null)
progressbar.setProgress(attachment.progress);
progressbar.setVisibility(
2018-08-19 06:53:56 +00:00
attachment.progress == null || attachment.available ? View.GONE : View.VISIBLE);
2018-08-13 08:58:36 +00:00
2019-07-08 10:37:24 +00:00
StringBuilder sb = new StringBuilder();
sb.append(attachment.type);
if (debug || BuildConfig.DEBUG) {
if (attachment.cid != null)
sb.append(' ').append(attachment.cid);
2020-04-15 06:52:01 +00:00
if (attachment.isEncryption())
2019-07-08 10:37:24 +00:00
sb.append(' ').append(attachment.encryption);
}
tvType.setText(sb.toString());
2019-05-24 07:10:20 +00:00
2019-07-08 10:37:24 +00:00
tvError.setText(attachment.error);
tvError.setVisibility(attachment.error == null ? View.GONE : View.VISIBLE);
}
2018-08-03 13:46:25 +00:00
@Override
public void onClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return;
2019-11-11 08:30:33 +00:00
EntityAttachment attachment = items.get(pos);
if (attachment == null)
return;
2018-08-14 14:16:29 +00:00
2019-05-08 14:44:01 +00:00
if (view.getId() == R.id.ibDelete)
2019-01-17 09:57:01 +00:00
onDelete(attachment);
2019-05-08 14:44:01 +00:00
else if (view.getId() == R.id.ibSave)
2019-01-17 09:57:01 +00:00
onSave(attachment);
else {
if (attachment.available)
onShare(attachment);
else {
if (attachment.progress == null && attachment.subsequence == null)
2019-01-17 09:57:01 +00:00
onDownload(attachment);
}
}
}
2018-08-14 14:16:29 +00:00
2020-07-17 07:33:14 +00:00
@Override
public boolean onLongClick(View view) {
int pos = getAdapterPosition();
if (pos == RecyclerView.NO_POSITION)
return false;
EntityAttachment attachment = items.get(pos);
if (attachment == null || !attachment.available)
return false;
2020-10-29 07:32:23 +00:00
try {
File file = attachment.getFile(context);
Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID, file);
2020-11-17 13:49:36 +00:00
// TODO: consider using getUriForFile(..., displayName)
2020-10-29 07:32:23 +00:00
Intent send = new Intent();
send.setAction(Intent.ACTION_SEND);
send.putExtra(Intent.EXTRA_STREAM, uri);
send.setType(attachment.getMimeType());
send.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(Intent.createChooser(send, context.getString(R.string.title_select_app)));
return true;
} catch (Throwable ex) {
/*
java.lang.IllegalArgumentException: Failed to resolve canonical path for ...
at androidx.core.content.FileProvider$SimplePathStrategy.getUriForFile(SourceFile:730)
at androidx.core.content.FileProvider.getUriForFile(SourceFile:418)
*/
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
return false;
}
2020-07-17 07:33:14 +00:00
}
2019-01-17 09:57:01 +00:00
private void onDelete(final EntityAttachment attachment) {
Bundle args = new Bundle();
args.putLong("id", attachment.id);
new SimpleTask<Void>() {
@Override
2019-08-01 07:24:21 +00:00
protected Void onExecute(Context context, Bundle args) {
2019-03-14 07:18:42 +00:00
long id = args.getLong("id");
DB db = DB.getInstance(context);
2019-07-24 12:43:45 +00:00
try {
db.beginTransaction();
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null)
return null;
db.attachment().deleteAttachment(attachment.id);
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2019-07-30 12:45:40 +00:00
attachment.getFile(context).delete();
2019-03-14 07:18:42 +00:00
2019-01-17 09:57:01 +00:00
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
2019-12-06 07:50:46 +00:00
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
2019-01-17 09:57:01 +00:00
}
}.execute(context, owner, args, "attachment:delete");
}
private void onSave(EntityAttachment attachment) {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
2020-10-17 18:00:54 +00:00
new Intent(FragmentBase.ACTION_STORE_ATTACHMENT)
2019-01-17 09:57:01 +00:00
.putExtra("id", attachment.id)
2019-02-19 14:46:20 +00:00
.putExtra("name", Helper.sanitizeFilename(attachment.name))
2019-10-20 18:31:40 +00:00
.putExtra("type", attachment.getMimeType()));
2019-01-17 09:57:01 +00:00
}
private void onShare(EntityAttachment attachment) {
2020-01-13 20:04:26 +00:00
Helper.share(context, attachment.getFile(context), attachment.getMimeType(), attachment.name);
2019-01-17 09:57:01 +00:00
}
2018-08-23 06:33:27 +00:00
2019-01-17 09:57:01 +00:00
private void onDownload(EntityAttachment attachment) {
Bundle args = new Bundle();
args.putLong("id", attachment.id);
args.putLong("message", attachment.message);
args.putInt("sequence", attachment.sequence);
2019-01-17 09:57:01 +00:00
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
long id = args.getLong("id");
long mid = args.getLong("message");
2019-01-17 09:57:01 +00:00
DB db = DB.getInstance(context);
try {
db.beginTransaction();
EntityMessage message = db.message().getMessage(mid);
if (message == null || message.uid == null)
return null;
2019-10-05 10:42:04 +00:00
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null || attachment.progress != null || attachment.available)
return null;
2019-01-17 09:57:01 +00:00
2019-05-18 06:49:20 +00:00
EntityOperation.queue(context, message, EntityOperation.ATTACHMENT, id);
2019-01-17 09:57:01 +00:00
db.setTransactionSuccessful();
} finally {
db.endTransaction();
}
2019-01-17 09:57:01 +00:00
2019-12-09 18:44:27 +00:00
ServiceSynchronize.eval(context, "attachment");
2019-12-07 19:32:58 +00:00
2019-01-17 09:57:01 +00:00
return null;
2018-08-04 10:32:34 +00:00
}
2019-01-17 09:57:01 +00:00
@Override
protected void onException(Bundle args, Throwable ex) {
2019-12-06 07:50:46 +00:00
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
2019-01-17 09:57:01 +00:00
}
}.execute(context, owner, args, "attachment:fetch");
2018-08-03 13:46:25 +00:00
}
}
AdapterAttachment(Fragment parentFragment, boolean readonly) {
this.parentFragment = parentFragment;
2018-08-14 14:16:29 +00:00
this.readonly = readonly;
this.context = parentFragment.getContext();
this.owner = parentFragment.getViewLifecycleOwner();
this.inflater = LayoutInflater.from(context);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
this.debug = prefs.getBoolean("debug", false);
2020-08-07 13:23:07 +00:00
this.dp12 = Helper.dp2pixels(context, 12);
2018-08-03 13:46:25 +00:00
setHasStableIds(true);
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
2019-12-07 16:02:42 +00:00
Log.d(AdapterAttachment.this + " parent destroyed");
AdapterAttachment.this.parentFragment = null;
}
});
2018-08-03 13:46:25 +00:00
}
2018-08-13 08:58:36 +00:00
public void set(@NonNull List<EntityAttachment> attachments) {
2018-12-24 12:27:45 +00:00
Log.i("Set attachments=" + attachments.size());
2018-08-03 13:46:25 +00:00
2018-08-13 08:58:36 +00:00
Collections.sort(attachments, new Comparator<EntityAttachment>() {
2018-08-03 13:46:25 +00:00
@Override
2018-08-13 08:58:36 +00:00
public int compare(EntityAttachment a1, EntityAttachment a2) {
2018-08-03 13:46:25 +00:00
return a1.sequence.compareTo(a2.sequence);
}
});
2019-03-15 11:53:22 +00:00
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new DiffCallback(items, attachments), false);
2018-08-03 13:46:25 +00:00
2019-03-15 11:53:22 +00:00
items = attachments;
2018-08-03 13:46:25 +00:00
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Inserted @" + position + " #" + count);
2018-08-03 13:46:25 +00:00
}
@Override
public void onRemoved(int position, int count) {
2019-12-07 16:02:42 +00:00
Log.d("Removed @" + position + " #" + count);
2018-08-03 13:46:25 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2019-12-07 16:02:42 +00:00
Log.d("Moved " + fromPosition + ">" + toPosition);
2018-08-03 13:46:25 +00:00
}
@Override
public void onChanged(int position, int count, Object payload) {
2019-12-07 16:02:42 +00:00
Log.d("Changed @" + position + " #" + count);
2018-08-03 13:46:25 +00:00
}
});
diff.dispatchUpdatesTo(this);
2018-08-03 13:46:25 +00:00
}
2019-02-10 18:02:55 +00:00
private class DiffCallback extends DiffUtil.Callback {
2019-03-15 11:53:22 +00:00
private List<EntityAttachment> prev = new ArrayList<>();
private List<EntityAttachment> next = new ArrayList<>();
2018-08-03 13:46:25 +00:00
2019-02-10 18:02:55 +00:00
DiffCallback(List<EntityAttachment> prev, List<EntityAttachment> next) {
2019-03-15 11:53:22 +00:00
this.prev.addAll(prev);
this.next.addAll(next);
2018-08-03 13:46:25 +00:00
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
2018-08-13 08:58:36 +00:00
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
2018-08-03 13:46:25 +00:00
return a1.id.equals(a2.id);
}
@Override
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
2018-08-13 08:58:36 +00:00
EntityAttachment a1 = prev.get(oldItemPosition);
EntityAttachment a2 = next.get(newItemPosition);
2018-08-03 13:46:25 +00:00
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
2019-03-15 11:53:22 +00:00
return items.get(position).id;
2018-08-03 13:46:25 +00:00
}
@Override
public int getItemCount() {
2019-03-15 11:53:22 +00:00
return items.size();
2018-08-03 13:46:25 +00:00
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
2018-12-24 13:41:49 +00:00
return new ViewHolder(inflater.inflate(R.layout.item_attachment, parent, false));
2018-08-03 13:46:25 +00:00
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
2019-03-15 11:53:22 +00:00
EntityAttachment attachment = items.get(position);
holder.bindTo(attachment);
2018-08-03 13:46:25 +00:00
holder.wire();
}
}