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

297 lines
11 KiB
Java
Raw Normal View History

2018-08-03 13:46:25 +00:00
package eu.faircode.email;
/*
This file is part of Safe email.
Safe email is free software: you can redistribute it and/or modify
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.
NetGuard is distributed in the hope that it will be useful,
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
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
Copyright 2018 by Marcel Bokhorst (M66B)
*/
import android.content.Context;
2018-08-04 12:49:44 +00:00
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
2018-08-03 13:46:25 +00:00
import android.support.annotation.NonNull;
2018-08-04 12:49:44 +00:00
import android.support.v4.content.FileProvider;
2018-08-03 13:46:25 +00:00
import android.support.v7.util.DiffUtil;
import android.support.v7.util.ListUpdateCallback;
import android.support.v7.widget.RecyclerView;
2018-08-04 12:49:44 +00:00
import android.text.TextUtils;
2018-08-03 13:46:25 +00:00
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
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-04 12:49:44 +00:00
import java.io.File;
import java.io.FileOutputStream;
2018-08-03 13:46:25 +00:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
2018-08-03 19:12:19 +00:00
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
2018-08-03 13:46:25 +00:00
public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.ViewHolder> {
private Context context;
2018-08-03 19:12:19 +00:00
private ExecutorService executor = Executors.newCachedThreadPool();
2018-08-03 13:46:25 +00:00
2018-08-05 06:18:43 +00:00
private List<TupleAttachment> all = new ArrayList<>();
private List<TupleAttachment> filtered = 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 {
2018-08-03 13:46:25 +00:00
View itemView;
TextView tvName;
2018-08-03 19:12:19 +00:00
TextView tvSize;
2018-08-04 10:32:34 +00:00
ImageView ivStatus;
2018-08-05 06:18:43 +00:00
ProgressBar progressbar;
2018-08-03 13:46:25 +00:00
ViewHolder(View itemView) {
super(itemView);
this.itemView = itemView;
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);
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() {
itemView.setOnClickListener(this);
}
private void unwire() {
itemView.setOnClickListener(null);
}
private void bindTo(TupleAttachment attachment) {
tvName.setText(attachment.name);
if (attachment.size != null)
tvSize.setText(Helper.humanReadableByteCount(attachment.size, false));
tvSize.setVisibility(attachment.size == null ? View.GONE : View.VISIBLE);
if (attachment.progress != null)
progressbar.setProgress(attachment.progress);
progressbar.setVisibility(
attachment.progress == null || attachment.content ? View.GONE : View.VISIBLE);
if (attachment.content) {
ivStatus.setImageResource(R.drawable.baseline_visibility_24);
ivStatus.setVisibility(View.VISIBLE);
} else {
if (attachment.progress == null) {
ivStatus.setImageResource(R.drawable.baseline_get_app_24);
ivStatus.setVisibility(View.VISIBLE);
} else
ivStatus.setVisibility(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;
final TupleAttachment attachment = filtered.get(pos);
2018-08-04 10:32:34 +00:00
if (attachment != null)
2018-08-05 06:18:43 +00:00
if (attachment.content) {
2018-08-04 14:50:30 +00:00
// Build file name
2018-08-05 05:38:48 +00:00
final File dir = new File(context.getCacheDir(), "attachments");
2018-08-05 06:08:12 +00:00
final File file = new File(dir, TextUtils.isEmpty(attachment.name)
2018-08-05 06:18:43 +00:00
? "attachment_" + attachment.id
: attachment.name.toLowerCase().replaceAll("[^a-zA-Z0-9-.]" , "_"));
2018-08-04 14:50:30 +00:00
2018-08-05 05:38:48 +00:00
// https://developer.android.com/reference/android/support/v4/content/FileProvider
Uri uri = FileProvider.getUriForFile(context, "eu.faircode.email" , file);
2018-08-05 05:38:48 +00:00
// Build intent
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(uri);
//intent.setType(attachment.type);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Log.i(Helper.TAG, "Sharing " + file + " type=" + attachment.type);
// Set permissions
List<ResolveInfo> targets = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo resolveInfo : targets)
context.grantUriPermission(resolveInfo.activityInfo.packageName, uri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
2018-08-04 14:50:30 +00:00
// Check if viewer available
2018-08-05 05:38:48 +00:00
if (targets.size() == 0) {
2018-08-04 14:50:30 +00:00
Toast.makeText(context, R.string.title_no_viewer, Toast.LENGTH_LONG).show();
return;
}
2018-08-04 10:32:34 +00:00
// View
2018-08-04 12:49:44 +00:00
executor.submit(new Runnable() {
@Override
public void run() {
try {
2018-08-04 14:50:30 +00:00
// Create file
2018-08-04 12:49:44 +00:00
if (!file.exists()) {
2018-08-05 05:38:48 +00:00
dir.mkdir();
2018-08-04 12:49:44 +00:00
file.createNewFile();
2018-08-05 06:18:43 +00:00
// Get attachment content
byte[] content = DB.getInstance(context).attachment().getContent(attachment.id);
// Write attachment content to file
2018-08-04 12:49:44 +00:00
FileOutputStream fos = null;
try {
fos = new FileOutputStream(file);
2018-08-05 06:18:43 +00:00
fos.write(content);
2018-08-04 12:49:44 +00:00
} finally {
if (fos != null)
fos.close();
}
}
2018-08-04 14:50:30 +00:00
// Start viewer
context.startActivity(intent);
2018-08-04 12:49:44 +00:00
} catch (Throwable ex) {
Log.i(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
}
}
});
2018-08-05 06:18:43 +00:00
} else {
if (attachment.progress == null)
// Download
executor.submit(new Runnable() {
@Override
public void run() {
DB db = DB.getInstance(context);
db.attachment().setProgress(attachment.id, 0);
EntityMessage message = db.message().getMessage(attachment.message);
EntityOperation.queue(context, message, EntityOperation.ATTACHMENT, attachment.sequence);
EntityOperation.process(context);
2018-08-05 06:18:43 +00:00
}
});
2018-08-04 10:32:34 +00:00
}
2018-08-03 13:46:25 +00:00
}
}
AdapterAttachment(Context context) {
this.context = context;
setHasStableIds(true);
}
2018-08-05 16:14:43 +00:00
public void set(@NonNull List<TupleAttachment> attachments) {
2018-08-03 13:46:25 +00:00
Log.i(Helper.TAG, "Set attachments=" + attachments.size());
2018-08-05 06:18:43 +00:00
Collections.sort(attachments, new Comparator<TupleAttachment>() {
2018-08-03 13:46:25 +00:00
@Override
2018-08-05 06:18:43 +00:00
public int compare(TupleAttachment a1, TupleAttachment a2) {
2018-08-03 13:46:25 +00:00
return a1.sequence.compareTo(a2.sequence);
}
});
all.clear();
all.addAll(attachments);
DiffUtil.DiffResult diff = DiffUtil.calculateDiff(new MessageDiffCallback(filtered, all));
filtered.clear();
filtered.addAll(all);
diff.dispatchUpdatesTo(new ListUpdateCallback() {
@Override
public void onInserted(int position, int count) {
Log.i(Helper.TAG, "Inserted @" + position + " #" + count);
}
@Override
public void onRemoved(int position, int count) {
Log.i(Helper.TAG, "Removed @" + position + " #" + count);
}
@Override
public void onMoved(int fromPosition, int toPosition) {
Log.i(Helper.TAG, "Moved " + fromPosition + ">" + toPosition);
}
@Override
public void onChanged(int position, int count, Object payload) {
Log.i(Helper.TAG, "Changed @" + position + " #" + count);
}
});
diff.dispatchUpdatesTo(AdapterAttachment.this);
}
private class MessageDiffCallback extends DiffUtil.Callback {
2018-08-05 06:18:43 +00:00
private List<TupleAttachment> prev;
private List<TupleAttachment> next;
2018-08-03 13:46:25 +00:00
2018-08-05 06:18:43 +00:00
MessageDiffCallback(List<TupleAttachment> prev, List<TupleAttachment> next) {
2018-08-03 13:46:25 +00:00
this.prev = prev;
this.next = next;
}
@Override
public int getOldListSize() {
return prev.size();
}
@Override
public int getNewListSize() {
return next.size();
}
@Override
public boolean areItemsTheSame(int oldItemPosition, int newItemPosition) {
2018-08-05 06:18:43 +00:00
TupleAttachment a1 = prev.get(oldItemPosition);
TupleAttachment 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-05 06:18:43 +00:00
TupleAttachment a1 = prev.get(oldItemPosition);
TupleAttachment a2 = next.get(newItemPosition);
2018-08-03 13:46:25 +00:00
return a1.equals(a2);
}
}
@Override
public long getItemId(int position) {
return filtered.get(position).id;
}
@Override
public int getItemCount() {
return filtered.size();
}
@Override
@NonNull
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
return new ViewHolder(LayoutInflater.from(context).inflate(R.layout.item_attachment, parent, false));
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.unwire();
2018-08-05 06:18:43 +00:00
TupleAttachment attachment = filtered.get(position);
holder.bindTo(attachment);
2018-08-03 13:46:25 +00:00
holder.wire();
}
}