mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Revised revisions
This commit is contained in:
1914
app/schemas/eu.faircode.email.DB/115.json
Normal file
1914
app/schemas/eu.faircode.email.DB/115.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -48,6 +48,8 @@ import androidx.recyclerview.widget.RecyclerView;
|
||||
import com.google.android.material.snackbar.Snackbar;
|
||||
import com.sun.mail.imap.IMAPFolder;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.InputStream;
|
||||
@@ -135,8 +137,10 @@ public class ActivityEML extends ActivityBase {
|
||||
result.parts = helper.getMessageParts();
|
||||
|
||||
String html = result.parts.getHtml(context);
|
||||
if (html != null)
|
||||
result.body = HtmlHelper.fromHtml(HtmlHelper.sanitize(context, html, false, false));
|
||||
if (html != null) {
|
||||
Document document = HtmlHelper.sanitize(context, html, false, false);
|
||||
result.body = HtmlHelper.fromHtml(document.html());
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1455,28 +1455,27 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
return document.html();
|
||||
} else {
|
||||
// Cleanup message
|
||||
String html = HtmlHelper.sanitize(context, body, show_images, true);
|
||||
document = HtmlHelper.sanitize(context, body, show_images, true);
|
||||
|
||||
// Collapse quotes
|
||||
if (!show_quotes) {
|
||||
Document doc = JsoupEx.parse(html);
|
||||
for (Element quote : doc.select("blockquote"))
|
||||
for (Element quote : document.select("blockquote"))
|
||||
quote.html("…");
|
||||
html = doc.html();
|
||||
}
|
||||
|
||||
// Add debug info
|
||||
if (debug) {
|
||||
Document format = JsoupEx.parse(html);
|
||||
format.outputSettings().prettyPrint(true).outline(true).indentAmount(1);
|
||||
String[] lines = format.html().split("\\r?\\n");
|
||||
document.outputSettings().prettyPrint(true).outline(true).indentAmount(1);
|
||||
String[] lines = document.html().split("\\r?\\n");
|
||||
for (int i = 0; i < lines.length; i++)
|
||||
lines[i] = Html.escapeHtml(lines[i]);
|
||||
html += "<pre>" + TextUtils.join("<br>", lines) + "</pre>";
|
||||
Element pre = document.createElement("pre");
|
||||
pre.html(TextUtils.join("<br>", lines));
|
||||
document.appendChild(pre);
|
||||
}
|
||||
|
||||
// Draw images
|
||||
Spanned spanned = HtmlHelper.fromHtml(html, new Html.ImageGetter() {
|
||||
Spanned spanned = HtmlHelper.fromHtml(document.html(), new Html.ImageGetter() {
|
||||
@Override
|
||||
public Drawable getDrawable(String source) {
|
||||
Drawable drawable = ImageHelper.decodeImage(context, message.id, source, show_images, zoom, tvBody);
|
||||
|
||||
@@ -56,13 +56,12 @@ import io.requery.android.database.sqlite.RequerySQLiteOpenHelperFactory;
|
||||
// https://developer.android.com/topic/libraries/architecture/room.html
|
||||
|
||||
@Database(
|
||||
version = 114,
|
||||
version = 115,
|
||||
entities = {
|
||||
EntityIdentity.class,
|
||||
EntityAccount.class,
|
||||
EntityFolder.class,
|
||||
EntityMessage.class,
|
||||
EntityRevision.class,
|
||||
EntityAttachment.class,
|
||||
EntityOperation.class,
|
||||
EntityContact.class,
|
||||
@@ -84,8 +83,6 @@ public abstract class DB extends RoomDatabase {
|
||||
|
||||
public abstract DaoMessage message();
|
||||
|
||||
public abstract DaoRevision revision();
|
||||
|
||||
public abstract DaoAttachment attachment();
|
||||
|
||||
public abstract DaoOperation operation();
|
||||
@@ -1113,6 +1110,13 @@ public abstract class DB extends RoomDatabase {
|
||||
" WHERE encryption = " + EntityAttachment.PGP_MESSAGE + ")");
|
||||
}
|
||||
})
|
||||
.addMigrations(new Migration(114, 115) {
|
||||
@Override
|
||||
public void migrate(@NonNull SupportSQLiteDatabase db) {
|
||||
Log.i("DB migration from version " + startVersion + " to " + endVersion);
|
||||
db.execSQL("DROP TABLE revision");
|
||||
}
|
||||
})
|
||||
.build();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
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 androidx.room.Dao;
|
||||
import androidx.room.Insert;
|
||||
import androidx.room.Query;
|
||||
|
||||
@Dao
|
||||
public interface DaoRevision {
|
||||
@Query("SELECT * FROM revision" +
|
||||
" WHERE message = :message" +
|
||||
" AND sequence = :sequence")
|
||||
EntityRevision getRevision(long message, int sequence);
|
||||
|
||||
@Insert
|
||||
long insertRevision(EntityRevision revision);
|
||||
}
|
||||
@@ -37,6 +37,8 @@ import androidx.core.view.inputmethod.EditorInfoCompat;
|
||||
import androidx.core.view.inputmethod.InputConnectionCompat;
|
||||
import androidx.core.view.inputmethod.InputContentInfoCompat;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
|
||||
public class EditTextCompose extends AppCompatEditText {
|
||||
private ISelection selectionListener = null;
|
||||
private IInputContentListener inputContentListener = null;
|
||||
@@ -70,8 +72,8 @@ public class EditTextCompose extends AppCompatEditText {
|
||||
ClipData.Item item = clipboard.getPrimaryClip().getItemAt(0);
|
||||
|
||||
String html = item.coerceToHtmlText(context);
|
||||
html = HtmlHelper.sanitize(context, html, false, false);
|
||||
Spanned paste = HtmlHelper.fromHtml(html);
|
||||
Document document = HtmlHelper.sanitize(context, html, false, false);
|
||||
Spanned paste = HtmlHelper.fromHtml(document.html());
|
||||
|
||||
int colorPrimary = Helper.resolveColor(context, R.attr.colorPrimary);
|
||||
|
||||
|
||||
@@ -228,17 +228,13 @@ public class EntityMessage implements Serializable {
|
||||
return new File(dir, id + "." + revision);
|
||||
}
|
||||
|
||||
static File getRefFile(Context context, Long id) {
|
||||
File getRefFile(Context context) {
|
||||
File dir = new File(context.getFilesDir(), "references");
|
||||
if (!dir.exists())
|
||||
dir.mkdir();
|
||||
return new File(dir, id.toString());
|
||||
}
|
||||
|
||||
File getRefFile(Context context) {
|
||||
return getRefFile(context, id);
|
||||
}
|
||||
|
||||
File getRawFile(Context context) {
|
||||
File dir = new File(context.getFilesDir(), "raw");
|
||||
if (!dir.exists())
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
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 androidx.annotation.NonNull;
|
||||
import androidx.room.Entity;
|
||||
import androidx.room.ForeignKey;
|
||||
import androidx.room.Index;
|
||||
import androidx.room.PrimaryKey;
|
||||
|
||||
import static androidx.room.ForeignKey.CASCADE;
|
||||
|
||||
@Entity(
|
||||
tableName = EntityRevision.TABLE_NAME,
|
||||
foreignKeys = {
|
||||
@ForeignKey(childColumns = "message", entity = EntityMessage.class, parentColumns = "id", onDelete = CASCADE),
|
||||
},
|
||||
indices = {
|
||||
@Index(value = {"message"}),
|
||||
@Index(value = {"message", "sequence"}, unique = true)
|
||||
}
|
||||
)
|
||||
public class EntityRevision {
|
||||
static final String TABLE_NAME = "revision";
|
||||
|
||||
@PrimaryKey(autoGenerate = true)
|
||||
public Long id;
|
||||
@NonNull
|
||||
public Long message;
|
||||
@NonNull
|
||||
public Integer sequence;
|
||||
@NonNull
|
||||
public Boolean reference;
|
||||
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof EntityRevision) {
|
||||
EntityRevision other = (EntityRevision) obj;
|
||||
return (this.message.equals(other.message) &&
|
||||
this.sequence.equals(other.sequence) &&
|
||||
this.reference.equals(other.reference));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@@ -103,10 +103,8 @@ import com.google.android.material.snackbar.Snackbar;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
import org.jsoup.nodes.Element;
|
||||
import org.jsoup.nodes.Node;
|
||||
import org.jsoup.nodes.TextNode;
|
||||
import org.jsoup.select.NodeTraversor;
|
||||
import org.jsoup.select.NodeVisitor;
|
||||
import org.jsoup.select.Elements;
|
||||
import org.openintents.openpgp.OpenPgpError;
|
||||
import org.openintents.openpgp.util.OpenPgpApi;
|
||||
import org.openintents.openpgp.util.OpenPgpServiceConnection;
|
||||
@@ -168,7 +166,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
private CheckBox cbSignature;
|
||||
private TextView tvReference;
|
||||
private ImageButton ibCloseRefHint;
|
||||
private ImageButton ibReferenceDelete;
|
||||
private ImageButton ibReferenceEdit;
|
||||
private ImageButton ibReferenceImages;
|
||||
private BottomNavigationView style_bar;
|
||||
@@ -220,12 +217,11 @@ public class FragmentCompose extends FragmentBase {
|
||||
private static final int REQUEST_RECORD_AUDIO = 7;
|
||||
private static final int REQUEST_ENCRYPT = 8;
|
||||
private static final int REQUEST_COLOR = 9;
|
||||
private static final int REQUEST_REF_DELETE = 10;
|
||||
private static final int REQUEST_CONTACT_GROUP = 11;
|
||||
private static final int REQUEST_ANSWER = 12;
|
||||
private static final int REQUEST_LINK = 13;
|
||||
private static final int REQUEST_DISCARD = 14;
|
||||
private static final int REQUEST_SEND = 15;
|
||||
private static final int REQUEST_CONTACT_GROUP = 10;
|
||||
private static final int REQUEST_ANSWER = 11;
|
||||
private static final int REQUEST_LINK = 12;
|
||||
private static final int REQUEST_DISCARD = 13;
|
||||
private static final int REQUEST_SEND = 14;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
@@ -268,7 +264,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
cbSignature = view.findViewById(R.id.cbSignature);
|
||||
tvReference = view.findViewById(R.id.tvReference);
|
||||
ibCloseRefHint = view.findViewById(R.id.ibCloseRefHint);
|
||||
ibReferenceDelete = view.findViewById(R.id.ibReferenceDelete);
|
||||
ibReferenceEdit = view.findViewById(R.id.ibReferenceEdit);
|
||||
ibReferenceImages = view.findViewById(R.id.ibReferenceImages);
|
||||
style_bar = view.findViewById(R.id.style_bar);
|
||||
@@ -443,13 +438,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
}
|
||||
});
|
||||
|
||||
ibReferenceDelete.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
onReferenceDelete();
|
||||
}
|
||||
});
|
||||
|
||||
ibReferenceEdit.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
@@ -547,7 +535,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
grpBody.setVisibility(View.GONE);
|
||||
grpSignature.setVisibility(View.GONE);
|
||||
grpReferenceHint.setVisibility(View.GONE);
|
||||
ibReferenceDelete.setVisibility(View.GONE);
|
||||
ibReferenceEdit.setVisibility(View.GONE);
|
||||
ibReferenceImages.setVisibility(View.GONE);
|
||||
tvReference.setVisibility(View.GONE);
|
||||
@@ -663,77 +650,12 @@ public class FragmentCompose extends FragmentBase {
|
||||
return view;
|
||||
}
|
||||
|
||||
private void onReferenceDelete() {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
if (prefs.getBoolean("delete_ref_confirmed", false)) {
|
||||
onReferenceDeleteConfirmed();
|
||||
return;
|
||||
}
|
||||
|
||||
Bundle args = new Bundle();
|
||||
args.putString("question", getString(R.string.title_ask_delete_ref));
|
||||
args.putString("notagain", "delete_ref_confirmed");
|
||||
|
||||
FragmentDialogAsk fragment = new FragmentDialogAsk();
|
||||
fragment.setArguments(args);
|
||||
fragment.setTargetFragment(this, REQUEST_REF_DELETE);
|
||||
fragment.show(getParentFragmentManager(), "compose:refdelete");
|
||||
}
|
||||
|
||||
private void onReferenceDeleteConfirmed() {
|
||||
Bundle args = new Bundle();
|
||||
args.putLong("id", working);
|
||||
|
||||
new SimpleTask<EntityMessage>() {
|
||||
@Override
|
||||
protected void onPreExecute(Bundle args) {
|
||||
ibReferenceDelete.setEnabled(false);
|
||||
ibReferenceEdit.setEnabled(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostExecute(Bundle args) {
|
||||
ibReferenceDelete.setEnabled(true);
|
||||
ibReferenceEdit.setEnabled(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected EntityMessage onExecute(Context context, Bundle args) throws Throwable {
|
||||
long id = args.getLong("id");
|
||||
|
||||
DB db = DB.getInstance(context);
|
||||
EntityMessage draft = db.message().getMessage(id);
|
||||
if (draft != null) {
|
||||
File refFile = draft.getRefFile(context);
|
||||
refFile.delete();
|
||||
}
|
||||
|
||||
return draft;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onExecuted(Bundle args, EntityMessage draft) {
|
||||
if (draft != null) {
|
||||
tvReference.setVisibility(View.GONE);
|
||||
grpReferenceHint.setVisibility(View.GONE);
|
||||
ibReferenceDelete.setVisibility(View.GONE);
|
||||
ibReferenceEdit.setVisibility(View.GONE);
|
||||
ibReferenceImages.setVisibility(View.GONE);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getParentFragmentManager(), ex);
|
||||
}
|
||||
}.execute(this, args, "compose:refdelete");
|
||||
}
|
||||
|
||||
private void onReferenceEdit() {
|
||||
PopupMenuLifecycle popupMenu = new PopupMenuLifecycle(getContext(), getViewLifecycleOwner(), ibReferenceEdit);
|
||||
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_edit_plain_text, 1, R.string.title_edit_plain_text);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_edit_formatted_text, 2, R.string.title_edit_formatted_text);
|
||||
popupMenu.getMenu().add(Menu.NONE, R.string.title_delete, 3, R.string.title_delete);
|
||||
|
||||
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
||||
@Override
|
||||
@@ -747,6 +669,10 @@ public class FragmentCompose extends FragmentBase {
|
||||
convertRef(false);
|
||||
return true;
|
||||
|
||||
case R.string.title_delete:
|
||||
deleteRef();
|
||||
return true;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
@@ -761,13 +687,11 @@ public class FragmentCompose extends FragmentBase {
|
||||
new SimpleTask<String>() {
|
||||
@Override
|
||||
protected void onPreExecute(Bundle args) {
|
||||
ibReferenceDelete.setEnabled(false);
|
||||
ibReferenceEdit.setEnabled(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onPostExecute(Bundle args) {
|
||||
ibReferenceDelete.setEnabled(true);
|
||||
ibReferenceEdit.setEnabled(true);
|
||||
}
|
||||
|
||||
@@ -777,16 +701,27 @@ public class FragmentCompose extends FragmentBase {
|
||||
boolean plain = args.getBoolean("plain");
|
||||
String body = args.getString("body");
|
||||
|
||||
String html;
|
||||
File refFile = EntityMessage.getRefFile(context, id);
|
||||
String ref = Helper.readText(refFile);
|
||||
if (plain) {
|
||||
String text = HtmlHelper.getText(ref);
|
||||
html = "<p>" + text.replaceAll("\\r?\\n", "<br>") + "</p>";
|
||||
} else
|
||||
html = HtmlHelper.sanitize(context, ref, true, false);
|
||||
Document doc = JsoupEx.parse(Helper.readText(EntityMessage.getFile(context, id)));
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.removeAttr("fairemail");
|
||||
|
||||
return body + html;
|
||||
Document document = JsoupEx.parse(body);
|
||||
if (plain) {
|
||||
String text = HtmlHelper.getText(ref.outerHtml());
|
||||
Element p = document.createElement("p");
|
||||
p.html(text.replaceAll("\\r?\\n", "<br>"));
|
||||
if (document.body() != null)
|
||||
document.body().appendChild(p);
|
||||
} else {
|
||||
Document d = HtmlHelper.sanitize(context, ref.outerHtml(), true, false);
|
||||
Element b = d.body();
|
||||
if (document.body() != null && b != null) {
|
||||
b.tagName("div");
|
||||
document.body().appendChild(b);
|
||||
}
|
||||
}
|
||||
|
||||
return document.html();
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -803,6 +738,13 @@ public class FragmentCompose extends FragmentBase {
|
||||
}
|
||||
}.execute(FragmentCompose.this, args, "compose:convert");
|
||||
}
|
||||
|
||||
private void deleteRef() {
|
||||
Bundle extras = new Bundle();
|
||||
extras.putString("html", HtmlHelper.toHtml(etBody.getText()));
|
||||
extras.putBoolean("show", true);
|
||||
onAction(R.id.action_save, extras);
|
||||
}
|
||||
});
|
||||
|
||||
popupMenu.show();
|
||||
@@ -1316,10 +1258,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
if (resultCode == RESULT_OK && data != null)
|
||||
onPgp(data);
|
||||
break;
|
||||
case REQUEST_REF_DELETE:
|
||||
if (resultCode == RESULT_OK)
|
||||
onReferenceDeleteConfirmed();
|
||||
break;
|
||||
case REQUEST_CONTACT_GROUP:
|
||||
if (resultCode == RESULT_OK && data != null)
|
||||
onContactGroupSelected(data.getBundleExtra("args"));
|
||||
@@ -2187,7 +2125,7 @@ public class FragmentCompose extends FragmentBase {
|
||||
|
||||
EntityMessage ref = db.message().getMessage(reference);
|
||||
|
||||
String body = "";
|
||||
Document document = JsoupEx.parse("");
|
||||
|
||||
data.draft = new EntityMessage();
|
||||
data.draft.msgid = EntityMessage.generateMessageId();
|
||||
@@ -2224,15 +2162,26 @@ public class FragmentCompose extends FragmentBase {
|
||||
}
|
||||
|
||||
data.draft.subject = args.getString("subject", "");
|
||||
body = args.getString("body", "");
|
||||
if (!TextUtils.isEmpty(body))
|
||||
body = HtmlHelper.sanitize(context, body, false, false);
|
||||
String b = args.getString("body", "");
|
||||
if (!TextUtils.isEmpty(b)) {
|
||||
Document d = HtmlHelper.sanitize(context, b, false, false);
|
||||
Element e = d.body();
|
||||
if (e != null) {
|
||||
e.tagName("div");
|
||||
document.body().appendChild(e);
|
||||
}
|
||||
}
|
||||
|
||||
if (answer > 0) {
|
||||
EntityAnswer a = db.answer().getAnswer(answer);
|
||||
if (a != null) {
|
||||
data.draft.subject = a.name;
|
||||
body = a.getText(null) + body;
|
||||
Document d = JsoupEx.parse(a.getText(null));
|
||||
Element e = d.body();
|
||||
if (e != null) {
|
||||
e.tagName("div");
|
||||
document.body().appendChild(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@@ -2300,20 +2249,31 @@ public class FragmentCompose extends FragmentBase {
|
||||
data.draft.subject = ref.subject;
|
||||
if (ref.content) {
|
||||
String html = Helper.readText(ref.getFile(context));
|
||||
body = HtmlHelper.sanitize(context, html, true, false);
|
||||
Document d = HtmlHelper.sanitize(context, html, true, false);
|
||||
Element e = d.body();
|
||||
if (e != null) {
|
||||
e.tagName("div");
|
||||
document.body().appendChild(e);
|
||||
}
|
||||
}
|
||||
} else if ("list".equals(action)) {
|
||||
data.draft.subject = ref.subject;
|
||||
} else if ("receipt".equals(action)) {
|
||||
data.draft.subject = context.getString(R.string.title_receipt_subject, subject);
|
||||
|
||||
Configuration configuration = new Configuration(context.getResources().getConfiguration());
|
||||
configuration.setLocale(new Locale("en"));
|
||||
Resources res = context.createConfigurationContext(configuration).getResources();
|
||||
Element p = document.createElement("p");
|
||||
p.text(context.getString(R.string.title_receipt_text));
|
||||
document.body().appendChild(p);
|
||||
|
||||
body = "<p>" + context.getString(R.string.title_receipt_text) + "</p>";
|
||||
if (!Locale.getDefault().getLanguage().equals("en"))
|
||||
body += "<p>" + res.getString(R.string.title_receipt_text) + "</p>";
|
||||
if (!Locale.getDefault().getLanguage().equals("en")) {
|
||||
Configuration configuration = new Configuration(context.getResources().getConfiguration());
|
||||
configuration.setLocale(new Locale("en"));
|
||||
Resources res = context.createConfigurationContext(configuration).getResources();
|
||||
|
||||
p = document.createElement("p");
|
||||
p.text(res.getString(R.string.title_receipt_text));
|
||||
document.body().appendChild(p);
|
||||
}
|
||||
} else if ("participation".equals(action))
|
||||
data.draft.subject = status + ": " + ref.subject;
|
||||
|
||||
@@ -2324,8 +2284,93 @@ public class FragmentCompose extends FragmentBase {
|
||||
|
||||
if (answer > 0) {
|
||||
EntityAnswer a = db.answer().getAnswer(answer);
|
||||
if (a != null)
|
||||
body = a.getText(data.draft.to) + body;
|
||||
if (a != null) {
|
||||
Document d = JsoupEx.parse(a.getText(data.draft.to));
|
||||
Element e = d.body();
|
||||
if (e != null) {
|
||||
e.tagName("div");
|
||||
document.body().appendChild(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (ref.content &&
|
||||
!"editasnew".equals(action) &&
|
||||
!"list".equals(action) &&
|
||||
!"receipt".equals(action)) {
|
||||
// Reply/forward
|
||||
Element div = document.createElement("div");
|
||||
div.attr("fairemail", "reference");
|
||||
|
||||
// Build reply header
|
||||
Element p = document.createElement("p");
|
||||
DateFormat DF = Helper.getDateTimeInstance(context);
|
||||
boolean extended_reply = prefs.getBoolean("extended_reply", false);
|
||||
if (extended_reply) {
|
||||
if (ref.from != null && ref.from.length > 0) {
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(context.getString(R.string.title_from) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(MessageHelper.formatAddresses(ref.from));
|
||||
p.appendElement("br");
|
||||
}
|
||||
if (ref.to != null && ref.to.length > 0) {
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(context.getString(R.string.title_to) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(MessageHelper.formatAddresses(ref.to));
|
||||
p.appendElement("br");
|
||||
}
|
||||
if (ref.cc != null && ref.cc.length > 0) {
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(context.getString(R.string.title_cc) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(MessageHelper.formatAddresses(ref.cc));
|
||||
p.appendElement("br");
|
||||
}
|
||||
{
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(context.getString(R.string.title_received) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(DF.format(ref.received));
|
||||
p.appendElement("br");
|
||||
}
|
||||
{
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(context.getString(R.string.title_subject) + " ");
|
||||
p.appendChild(strong);
|
||||
p.appendText(ref.subject == null ? "" : ref.subject);
|
||||
p.appendElement("br");
|
||||
}
|
||||
} else
|
||||
p.text(DF.format(new Date(ref.received)) + " " + MessageHelper.formatAddresses(ref.from) + ":");
|
||||
|
||||
div.appendChild(p);
|
||||
|
||||
// Get referenced message body
|
||||
Document d = JsoupEx.parse(Helper.readText(ref.getFile(context)));
|
||||
|
||||
// Remove signature separators
|
||||
boolean usenet = prefs.getBoolean("usenet_signature", false);
|
||||
if (usenet)
|
||||
for (Element span : d.select("span"))
|
||||
if (span.childNodeSize() == 2 &&
|
||||
span.childNode(0) instanceof TextNode &&
|
||||
"-- ".equals(span.wholeText()) &&
|
||||
"br".equals(span.childNode(1).nodeName()))
|
||||
span.remove();
|
||||
|
||||
// Quote referenced message body
|
||||
Element e = d.body();
|
||||
if (e != null) {
|
||||
boolean quote_reply = prefs.getBoolean("quote_reply", true);
|
||||
boolean quote = (quote_reply && ("reply".equals(action) || "reply_all".equals(action)));
|
||||
|
||||
e.tagName(quote ? "blockquote" : "div");
|
||||
div.appendChild(e);
|
||||
}
|
||||
|
||||
document.body().appendChild(div);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2442,12 +2487,15 @@ public class FragmentCompose extends FragmentBase {
|
||||
data.draft.revisions = 1;
|
||||
|
||||
data.draft.id = db.message().insertMessage(data.draft);
|
||||
Helper.writeText(data.draft.getFile(context), body);
|
||||
|
||||
String html = document.html();
|
||||
Helper.writeText(data.draft.getFile(context), html);
|
||||
Helper.writeText(data.draft.getFile(context, data.draft.revision), html);
|
||||
|
||||
db.message().setMessageContent(data.draft.id,
|
||||
true,
|
||||
data.draft.plain_only,
|
||||
HtmlHelper.getPreview(body),
|
||||
HtmlHelper.getPreview(html),
|
||||
null);
|
||||
|
||||
if ("participation".equals(action)) {
|
||||
@@ -2464,87 +2512,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
ics.renameTo(attachment.getFile(context));
|
||||
}
|
||||
|
||||
// Write reference text
|
||||
if (ref != null && ref.content &&
|
||||
!"editasnew".equals(action) &&
|
||||
!"list".equals(action) &&
|
||||
!"receipt".equals(action)) {
|
||||
String refText = Helper.readText(ref.getFile(context));
|
||||
|
||||
boolean usenet = prefs.getBoolean("usenet_signature", false);
|
||||
if (usenet) {
|
||||
Document rdoc = JsoupEx.parse(refText);
|
||||
|
||||
List<Node> tbd = new ArrayList<>();
|
||||
|
||||
NodeTraversor.traverse(new NodeVisitor() {
|
||||
boolean found = false;
|
||||
|
||||
public void head(Node node, int depth) {
|
||||
if (node instanceof TextNode &&
|
||||
"-- ".equals(((TextNode) node).getWholeText()) &&
|
||||
node.nextSibling() != null &&
|
||||
"br".equals(node.nextSibling().nodeName()))
|
||||
found = true;
|
||||
if (found)
|
||||
tbd.add(node);
|
||||
}
|
||||
|
||||
public void tail(Node node, int depth) {
|
||||
// Do nothing
|
||||
}
|
||||
}, rdoc);
|
||||
|
||||
if (tbd.size() > 0) {
|
||||
for (Node node : tbd)
|
||||
node.remove();
|
||||
|
||||
refText = (rdoc.body() == null ? "" : rdoc.body().html());
|
||||
}
|
||||
}
|
||||
|
||||
// Build reply header
|
||||
StringBuilder sb = new StringBuilder();
|
||||
DateFormat DF = Helper.getDateTimeInstance(context);
|
||||
boolean extended_reply = prefs.getBoolean("extended_reply", false);
|
||||
if (extended_reply) {
|
||||
sb.append("<p>");
|
||||
if (ref.from != null && ref.from.length > 0)
|
||||
sb.append("<strong>").append(context.getString(R.string.title_from)).append("</strong> ")
|
||||
.append(Html.escapeHtml(MessageHelper.formatAddresses(ref.from)))
|
||||
.append("<br>\n");
|
||||
if (ref.to != null && ref.to.length > 0)
|
||||
sb.append("<strong>").append(context.getString(R.string.title_to)).append("</strong> ")
|
||||
.append(Html.escapeHtml(MessageHelper.formatAddresses(ref.to))).
|
||||
append("<br>\n");
|
||||
if (ref.cc != null && ref.cc.length > 0)
|
||||
sb.append("<strong>").append(context.getString(R.string.title_cc)).append("</strong> ")
|
||||
.append(Html.escapeHtml(MessageHelper.formatAddresses(ref.cc)))
|
||||
.append("<br>\n");
|
||||
sb.append("<strong>").append(context.getString(R.string.title_received)).append("</strong> ")
|
||||
.append(Html.escapeHtml(DF.format(ref.received)))
|
||||
.append("<br>\n");
|
||||
sb.append("<strong>").append(context.getString(R.string.title_subject)).append("</strong> ")
|
||||
.append(Html.escapeHtml(ref.subject == null ? "" : ref.subject));
|
||||
sb.append("</p>\n");
|
||||
} else {
|
||||
sb.append("<p>");
|
||||
sb.append(Html.escapeHtml(DF.format(new Date(ref.received)))).append(" ");
|
||||
sb.append(Html.escapeHtml(MessageHelper.formatAddresses(ref.from))).append(":");
|
||||
sb.append("</p>\n");
|
||||
}
|
||||
|
||||
boolean quote_reply = prefs.getBoolean("quote_reply", true);
|
||||
boolean quote = (quote_reply && ("reply".equals(action) || "reply_all".equals(action)));
|
||||
if (quote)
|
||||
sb.append("<blockquote>");
|
||||
sb.append(refText);
|
||||
if (quote)
|
||||
sb.append("</blockquote>");
|
||||
|
||||
Helper.writeText(data.draft.getRefFile(context), sb.toString());
|
||||
}
|
||||
|
||||
if ("new".equals(action)) {
|
||||
ArrayList<Uri> uris = args.getParcelableArrayList("attachments");
|
||||
if (uris != null)
|
||||
@@ -2581,22 +2548,43 @@ public class FragmentCompose extends FragmentBase {
|
||||
}
|
||||
}
|
||||
|
||||
// Create initial revision
|
||||
EntityRevision revision = new EntityRevision();
|
||||
revision.message = data.draft.id;
|
||||
revision.sequence = data.draft.revision;
|
||||
revision.reference = data.draft.getRefFile(context).exists();
|
||||
db.revision().insertRevision(revision);
|
||||
Helper.writeText(data.draft.getFile(context, data.draft.revision), body);
|
||||
|
||||
if (data.draft.encrypt == null || !data.draft.encrypt)
|
||||
EntityOperation.queue(context, data.draft, EntityOperation.ADD);
|
||||
} else {
|
||||
if (data.draft.content) {
|
||||
|
||||
if (data.draft.revision == null) {
|
||||
data.draft.revision = 1;
|
||||
data.draft.revisions = 1;
|
||||
db.message().setMessageRevision(data.draft.id, data.draft.revision);
|
||||
db.message().setMessageRevisions(data.draft.id, data.draft.revisions);
|
||||
}
|
||||
|
||||
File file = data.draft.getFile(context);
|
||||
String html = Helper.readText(file);
|
||||
html = HtmlHelper.sanitize(context, html, true, false);
|
||||
|
||||
Document doc = JsoupEx.parse(Helper.readText(file));
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
|
||||
File refFile = data.draft.getRefFile(context);
|
||||
if (refFile.exists()) {
|
||||
ref.html(Helper.readText(refFile));
|
||||
refFile.delete();
|
||||
}
|
||||
|
||||
Document document = HtmlHelper.sanitize(context, doc.html(), true, false);
|
||||
for (Element e : ref)
|
||||
document.appendChild(e);
|
||||
|
||||
String html = JsoupEx.parse(document.html()).html();
|
||||
Helper.writeText(file, html);
|
||||
Helper.writeText(data.draft.getFile(context, data.draft.revision), html);
|
||||
|
||||
db.message().setMessageContent(data.draft.id,
|
||||
true,
|
||||
data.draft.plain_only,
|
||||
HtmlHelper.getPreview(html),
|
||||
null);
|
||||
} else {
|
||||
if (data.draft.uid == null)
|
||||
throw new IllegalStateException("Draft without uid");
|
||||
@@ -2653,10 +2641,8 @@ public class FragmentCompose extends FragmentBase {
|
||||
grpAddresses.setVisibility("reply_all".equals(action) ? View.VISIBLE : View.GONE);
|
||||
ibCcBcc.setVisibility(View.VISIBLE);
|
||||
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(
|
||||
data.draft.revision != null && data.draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(
|
||||
data.draft.revision != null && !data.draft.revision.equals(data.draft.revisions));
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(data.draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(data.draft.revision < data.draft.revisions);
|
||||
|
||||
if (args.getBoolean("incomplete"))
|
||||
Snackbar.make(view, R.string.title_attachments_incomplete, Snackbar.LENGTH_LONG).show();
|
||||
@@ -2956,59 +2942,54 @@ public class FragmentCompose extends FragmentBase {
|
||||
db.message().updateMessage(draft);
|
||||
}
|
||||
|
||||
if (action == R.id.action_undo || action == R.id.action_redo) {
|
||||
if (draft.revision != null && draft.revisions != null) {
|
||||
Helper.writeText(draft.getFile(context, draft.revision), body);
|
||||
String p = Helper.readText(draft.getFile(context));
|
||||
Document doc = JsoupEx.parse(p);
|
||||
if ((body != null && !body.equals(doc.html())) ||
|
||||
(extras != null && extras.containsKey("html"))) {
|
||||
dirty = true;
|
||||
|
||||
if (action == R.id.action_undo) {
|
||||
if (draft.revision > 1)
|
||||
draft.revision--;
|
||||
} else {
|
||||
if (draft.revision < draft.revisions)
|
||||
draft.revision++;
|
||||
}
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
|
||||
// Restore revision
|
||||
Log.i("Restoring revision=" + draft.revision);
|
||||
body = Helper.readText(draft.getFile(context, draft.revision));
|
||||
// Get saved body
|
||||
Document d;
|
||||
if (extras != null && extras.containsKey("html")) {
|
||||
// Save current revision
|
||||
Document c = JsoupEx.parse(body);
|
||||
if (c.body() != null && ref.size() > 0)
|
||||
c.body().appendChild(ref.first());
|
||||
Helper.writeText(draft.getFile(context, draft.revision), c.html());
|
||||
|
||||
d = JsoupEx.parse(extras.getString("html"));
|
||||
} else {
|
||||
d = JsoupEx.parse(body);
|
||||
if (d.body() != null && ref.size() > 0)
|
||||
d.body().appendChild(ref.first());
|
||||
}
|
||||
} else {
|
||||
String previous = Helper.readText(draft.getFile(context));
|
||||
if ((body != null && !body.equals(previous)) ||
|
||||
(extras != null && extras.containsKey("html"))) {
|
||||
dirty = true;
|
||||
|
||||
// Get revision info
|
||||
boolean reference;
|
||||
if (extras != null && extras.containsKey("html")) {
|
||||
reference = false;
|
||||
body = extras.getString("html");
|
||||
} else {
|
||||
File refFile = EntityMessage.getRefFile(context, draft.id);
|
||||
if (draft.revision == null)
|
||||
reference = refFile.exists();
|
||||
else {
|
||||
EntityRevision revision = db.revision().getRevision(draft.id, draft.revision);
|
||||
reference = (revision == null ? refFile.exists() : revision.reference);
|
||||
}
|
||||
}
|
||||
body = d.html();
|
||||
|
||||
// Create new revision
|
||||
if (draft.revisions == null)
|
||||
draft.revisions = 1;
|
||||
else
|
||||
draft.revisions++;
|
||||
// Create new revision
|
||||
if (action != R.id.action_undo && action != R.id.action_redo) {
|
||||
draft.revisions++;
|
||||
draft.revision = draft.revisions;
|
||||
|
||||
Log.i("Creating revision sequence=" + draft.revision + " reference=" + reference);
|
||||
EntityRevision revision = new EntityRevision();
|
||||
revision.message = draft.id;
|
||||
revision.sequence = draft.revision;
|
||||
revision.reference = reference;
|
||||
db.revision().insertRevision(revision);
|
||||
|
||||
Helper.writeText(draft.getFile(context, draft.revision), body);
|
||||
}
|
||||
|
||||
Helper.writeText(draft.getFile(context, draft.revision), body);
|
||||
}
|
||||
|
||||
if (action == R.id.action_undo || action == R.id.action_redo) {
|
||||
if (action == R.id.action_undo) {
|
||||
if (draft.revision > 1)
|
||||
draft.revision--;
|
||||
} else {
|
||||
if (draft.revision < draft.revisions)
|
||||
draft.revision++;
|
||||
}
|
||||
|
||||
// Restore revision
|
||||
Log.i("Restoring revision=" + draft.revision);
|
||||
body = Helper.readText(draft.getFile(context, draft.revision));
|
||||
}
|
||||
|
||||
Helper.writeText(draft.getFile(context), body);
|
||||
@@ -3094,13 +3075,8 @@ public class FragmentCompose extends FragmentBase {
|
||||
|
||||
} else if (action == R.id.action_send) {
|
||||
// Remove unused inline images
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(body);
|
||||
File rfile = draft.getRefFile(context);
|
||||
if (rfile.exists())
|
||||
sb.append(Helper.readText(rfile));
|
||||
List<String> cids = new ArrayList<>();
|
||||
for (Element element : JsoupEx.parse(sb.toString()).select("img")) {
|
||||
for (Element element : JsoupEx.parse(body).select("img")) {
|
||||
String src = element.attr("src");
|
||||
if (src.startsWith("cid:"))
|
||||
cids.add("<" + src.substring(4) + ">");
|
||||
@@ -3115,8 +3091,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
// Delete draft (cannot move to outbox)
|
||||
EntityOperation.queue(context, draft, EntityOperation.DELETE);
|
||||
|
||||
File refDraftFile = draft.getRefFile(context);
|
||||
|
||||
// Copy message to outbox
|
||||
draft.id = null;
|
||||
draft.folder = db.folder().getOutbox().id;
|
||||
@@ -3124,10 +3098,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
draft.ui_hide = false;
|
||||
draft.id = db.message().insertMessage(draft);
|
||||
Helper.writeText(draft.getFile(context), body);
|
||||
if (refDraftFile.exists()) {
|
||||
File refFile = draft.getRefFile(context);
|
||||
refDraftFile.renameTo(refFile);
|
||||
}
|
||||
|
||||
// Move attachments
|
||||
for (EntityAttachment attachment : attachments)
|
||||
@@ -3183,8 +3153,8 @@ public class FragmentCompose extends FragmentBase {
|
||||
etCc.setText(MessageHelper.formatAddressesCompose(draft.cc));
|
||||
etBcc.setText(MessageHelper.formatAddressesCompose(draft.bcc));
|
||||
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(draft.revision != null && draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(draft.revision != null && !draft.revision.equals(draft.revisions));
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(draft.revision < draft.revisions);
|
||||
|
||||
if (action == R.id.action_delete) {
|
||||
autosave = false;
|
||||
@@ -3289,8 +3259,8 @@ public class FragmentCompose extends FragmentBase {
|
||||
|
||||
pbWait.setVisibility(View.GONE);
|
||||
media_bar.setVisibility(media ? View.VISIBLE : View.GONE);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(draft.revision != null && draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(draft.revision != null && !draft.revision.equals(draft.revisions));
|
||||
bottom_navigation.getMenu().findItem(R.id.action_undo).setVisible(draft.revision > 1);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_redo).setVisible(draft.revision < draft.revisions);
|
||||
bottom_navigation.setVisibility(View.VISIBLE);
|
||||
|
||||
Helper.setViewsEnabled(view, true);
|
||||
@@ -3310,8 +3280,11 @@ public class FragmentCompose extends FragmentBase {
|
||||
if (draft == null || !draft.content)
|
||||
throw new IllegalArgumentException(context.getString(R.string.title_no_body));
|
||||
|
||||
String body = Helper.readText(draft.getFile(context));
|
||||
Spanned spannedBody = HtmlHelper.fromHtml(body, new Html.ImageGetter() {
|
||||
Document doc = JsoupEx.parse(Helper.readText(draft.getFile(context)));
|
||||
Elements ref = doc.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
|
||||
Spanned spannedBody = HtmlHelper.fromHtml(doc.html(), new Html.ImageGetter() {
|
||||
@Override
|
||||
public Drawable getDrawable(String source) {
|
||||
return ImageHelper.decodeImage(context, id, source, true, zoom, etBody);
|
||||
@@ -3332,13 +3305,9 @@ public class FragmentCompose extends FragmentBase {
|
||||
spannedBody = bodyBuilder;
|
||||
|
||||
Spanned spannedRef = null;
|
||||
File refFile = draft.getRefFile(context);
|
||||
EntityRevision revision = db.revision().getRevision(draft.id, draft.revision == null ? 0 : draft.revision);
|
||||
Log.i("Viewing revision=" + (revision == null ? null : revision.sequence) +
|
||||
" reference=" + (revision == null ? null : revision.reference));
|
||||
if (revision == null ? refFile.exists() : revision.reference) {
|
||||
String quote = HtmlHelper.sanitize(context, Helper.readText(refFile), show_images, false);
|
||||
Spanned spannedQuote = HtmlHelper.fromHtml(quote,
|
||||
if (!ref.isEmpty()) {
|
||||
Document quote = HtmlHelper.sanitize(context, ref.outerHtml(), show_images, false);
|
||||
Spanned spannedQuote = HtmlHelper.fromHtml(quote.html(),
|
||||
new Html.ImageGetter() {
|
||||
@Override
|
||||
public Drawable getDrawable(String source) {
|
||||
@@ -3384,7 +3353,6 @@ public class FragmentCompose extends FragmentBase {
|
||||
tvReference.setText(text[1]);
|
||||
tvReference.setVisibility(text[1] == null ? View.GONE : View.VISIBLE);
|
||||
grpReferenceHint.setVisibility(text[1] == null || !ref_hint ? View.GONE : View.VISIBLE);
|
||||
ibReferenceDelete.setVisibility(text[1] == null ? View.GONE : View.VISIBLE);
|
||||
ibReferenceEdit.setVisibility(text[1] == null ? View.GONE : View.VISIBLE);
|
||||
ibReferenceImages.setVisibility(ref_has_images && !show_images ? View.VISIBLE : View.GONE);
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||
private final static String[] RESET_QUESTIONS = new String[]{
|
||||
"welcome", "crash_reports_asked",
|
||||
"html_always_images", "print_html_confirmed",
|
||||
"identities_asked", "delete_ref_confirmed", "send_dialog"
|
||||
"identities_asked", "compose_reference", "send_dialog"
|
||||
};
|
||||
|
||||
@Override
|
||||
|
||||
@@ -80,17 +80,21 @@ public class HtmlHelper {
|
||||
private static final List<String> tails = Collections.unmodifiableList(Arrays.asList(
|
||||
"h1", "h2", "h3", "h4", "h5", "h6", "p", "ol", "ul", "li"));
|
||||
|
||||
static String sanitize(Context context, String html, boolean show_images, boolean autolink) {
|
||||
static Document sanitize(Context context, String html, boolean show_images, boolean autolink) {
|
||||
try {
|
||||
return _sanitize(context, html, show_images, autolink);
|
||||
} catch (Throwable ex) {
|
||||
// OutOfMemoryError
|
||||
Log.e(ex);
|
||||
return Helper.formatThrowable(ex);
|
||||
Document document = new Document("");
|
||||
Element strong = document.createElement("strong");
|
||||
strong.text(Helper.formatThrowable(ex));
|
||||
document.appendChild(strong);
|
||||
return document;
|
||||
}
|
||||
}
|
||||
|
||||
private static String _sanitize(Context context, String html, boolean show_images, boolean autolink) {
|
||||
private static Document _sanitize(Context context, String html, boolean show_images, boolean autolink) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean text_color = prefs.getBoolean("text_color", true);
|
||||
boolean display_hidden = prefs.getBoolean("display_hidden", false);
|
||||
@@ -472,8 +476,7 @@ public class HtmlHelper {
|
||||
if (!TextUtils.isEmpty(span.attr("color")))
|
||||
span.tagName("font");
|
||||
|
||||
Element body = document.body();
|
||||
return (body == null ? "" : body.html());
|
||||
return document;
|
||||
}
|
||||
|
||||
private static boolean hasVisibleContent(List<Node> nodes) {
|
||||
|
||||
@@ -31,6 +31,8 @@ import com.sun.mail.util.FolderClosedIOException;
|
||||
import com.sun.mail.util.MessageRemovedIOException;
|
||||
|
||||
import org.jsoup.nodes.Document;
|
||||
import org.jsoup.nodes.Element;
|
||||
import org.jsoup.select.Elements;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
@@ -284,9 +286,6 @@ public class MessageHelper {
|
||||
}
|
||||
|
||||
static void build(Context context, EntityMessage message, List<EntityAttachment> attachments, EntityIdentity identity, MimeMessage imessage) throws IOException, MessagingException {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean usenet = prefs.getBoolean("usenet_signature", false);
|
||||
|
||||
if (message.receipt != null && message.receipt) {
|
||||
// https://www.ietf.org/rfc/rfc3798.txt
|
||||
Multipart report = new MimeMultipart("report; report-type=disposition-notification");
|
||||
@@ -322,31 +321,30 @@ public class MessageHelper {
|
||||
}
|
||||
|
||||
// Build html body
|
||||
StringBuilder body = new StringBuilder();
|
||||
body.append("<html><body>");
|
||||
Document document = JsoupEx.parse(Helper.readText(message.getFile(context)));
|
||||
Elements ref = document.select("div[fairemail=reference]");
|
||||
ref.remove();
|
||||
ref.removeAttr("fairemail");
|
||||
|
||||
Document mdoc = JsoupEx.parse(Helper.readText(message.getFile(context)));
|
||||
if (mdoc.body() != null)
|
||||
body.append(mdoc.body().html());
|
||||
|
||||
// When sending message
|
||||
if (identity != null) {
|
||||
if (!TextUtils.isEmpty(identity.signature) && message.signature) {
|
||||
Document sdoc = JsoupEx.parse(identity.signature);
|
||||
if (sdoc.body() != null) {
|
||||
if (usenet) // https://www.ietf.org/rfc/rfc3676.txt
|
||||
body.append("<span>-- <br></span>");
|
||||
body.append(sdoc.body().html());
|
||||
if (document.body() != null) {
|
||||
// When sending message
|
||||
if (identity != null && !TextUtils.isEmpty(identity.signature) && message.signature) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean usenet = prefs.getBoolean("usenet_signature", false);
|
||||
if (usenet) {
|
||||
// https://www.ietf.org/rfc/rfc3676.txt
|
||||
Element span = document.createElement("span");
|
||||
span.text("-- ");
|
||||
span.appendElement("br");
|
||||
document.body().appendChild(span);
|
||||
}
|
||||
document.body().append(identity.signature);
|
||||
}
|
||||
|
||||
File refFile = message.getRefFile(context);
|
||||
if (refFile.exists())
|
||||
body.append(Helper.readText(refFile));
|
||||
if (ref.size() > 0)
|
||||
document.body().appendChild(ref.first());
|
||||
}
|
||||
|
||||
body.append("</body></html>");
|
||||
|
||||
// multipart/mixed
|
||||
// multipart/related
|
||||
// multipart/alternative
|
||||
@@ -355,7 +353,7 @@ public class MessageHelper {
|
||||
// inlines
|
||||
// attachments
|
||||
|
||||
String htmlContent = body.toString();
|
||||
String htmlContent = document.html();
|
||||
String plainContent = HtmlHelper.getText(htmlContent);
|
||||
|
||||
BodyPart plainPart = new MimeBodyPart();
|
||||
|
||||
@@ -339,23 +339,10 @@
|
||||
android:text="@string/title_no_format"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||
android:textStyle="italic"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ibReferenceDelete"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ibReferenceEdit"
|
||||
app:layout_constraintStart_toEndOf="@id/ibCloseRefHint"
|
||||
app:layout_constraintTop_toBottomOf="@id/vSeparatorSignature" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/ibReferenceDelete"
|
||||
android:layout_width="36dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:layout_marginEnd="6dp"
|
||||
android:background="@null"
|
||||
android:contentDescription="@string/title_legend_edit"
|
||||
android:padding="3dp"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ibReferenceEdit"
|
||||
app:layout_constraintTop_toBottomOf="@id/vSeparatorSignature"
|
||||
app:srcCompat="@drawable/baseline_delete_24" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/ibReferenceEdit"
|
||||
android:layout_width="36dp"
|
||||
@@ -387,7 +374,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:barrierDirection="bottom"
|
||||
app:constraint_referenced_ids="ibCloseRefHint,tvReferenceHint,ibReferenceDelete,ibReferenceEdit,ibReferenceImages" />
|
||||
app:constraint_referenced_ids="ibCloseRefHint,tvReferenceHint,ibReferenceEdit,ibReferenceImages" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvReference"
|
||||
|
||||
@@ -623,7 +623,6 @@
|
||||
<string name="title_ask_show_html_images">Always show images on showing original messages</string>
|
||||
<string name="title_ask_show_image">Showing images can leak privacy sensitive information</string>
|
||||
<string name="title_ask_show_image_hint">Images recognized as tracking images will not be shown</string>
|
||||
<string name="title_ask_delete_ref">Delete replied/forwarded message text? This cannot be undone.</string>
|
||||
<string name="title_ask_sync_all">Synchronize all messages in %1$s?</string>
|
||||
<string name="title_ask_delete_local">Delete local messages? Messages will remain on the remote server.</string>
|
||||
<string name="title_ask_help">Help improve FairEmail</string>
|
||||
|
||||
Reference in New Issue
Block a user