2019-01-06 09:23:57 +00:00
|
|
|
package eu.faircode.email;
|
|
|
|
|
|
|
|
/*
|
|
|
|
This file is part of FairEmail.
|
|
|
|
|
|
|
|
FairEmail 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.
|
|
|
|
|
|
|
|
FairEmail 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 FairEmail. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
|
|
|
*/
|
|
|
|
|
|
|
|
import android.content.Context;
|
2019-01-06 11:13:35 +00:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.pm.ResolveInfo;
|
2019-01-28 19:28:57 +00:00
|
|
|
import android.graphics.Bitmap;
|
2019-01-06 11:13:35 +00:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.text.TextUtils;
|
2019-01-06 09:23:57 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
2019-01-06 11:13:35 +00:00
|
|
|
import android.widget.Toast;
|
2019-01-06 09:23:57 +00:00
|
|
|
|
2019-01-06 11:13:35 +00:00
|
|
|
import java.io.File;
|
2019-01-06 09:23:57 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import androidx.annotation.NonNull;
|
2019-01-06 11:13:35 +00:00
|
|
|
import androidx.core.content.FileProvider;
|
2019-01-06 09:23:57 +00:00
|
|
|
import androidx.lifecycle.LifecycleOwner;
|
|
|
|
import androidx.recyclerview.widget.DiffUtil;
|
|
|
|
import androidx.recyclerview.widget.ListUpdateCallback;
|
|
|
|
import androidx.recyclerview.widget.RecyclerView;
|
|
|
|
|
|
|
|
public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder> {
|
|
|
|
private Context context;
|
|
|
|
private LayoutInflater inflater;
|
|
|
|
private LifecycleOwner owner;
|
|
|
|
|
|
|
|
private List<EntityAttachment> all = new ArrayList<>();
|
|
|
|
private List<EntityAttachment> filtered = new ArrayList<>();
|
|
|
|
|
2019-01-06 11:13:35 +00:00
|
|
|
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
|
2019-01-06 09:23:57 +00:00
|
|
|
View itemView;
|
|
|
|
ImageView image;
|
|
|
|
TextView caption;
|
|
|
|
|
|
|
|
ViewHolder(View itemView) {
|
|
|
|
super(itemView);
|
|
|
|
|
|
|
|
this.itemView = itemView;
|
|
|
|
image = itemView.findViewById(R.id.image);
|
|
|
|
caption = itemView.findViewById(R.id.caption);
|
|
|
|
}
|
|
|
|
|
2019-01-06 11:13:35 +00:00
|
|
|
private void wire() {
|
|
|
|
itemView.setOnClickListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void unwire() {
|
|
|
|
itemView.setOnClickListener(null);
|
|
|
|
}
|
|
|
|
|
2019-01-06 09:23:57 +00:00
|
|
|
private void bindTo(EntityAttachment attachment) {
|
|
|
|
if (attachment.available) {
|
2019-01-29 13:29:39 +00:00
|
|
|
Bitmap bm = Helper.decodeImage(
|
|
|
|
EntityAttachment.getFile(context, attachment.id),
|
|
|
|
context.getResources().getDisplayMetrics().widthPixels / 2);
|
|
|
|
if (bm == null)
|
2019-01-06 09:23:57 +00:00
|
|
|
image.setImageResource(R.drawable.baseline_broken_image_24);
|
|
|
|
else
|
2019-01-29 13:29:39 +00:00
|
|
|
image.setImageBitmap(bm);
|
2019-01-06 09:23:57 +00:00
|
|
|
} else
|
2019-01-06 11:13:35 +00:00
|
|
|
image.setImageResource(attachment.progress == null
|
|
|
|
? R.drawable.baseline_image_24 : R.drawable.baseline_hourglass_empty_24);
|
2019-01-06 09:23:57 +00:00
|
|
|
|
|
|
|
caption.setText(attachment.name);
|
|
|
|
}
|
2019-01-06 11:13:35 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onClick(View view) {
|
|
|
|
int pos = getAdapterPosition();
|
|
|
|
if (pos == RecyclerView.NO_POSITION)
|
|
|
|
return;
|
|
|
|
|
|
|
|
EntityAttachment attachment = filtered.get(pos);
|
|
|
|
if (attachment.available) {
|
|
|
|
// Build file name
|
|
|
|
File file = EntityAttachment.getFile(context, attachment.id);
|
|
|
|
|
|
|
|
// https://developer.android.com/reference/android/support/v4/content/FileProvider
|
|
|
|
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))
|
|
|
|
intent.putExtra(Intent.EXTRA_TITLE, attachment.name);
|
|
|
|
Log.i("Sharing " + file + " type=" + attachment.type);
|
|
|
|
Log.i("Intent=" + intent);
|
|
|
|
|
|
|
|
// 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) {
|
|
|
|
Toast.makeText(context, context.getString(R.string.title_no_viewer, attachment.type), Toast.LENGTH_LONG).show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
context.startActivity(intent);
|
|
|
|
} else {
|
|
|
|
if (attachment.progress == null) {
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putLong("id", attachment.id);
|
|
|
|
args.putLong("message", attachment.message);
|
|
|
|
args.putInt("sequence", attachment.sequence);
|
|
|
|
|
|
|
|
new SimpleTask<Void>() {
|
|
|
|
@Override
|
|
|
|
protected Void onExecute(Context context, Bundle args) {
|
|
|
|
long id = args.getLong("id");
|
|
|
|
long message = args.getLong("message");
|
|
|
|
long sequence = args.getInt("sequence");
|
|
|
|
|
|
|
|
DB db = DB.getInstance(context);
|
|
|
|
try {
|
|
|
|
db.beginTransaction();
|
|
|
|
|
|
|
|
db.attachment().setProgress(id, 0);
|
|
|
|
|
|
|
|
EntityMessage msg = db.message().getMessage(message);
|
|
|
|
EntityOperation.queue(context, db, msg, EntityOperation.ATTACHMENT, sequence);
|
|
|
|
|
|
|
|
db.setTransactionSuccessful();
|
|
|
|
} finally {
|
|
|
|
db.endTransaction();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onException(Bundle args, Throwable ex) {
|
|
|
|
Helper.unexpectedError(context, owner, ex);
|
|
|
|
}
|
2019-01-12 13:15:15 +00:00
|
|
|
}.execute(context, owner, args, "image:fetch");
|
2019-01-06 11:13:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 09:23:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AdapterImage(Context context, LifecycleOwner owner) {
|
|
|
|
this.context = context;
|
|
|
|
this.inflater = LayoutInflater.from(context);
|
|
|
|
this.owner = owner;
|
|
|
|
setHasStableIds(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void set(@NonNull List<EntityAttachment> attachments) {
|
|
|
|
Log.i("Set images=" + attachments.size());
|
|
|
|
|
|
|
|
Collections.sort(attachments, new Comparator<EntityAttachment>() {
|
|
|
|
@Override
|
|
|
|
public int compare(EntityAttachment a1, EntityAttachment a2) {
|
|
|
|
return a1.sequence.compareTo(a2.sequence);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
all = 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("Inserted @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRemoved(int position, int count) {
|
|
|
|
Log.i("Removed @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onMoved(int fromPosition, int toPosition) {
|
|
|
|
Log.i("Moved " + fromPosition + ">" + toPosition);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onChanged(int position, int count, Object payload) {
|
|
|
|
Log.i("Changed @" + position + " #" + count);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
diff.dispatchUpdatesTo(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class MessageDiffCallback extends DiffUtil.Callback {
|
|
|
|
private List<EntityAttachment> prev;
|
|
|
|
private List<EntityAttachment> next;
|
|
|
|
|
|
|
|
MessageDiffCallback(List<EntityAttachment> prev, List<EntityAttachment> next) {
|
|
|
|
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) {
|
|
|
|
EntityAttachment a1 = prev.get(oldItemPosition);
|
|
|
|
EntityAttachment a2 = next.get(newItemPosition);
|
|
|
|
return a1.id.equals(a2.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean areContentsTheSame(int oldItemPosition, int newItemPosition) {
|
|
|
|
EntityAttachment a1 = prev.get(oldItemPosition);
|
|
|
|
EntityAttachment a2 = next.get(newItemPosition);
|
|
|
|
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(inflater.inflate(R.layout.item_image, parent, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
|
2019-01-06 11:13:35 +00:00
|
|
|
holder.unwire();
|
|
|
|
|
2019-01-06 09:23:57 +00:00
|
|
|
EntityAttachment attachment = filtered.get(position);
|
|
|
|
holder.bindTo(attachment);
|
2019-01-06 11:13:35 +00:00
|
|
|
|
|
|
|
holder.wire();
|
2019-01-06 09:23:57 +00:00
|
|
|
}
|
|
|
|
}
|