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

390 lines
14 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;
2018-11-11 10:08:57 +00:00
import android.graphics.drawable.Drawable;
2018-08-04 12:49:44 +00:00
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-04 12:49:44 +00:00
import android.widget.Toast;
2018-08-03 13:46:25 +00:00
2018-08-08 06:55:47 +00:00
import androidx.annotation.NonNull;
import androidx.core.content.FileProvider;
import androidx.lifecycle.LifecycleOwner;
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;
import java.io.File;
import java.io.IOException;
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 Context context;
2018-12-24 13:41:49 +00:00
private LayoutInflater inflater;
private LifecycleOwner owner;
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 tvType;
private TextView tvSize;
private ImageView ivStatus;
private ImageButton ibSave;
private TextView tvDebug;
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);
2019-01-10 10:42:39 +00:00
tvType = itemView.findViewById(R.id.tvType);
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-01-10 10:42:39 +00:00
tvDebug = itemView.findViewById(R.id.tvDebug);
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-03-15 11:53:22 +00:00
view.setAlpha(attachment.isInline() ? 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);
2019-01-10 10:42:39 +00:00
tvType.setText(attachment.type);
tvType.setVisibility(debug || BuildConfig.DEBUG ? View.VISIBLE : View.GONE);
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-05-08 14:44:01 +00:00
ibSave.setVisibility(readonly && 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-01-16 18:27:03 +00:00
if (debug)
tvDebug.setText(attachment.error +
"\n" + attachment.type +
" " + attachment.disposition +
" " + attachment.cid + " " + attachment.encryption);
else if (attachment.error != null)
tvDebug.setText(attachment.error);
tvDebug.setVisibility(debug || attachment.error != null ? View.VISIBLE : View.GONE);
}
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-03-14 07:51:22 +00:00
protected Void onExecute(Context context, Bundle args) throws IOException {
2019-03-14 07:18:42 +00:00
long id = args.getLong("id");
DB db = DB.getInstance(context);
EntityAttachment attachment = db.attachment().getAttachment(id);
if (attachment == null)
2019-03-21 19:58:00 +00:00
return null;
2019-03-14 07:18:42 +00:00
db.attachment().setDownloaded(id, null);
attachment.getFile(context).delete();
db.attachment().deleteAttachment(id);
2019-01-17 09:57:01 +00:00
return null;
}
@Override
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
}.execute(context, owner, args, "attachment:delete");
}
private void onSave(EntityAttachment attachment) {
LocalBroadcastManager lbm = LocalBroadcastManager.getInstance(context);
lbm.sendBroadcast(
new Intent(ActivityView.ACTION_STORE_ATTACHMENT)
.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-01-17 09:57:01 +00:00
final Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID, file);
Log.i("uri=" + uri);
// Build intent
final Intent intent = new Intent(Intent.ACTION_VIEW);
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-01-17 09:57:01 +00:00
Toast.makeText(context, context.getString(R.string.title_no_viewer, attachment.type), Toast.LENGTH_LONG).show();
else
2019-01-17 09:57:01 +00:00
context.startActivity(intent);
}
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
long sequence = args.getInt("sequence");
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-08 08:32:37 +00:00
EntityOperation.queue(context, db, 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(context, owner, ex);
}
}.execute(context, owner, args, "attachment:fetch");
2018-08-03 13:46:25 +00:00
}
2018-11-11 10:08:57 +00:00
private class NameResolveInfo {
Drawable icon;
String name;
ResolveInfo info;
NameResolveInfo(Drawable icon, String name, ResolveInfo info) {
this.icon = icon;
this.name = name;
this.info = info;
}
}
2018-08-03 13:46:25 +00:00
}
2018-08-14 14:16:29 +00:00
AdapterAttachment(Context context, LifecycleOwner owner, boolean readonly) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
2018-08-03 13:46:25 +00:00
this.context = context;
2018-12-24 13:41:49 +00:00
this.inflater = LayoutInflater.from(context);
this.owner = owner;
2018-08-14 14:16:29 +00:00
this.readonly = readonly;
this.debug = prefs.getBoolean("debug", false);
2018-08-03 13:46:25 +00:00
setHasStableIds(true);
}
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();
}
}