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

675 lines
26 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
2022-01-01 08:46:36 +00:00
Copyright 2018-2022 by Marcel Bokhorst (M66B)
2018-08-03 13:46:25 +00:00
*/
import android.content.Context;
2022-07-23 08:28:22 +00:00
import android.content.DialogInterface;
2018-08-04 12:49:44 +00:00
import android.content.Intent;
import android.content.SharedPreferences;
2022-01-29 15:19:48 +00:00
import android.graphics.Bitmap;
2020-07-17 07:33:14 +00:00
import android.net.Uri;
import android.os.Bundle;
2022-04-07 18:57:54 +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;
2022-07-24 19:17:10 +00:00
import android.widget.Button;
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;
2022-04-07 18:57:54 +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;
2022-07-23 08:28:22 +00:00
import androidx.appcompat.app.AlertDialog;
2022-07-24 14:58:31 +00:00
import androidx.constraintlayout.widget.Group;
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;
2022-07-22 06:05:37 +00:00
private boolean vt_enabled;
2018-08-13 08:58:36 +00:00
private boolean debug;
2020-08-07 13:23:07 +00:00
private int dp12;
2022-01-29 15:19:48 +00:00
private int dp36;
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;
2022-07-21 17:03:44 +00:00
private ImageButton ibScan;
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
2022-07-24 09:49:20 +00:00
private TwoStateOwner powner = new TwoStateOwner(owner, "AttachmentPopup");
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);
2022-07-21 17:03:44 +00:00
ibScan = itemView.findViewById(R.id.ibScan);
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);
2022-07-22 06:05:37 +00:00
if (vt_enabled)
ibScan.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);
2022-07-22 06:05:37 +00:00
if (vt_enabled)
ibScan.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
2022-01-29 15:19:48 +00:00
if (!readonly && attachment.isImage()) {
if (attachment.available) {
Bitmap bm = ImageHelper.decodeImage(
attachment.getFile(context), attachment.getMimeType(), dp36);
if (bm == null)
ivType.setImageResource(R.drawable.twotone_broken_image_24);
else
ivType.setImageBitmap(bm);
} else
ivType.setImageResource(R.drawable.twotone_hourglass_top_24);
ivDisposition.setVisibility(View.GONE);
} else {
int resid = 0;
String extension = Helper.guessExtension(attachment.getMimeType());
if (extension != null)
resid = context.getResources().getIdentifier("file_" + extension, "drawable", context.getPackageName());
if (resid == 0)
ivType.setImageDrawable(null);
else
ivType.setImageResource(resid);
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);
}
2020-07-01 17:46:07 +00:00
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);
2022-07-22 06:05:37 +00:00
ibScan.setVisibility(attachment.available && vt_enabled ? 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) {
2022-02-12 19:39:49 +00:00
if (attachment.cid != null) {
2019-07-08 10:37:24 +00:00
sb.append(' ').append(attachment.cid);
2022-02-12 19:39:49 +00:00
if (attachment.related != null)
sb.append(' ').append(attachment.related);
}
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
2022-07-21 17:03:44 +00:00
int id = view.getId();
if (id == R.id.ibDelete)
2019-01-17 09:57:01 +00:00
onDelete(attachment);
2022-07-21 17:03:44 +00:00
else if (id == R.id.ibSave)
2019-01-17 09:57:01 +00:00
onSave(attachment);
2022-07-21 17:03:44 +00:00
else if (id == R.id.ibScan)
2022-07-23 07:27:04 +00:00
onScan(attachment);
2019-01-17 09:57:01 +00:00
else {
if (attachment.available)
onShare(attachment);
else {
2022-04-07 18:57:54 +00:00
if (attachment.progress == null)
if (attachment.subsequence == null)
onDownload(attachment);
else if (!TextUtils.isEmpty(attachment.error))
ToastEx.makeText(context, attachment.error, Toast.LENGTH_LONG).show();
2019-01-17 09:57:01 +00:00
}
}
}
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());
2022-06-25 12:27:46 +00:00
send.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
2020-10-29 07:32:23 +00:00
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");
2022-04-24 06:20:28 +00:00
EntityAttachment attachment;
2019-03-14 07:18:42 +00:00
DB db = DB.getInstance(context);
2019-07-24 12:43:45 +00:00
try {
db.beginTransaction();
2022-04-24 06:20:28 +00:00
attachment = db.attachment().getAttachment(id);
2019-07-24 12:43:45 +00:00
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
}
2022-07-23 07:27:04 +00:00
private void onScan(EntityAttachment attachment) {
2022-07-24 17:25:49 +00:00
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
String apiKey = prefs.getString("vt_apikey", null);
2022-07-24 19:17:10 +00:00
View view = LayoutInflater.from(context).inflate(R.layout.dialog_virus_total, null);
final TextView tvName = view.findViewById(R.id.tvName);
final ProgressBar pbAnalysis = view.findViewById(R.id.pbAnalysis);
final TextView tvCount = view.findViewById(R.id.tvCount);
final TextView tvLabel = view.findViewById(R.id.tvLabel);
final TextView tvUnknown = view.findViewById(R.id.tvUnknown);
final Button btnUpload = view.findViewById(R.id.btnUpload);
final ProgressBar pbUpload = view.findViewById(R.id.pbUpload);
final ProgressBar pbWait = view.findViewById(R.id.pbWait);
final TextView tvAnalyzing = view.findViewById(R.id.tvAnalyzing);
final Group grpAnalysis = view.findViewById(R.id.grpAnalysis);
tvName.setText(attachment.name);
tvLabel.setVisibility(View.GONE);
tvUnknown.setVisibility(View.GONE);
btnUpload.setVisibility(View.GONE);
pbUpload.setVisibility(View.GONE);
tvAnalyzing.setVisibility(View.GONE);
grpAnalysis.setVisibility(View.GONE);
2022-07-23 07:27:04 +00:00
Bundle args = new Bundle();
2022-07-24 17:25:49 +00:00
args.putString("apiKey", apiKey);
2022-07-24 19:17:10 +00:00
args.putSerializable("file", attachment.getFile(context));
final SimpleTask<Bundle> taskLookup = new SimpleTask<Bundle>() {
@Override
protected void onPreExecute(Bundle args) {
pbWait.setVisibility(View.VISIBLE);
}
@Override
protected void onPostExecute(Bundle args) {
pbWait.setVisibility(View.GONE);
}
2022-07-23 07:27:04 +00:00
@Override
protected Bundle onExecute(Context context, Bundle args) throws Throwable {
2022-07-24 17:25:49 +00:00
String apiKey = args.getString("apiKey");
2022-07-24 19:17:10 +00:00
File file = (File) args.getSerializable("file");
2022-07-24 17:25:49 +00:00
return VirusTotal.lookup(context, file, apiKey);
2022-07-23 07:27:04 +00:00
}
@Override
protected void onExecuted(Bundle args, Bundle result) {
2022-07-23 08:28:22 +00:00
int count = result.getInt("count", -1);
int malicious = result.getInt("malicious", -1);
String label = result.getString("label");
pbAnalysis.setMax(count);
pbAnalysis.setProgress(malicious);
2022-07-24 14:58:31 +00:00
tvCount.setText(malicious + "/" + count);
2022-07-23 08:28:22 +00:00
tvLabel.setText(label);
tvLabel.setVisibility(TextUtils.isEmpty(label) ? View.GONE : View.VISIBLE);
2022-07-24 09:40:12 +00:00
tvUnknown.setVisibility(count == 0 ? View.VISIBLE : View.GONE);
2022-07-24 19:17:10 +00:00
btnUpload.setVisibility(count == 0 && !TextUtils.isEmpty(apiKey) ? View.VISIBLE : View.GONE);
2022-07-24 14:58:31 +00:00
grpAnalysis.setVisibility(count == 0 ? View.GONE : View.VISIBLE);
2022-07-24 19:17:10 +00:00
}
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
}
};
final SimpleTask<Void> taskUpload = new SimpleTask<Void>() {
@Override
protected void onPreExecute(Bundle args) {
btnUpload.setEnabled(false);
pbUpload.setVisibility(View.VISIBLE);
}
@Override
protected void onPostExecute(Bundle args) {
btnUpload.setEnabled(true);
tvAnalyzing.setVisibility(View.GONE);
pbUpload.setVisibility(View.GONE);
}
@Override
protected Void onExecute(Context context, Bundle args) throws Throwable {
String apiKey = args.getString("apiKey");
File file = (File) args.getSerializable("file");
VirusTotal.upload(context, file, apiKey, new Runnable() {
private int step = 0;
2022-07-23 08:28:22 +00:00
2022-07-24 19:17:10 +00:00
@Override
public void run() {
postProgress(Integer.toString(++step));
2022-07-24 09:49:20 +00:00
}
});
2022-07-24 19:17:10 +00:00
return null;
}
@Override
protected void onProgress(CharSequence status, Bundle data) {
tvAnalyzing.setVisibility(View.VISIBLE);
}
@Override
protected void onExecuted(Bundle args, Void data) {
taskLookup.execute(context, owner, args, "attachment:lookup");
2022-07-23 07:27:04 +00:00
}
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
}
2022-07-24 19:17:10 +00:00
};
final SimpleTask<String> taskUrl = new SimpleTask<String>() {
@Override
protected String onExecute(Context context, Bundle args) throws Throwable {
File file = (File) args.getSerializable("file");
return VirusTotal.getUrl(file);
}
@Override
protected void onExecuted(Bundle args, String uri) {
Helper.view(context, Uri.parse(uri), true);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);
}
};
btnUpload.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
taskUpload.execute(context, owner, args, "attachment:upload");
}
});
if (!TextUtils.isEmpty(apiKey))
taskLookup.execute(context, owner, args, "attachment:lookup");
else
pbWait.setVisibility(View.GONE);
AlertDialog.Builder builder = new AlertDialog.Builder(context)
.setView(view)
.setPositiveButton(R.string.title_info, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
taskUrl.execute(context, owner, args, "attachment:virustotal");
}
})
.setNegativeButton(android.R.string.cancel, null);
AlertDialog dialog = builder.create();
dialog.show();
powner.getLifecycle().addObserver(new LifecycleObserver() {
@OnLifecycleEvent(Lifecycle.Event.ON_DESTROY)
public void onDestroy() {
dialog.dismiss();
powner.getLifecycle().removeObserver(this);
}
});
2022-07-23 07:27:04 +00:00
}
2019-01-17 09:57:01 +00:00
private void onShare(EntityAttachment attachment) {
2022-02-13 12:03:28 +00:00
String title = (attachment.name == null ? attachment.cid : attachment.name);
Helper.share(context, attachment.getFile(context), attachment.getMimeType(), title);
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");
2022-01-14 19:49:25 +00:00
Long reload = null;
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;
2022-01-17 12:33:40 +00:00
EntityAccount account = db.account().getAccount(message.account);
2022-01-14 19:49:25 +00:00
if (account == null)
return null;
2022-01-15 13:37:05 +00:00
if (!"connected".equals(account.state) && !account.isTransient(context))
2022-01-14 19:49:25 +00:00
reload = account.id;
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
2022-01-14 19:49:25 +00:00
if (reload == null)
ServiceSynchronize.eval(context, "attachment");
else
ServiceSynchronize.reload(context, reload, true, "attachment");
return null;
2021-03-25 08:36:45 +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);
2022-07-22 06:05:37 +00:00
this.vt_enabled = (prefs.getBoolean("vt_enabled", false) && !BuildConfig.PLAY_STORE_RELEASE);
this.debug = prefs.getBoolean("debug", false);
2020-08-07 13:23:07 +00:00
this.dp12 = Helper.dp2pixels(context, 12);
2022-01-29 15:19:48 +00:00
this.dp36 = Helper.dp2pixels(context, 36);
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;
2021-09-28 08:18:20 +00:00
owner.getLifecycle().removeObserver(this);
}
});
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
}
});
2022-03-23 17:19:14 +00:00
try {
diff.dispatchUpdatesTo(this);
} catch (Throwable ex) {
Log.e(ex);
}
2018-08-03 13:46:25 +00:00
}
2020-12-30 18:29:20 +00:00
private static 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);
2022-07-24 09:49:20 +00:00
holder.powner.recreate(attachment == null ? null : attachment.id);
holder.bindTo(attachment);
2018-08-03 13:46:25 +00:00
holder.wire();
}
}