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

410 lines
15 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
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 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;
2018-08-04 12:49:44 +00:00
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.os.Bundle;
2018-10-11 06:07:47 +00:00
import android.text.TextUtils;
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;
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;
2019-06-19 08:55:11 +00:00
import com.google.android.material.snackbar.Snackbar;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
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;
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
2018-08-05 06:08:12 +00:00
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
2019-05-08 14:44:01 +00:00
private View view;
private ImageButton ibDelete;
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);
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);
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);
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);
2018-08-03 13:46:25 +00:00
}
2018-08-13 08:58:36 +00:00
private void bindTo(EntityAttachment attachment) {
2019-07-08 10:37:24 +00:00
view.setAlpha(attachment.isInline() && attachment.isImage() ? Helper.LOW_LIGHT : 1.0f);
2019-01-09 11:09:35 +00:00
2019-05-08 14:44:01 +00:00
ibDelete.setVisibility(readonly ? View.GONE : attachment.isInline() ? View.INVISIBLE : View.VISIBLE);
tvName.setText(attachment.name);
if (attachment.size != null)
tvSize.setText(Helper.humanReadableByteCount(attachment.size, true));
tvSize.setVisibility(attachment.size == null ? View.GONE : View.VISIBLE);
2018-08-19 06:53:56 +00:00
if (attachment.available) {
ivStatus.setImageResource(R.drawable.baseline_visibility_24);
ivStatus.setVisibility(View.VISIBLE);
} else {
if (attachment.progress == null) {
2018-09-22 08:35:54 +00:00
ivStatus.setImageResource(R.drawable.baseline_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 (attachment.disposition != null)
sb.append(' ').append(attachment.disposition);
if (debug || BuildConfig.DEBUG) {
if (attachment.cid != null)
sb.append(' ').append(attachment.cid);
if (attachment.encryption != null)
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-03-15 11:53:22 +00:00
final EntityAttachment attachment = items.get(pos);
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)
onDownload(attachment);
}
}
}
2018-08-14 14:16:29 +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) {
Helper.unexpectedError(parentFragment.getFragmentManager(), 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(
2019-06-19 09:51:15 +00:00
new Intent(FragmentMessages.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-01-17 09:57:01 +00:00
.putExtra("type", attachment.type));
}
private void onShare(EntityAttachment attachment) {
// https://developer.android.com/reference/android/support/v4/content/FileProvider
File file = attachment.getFile(context);
2019-08-24 07:52:39 +00:00
Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID, file);
2019-01-17 09:57:01 +00:00
Log.i("uri=" + uri);
// Build intent
2019-08-24 07:52:39 +00:00
Intent intent = new Intent(Intent.ACTION_VIEW);
2019-01-17 09:57:01 +00:00
intent.setDataAndType(uri, attachment.type);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
if (!TextUtils.isEmpty(attachment.name))
2019-02-19 14:46:20 +00:00
intent.putExtra(Intent.EXTRA_TITLE, Helper.sanitizeFilename(attachment.name));
Log.i("Intent=" + intent + " type=" + attachment.type);
2019-01-17 09:57:01 +00:00
// Get targets
PackageManager pm = context.getPackageManager();
List<ResolveInfo> ris = pm.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo ri : ris) {
Log.i("Target=" + ri);
context.grantUriPermission(ri.activityInfo.packageName, uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
// Check if viewer available
if (ris.size() == 0)
2019-06-24 07:49:45 +00:00
Snackbar.make(
(View) itemView.getParent(),
context.getString(R.string.title_no_viewer, attachment.type),
Snackbar.LENGTH_LONG).show();
else
context.startActivity(intent);
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-01-17 09:57:01 +00:00
db.attachment().setProgress(id, 0);
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
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) {
Helper.unexpectedError(parentFragment.getFragmentManager(), 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);
2018-08-03 13:46:25 +00:00
setHasStableIds(true);
owner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroyed() {
Log.i(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) {
2018-12-24 12:27:45 +00:00
Log.i("Inserted @" + position + " #" + count);
2018-08-03 13:46:25 +00:00
}
@Override
public void onRemoved(int position, int count) {
2018-12-24 12:27:45 +00:00
Log.i("Removed @" + position + " #" + count);
2018-08-03 13:46:25 +00:00
}
@Override
public void onMoved(int fromPosition, int toPosition) {
2018-12-24 12:27:45 +00:00
Log.i("Moved " + fromPosition + ">" + toPosition);
2018-08-03 13:46:25 +00:00
}
@Override
public void onChanged(int position, int count, Object payload) {
2018-12-24 12:27:45 +00:00
Log.i("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();
}
}