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

367 lines
14 KiB
Java
Raw Normal View History

2018-08-02 13:33:06 +00:00
package eu.faircode.email;
/*
2018-08-14 05:53:24 +00:00
This file is part of FairEmail.
2018-08-02 13:33:06 +00:00
2018-08-14 05:53:24 +00:00
FairEmail is free software: you can redistribute it and/or modify
2018-08-02 13:33:06 +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-02 13:33:06 +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-02 13:33:06 +00:00
2018-12-31 08:04:33 +00:00
Copyright 2018-2019 by Marcel Bokhorst (M66B)
2018-08-02 13:33:06 +00:00
*/
2018-12-14 09:11:45 +00:00
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
2019-02-10 12:01:21 +00:00
import android.text.Html;
import android.text.Spanned;
2018-12-14 09:11:45 +00:00
import android.text.TextUtils;
import android.util.Base64;
2018-08-02 13:33:06 +00:00
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
2018-08-02 13:33:06 +00:00
import org.jsoup.nodes.Node;
import org.jsoup.nodes.TextNode;
2018-08-28 12:52:33 +00:00
import org.jsoup.safety.Whitelist;
2018-08-02 13:33:06 +00:00
import org.jsoup.select.NodeTraversor;
import org.jsoup.select.NodeVisitor;
2019-01-16 13:42:17 +00:00
import java.io.BufferedOutputStream;
2018-12-14 09:11:45 +00:00
import java.io.File;
2019-01-27 12:01:41 +00:00
import java.io.FileNotFoundException;
2018-12-14 09:11:45 +00:00
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
2019-01-16 13:42:17 +00:00
import java.io.OutputStream;
2018-12-14 09:11:45 +00:00
import java.net.URL;
2019-01-05 11:17:33 +00:00
import java.util.Arrays;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
2018-08-02 13:33:06 +00:00
2019-02-10 12:01:21 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.text.HtmlCompat;
import static androidx.core.text.HtmlCompat.FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM;
import static androidx.core.text.HtmlCompat.TO_HTML_PARAGRAPH_LINES_CONSECUTIVE;
public class HtmlHelper {
2019-01-05 11:17:33 +00:00
private static final int PREVIEW_SIZE = 250;
2018-09-02 11:18:32 +00:00
private static Pattern pattern = Pattern.compile("([http|https]+://[\\w\\S(\\.|:|/)]+)");
2019-02-10 12:01:21 +00:00
private static final List<String> heads = Arrays.asList("h1", "h2", "h3", "h4", "h5", "h6", "p", "table", "ol", "ul", "br", "hr");
private static final List<String> tails = Arrays.asList("h1", "h2", "h3", "h4", "h5", "h6", "p", "ol", "ul", "li");
2018-08-02 13:33:06 +00:00
2019-02-10 12:01:21 +00:00
static String sanitize(String html, boolean showQuotes) {
2018-12-14 09:05:48 +00:00
Document document = Jsoup.parse(Jsoup.clean(html, Whitelist
.relaxed()
.addProtocols("img", "src", "cid")
.addProtocols("img", "src", "data")));
2018-11-24 11:27:44 +00:00
2019-02-10 12:01:21 +00:00
for (Element td : document.select("th,td")) {
Element next = td.nextElementSibling();
if (next != null && ("th".equals(next.tagName()) || "td".equals(next.tagName())))
td.append("<span> </span>");
else
td.append("<br>");
}
for (Element ol : document.select("ol,ul"))
ol.append("<br>");
2018-11-24 11:27:44 +00:00
2018-11-24 11:42:21 +00:00
for (Element img : document.select("img")) {
2019-02-11 08:35:03 +00:00
img.prependElement("br");
2018-11-24 11:42:21 +00:00
boolean linked = false;
for (Element parent : img.parents())
if ("a".equals(parent.tagName())) {
linked = true;
break;
}
if (!linked) {
2018-11-24 11:27:44 +00:00
String src = img.attr("src");
if (src.startsWith("http://") || src.startsWith("https://")) {
Element a = document.createElement("a");
a.attr("href", src);
2019-02-11 08:35:03 +00:00
a.appendChild(img.clone());
2018-11-24 11:27:44 +00:00
img.replaceWith(a);
}
}
2018-11-24 11:42:21 +00:00
}
2018-11-24 11:27:44 +00:00
2019-02-10 12:01:21 +00:00
if (!showQuotes)
2018-12-21 14:19:07 +00:00
for (Element quote : document.select("blockquote"))
2019-02-10 12:01:21 +00:00
quote.html("&#8230;");
2018-12-21 14:19:07 +00:00
2019-02-10 12:01:21 +00:00
// Autolink
NodeTraversor.traverse(new NodeVisitor() {
@Override
public void head(Node node, int depth) {
if (node instanceof TextNode) {
2019-02-10 12:01:21 +00:00
String text = Html.escapeHtml(((TextNode) node).text());
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
String ref = matcher.group();
text = text.replace(ref, String.format("<a href=\"%s\">%s</a>", ref, ref));
2018-09-02 11:18:32 +00:00
}
node.before(text);
((TextNode) node).text("");
2018-09-02 11:18:32 +00:00
}
}
2018-09-02 11:18:32 +00:00
@Override
public void tail(Node node, int depth) {
}
}, document.body());
2018-12-14 19:15:07 +00:00
return document.body().html();
2018-08-02 13:33:06 +00:00
}
2018-12-14 09:11:45 +00:00
static Drawable decodeImage(String source, Context context, long id, boolean show) {
2018-12-30 14:35:19 +00:00
int px = Helper.dp2pixels(context, 48);
2018-12-14 09:11:45 +00:00
if (TextUtils.isEmpty(source)) {
Drawable d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24, context.getTheme());
d.setBounds(0, 0, px, px);
2018-12-14 09:11:45 +00:00
return d;
}
boolean embedded = source.startsWith("cid:");
boolean data = source.startsWith("data:");
2019-01-29 13:29:39 +00:00
Log.i("Image show=" + show + " embedded=" + embedded + " data=" + data + " source=" + source);
2018-12-14 09:11:45 +00:00
2019-01-29 13:29:39 +00:00
if (!show) {
// Show placeholder icon
int resid = (embedded || data ? R.drawable.baseline_photo_library_24 : R.drawable.baseline_image_24);
Drawable d = context.getResources().getDrawable(resid, context.getTheme());
d.setBounds(0, 0, px, px);
return d;
}
2018-12-20 15:45:42 +00:00
2019-01-29 13:29:39 +00:00
// Embedded images
if (embedded) {
String cid = "<" + source.substring(4) + ">";
EntityAttachment attachment = DB.getInstance(context).attachment().getAttachment(id, cid);
if (attachment == null) {
Drawable d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24, context.getTheme());
d.setBounds(0, 0, px, px);
return d;
} else if (!attachment.available) {
Drawable d = context.getResources().getDrawable(R.drawable.baseline_photo_library_24, context.getTheme());
d.setBounds(0, 0, px, px);
return d;
} else {
Bitmap bm = Helper.decodeImage(
EntityAttachment.getFile(context, attachment.id),
context.getResources().getDisplayMetrics().widthPixels);
if (bm == null) {
2018-12-20 15:45:42 +00:00
Drawable d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24, context.getTheme());
d.setBounds(0, 0, px, px);
2018-12-20 15:45:42 +00:00
return d;
2019-02-02 18:35:40 +00:00
} else {
Drawable d = new BitmapDrawable(bm);
2019-02-04 08:18:18 +00:00
d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
2019-02-02 18:35:40 +00:00
return d;
}
2019-01-29 13:29:39 +00:00
}
}
2018-12-14 09:11:45 +00:00
2019-01-29 13:29:39 +00:00
// Data URI
if (data)
2018-12-14 09:11:45 +00:00
try {
2019-01-29 13:29:39 +00:00
// "<img src=\"data:image/png;base64,iVBORw0KGgoAAA" +
// "ANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4" +
// "//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU" +
// "5ErkJggg==\" alt=\"Red dot\" />";
2018-12-14 09:11:45 +00:00
2019-01-29 13:29:39 +00:00
String base64 = source.substring(source.indexOf(',') + 1);
byte[] bytes = Base64.decode(base64.getBytes(), 0);
2018-12-14 09:11:45 +00:00
2019-01-29 13:29:39 +00:00
Bitmap bm = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
if (bm == null)
throw new IllegalArgumentException("decode byte array failed");
2018-12-14 09:11:45 +00:00
Drawable d = new BitmapDrawable(context.getResources(), bm);
d.setBounds(0, 0, bm.getWidth(), bm.getHeight());
return d;
2019-01-29 13:29:39 +00:00
} catch (IllegalArgumentException ex) {
Log.w(ex);
2018-12-14 09:11:45 +00:00
Drawable d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24, context.getTheme());
d.setBounds(0, 0, px, px);
2018-12-14 09:11:45 +00:00
return d;
2019-01-29 13:29:39 +00:00
}
// Get cache file name
File dir = new File(context.getCacheDir(), "images");
if (!dir.exists())
dir.mkdir();
2019-01-30 09:10:33 +00:00
File file = new File(dir, id + "_" + Math.abs(source.hashCode()) + ".png");
2019-01-29 13:29:39 +00:00
if (file.exists()) {
Log.i("Using cached " + file);
2019-01-30 09:10:33 +00:00
Bitmap bm = BitmapFactory.decodeFile(file.getAbsolutePath());
if (bm == null) {
Drawable d = context.getResources().getDrawable(R.drawable.baseline_broken_image_24, context.getTheme());
d.setBounds(0, 0, px, px);
return d;
} else {
Drawable d = new BitmapDrawable(bm);
d.setBounds(0, 0, bm.getWidth(), bm.getHeight());
return d;
}
2019-01-29 13:29:39 +00:00
}
try {
InputStream probe = null;
BitmapFactory.Options options = new BitmapFactory.Options();
try {
Log.i("Probe " + source);
probe = new URL(source).openStream();
options.inJustDecodeBounds = true;
BitmapFactory.decodeStream(probe, null, options);
2018-12-14 09:11:45 +00:00
} finally {
2019-01-29 13:29:39 +00:00
if (probe != null)
probe.close();
2018-12-14 09:11:45 +00:00
}
2019-01-29 13:29:39 +00:00
Bitmap bm;
InputStream is = null;
try {
Log.i("Download " + source);
is = new URL(source).openStream();
int scaleTo = context.getResources().getDisplayMetrics().widthPixels;
int factor = Math.min(options.outWidth / scaleTo, options.outWidth / scaleTo);
if (factor > 1) {
Log.i("Download image factor=" + factor);
options.inJustDecodeBounds = false;
options.inSampleSize = factor;
bm = BitmapFactory.decodeStream(is, null, options);
} else
bm = BitmapFactory.decodeStream(is);
} finally {
if (is != null)
is.close();
}
if (bm == null)
throw new FileNotFoundException("Download image failed");
Log.i("Downloaded image");
OutputStream os = null;
try {
os = new BufferedOutputStream(new FileOutputStream(file));
bm.compress(Bitmap.CompressFormat.PNG, 100, os);
} finally {
if (os != null)
os.close();
}
// Create drawable from bitmap
Drawable d = new BitmapDrawable(context.getResources(), bm);
d.setBounds(0, 0, bm.getWidth(), bm.getHeight());
return d;
} catch (Throwable ex) {
// Show warning icon
Log.w(ex);
int res = (ex instanceof IOException && !(ex instanceof FileNotFoundException)
? R.drawable.baseline_cloud_off_24
: R.drawable.baseline_broken_image_24);
Drawable d = context.getResources().getDrawable(res, context.getTheme());
2018-12-14 09:11:45 +00:00
d.setBounds(0, 0, px, px);
return d;
}
}
2018-12-14 11:04:50 +00:00
2018-12-24 20:09:47 +00:00
static String getPreview(String body) {
String text = (body == null ? null : Jsoup.parse(body).text());
2019-01-05 11:17:33 +00:00
return (text == null ? null : text.substring(0, Math.min(text.length(), PREVIEW_SIZE)));
}
static String getText(String html) {
final StringBuilder sb = new StringBuilder();
NodeTraversor.traverse(new NodeVisitor() {
2019-02-10 12:01:21 +00:00
private int qlevel = 0;
2019-01-05 11:17:33 +00:00
public void head(Node node, int depth) {
if (node instanceof TextNode)
2019-02-10 12:01:21 +00:00
sb.append(((TextNode) node).text()).append(' ');
2019-01-05 11:17:33 +00:00
else {
String name = node.nodeName();
2019-02-10 12:01:21 +00:00
if ("li".equals(name))
sb.append("* ");
else if ("blockquote".equals(name))
qlevel++;
if (heads.contains(name))
newline();
2019-01-05 11:17:33 +00:00
}
}
public void tail(Node node, int depth) {
String name = node.nodeName();
2019-02-10 12:01:21 +00:00
if ("a".equals(name))
sb.append("[").append(node.absUrl("href")).append("] ");
if ("img".equals(name))
sb.append("[").append(node.absUrl("src")).append("] ");
else if ("th".equals(name) || "td".equals(name)) {
Node next = node.nextSibling();
if (next == null || !("th".equals(next.nodeName()) || "td".equals(next.nodeName())))
newline();
} else if ("blockquote".equals(name))
qlevel--;
2019-01-05 11:17:33 +00:00
if (tails.contains(name))
2019-02-10 12:01:21 +00:00
newline();
}
private void newline() {
trimEnd(sb);
sb.append("\n");
for (int i = 0; i < qlevel; i++)
sb.append('>');
if (qlevel > 0)
sb.append(' ');
2019-01-05 11:17:33 +00:00
}
}, Jsoup.parse(html));
2019-02-10 12:01:21 +00:00
trimEnd(sb);
sb.append("\n");
2019-01-05 11:17:33 +00:00
return sb.toString();
2018-12-24 20:09:47 +00:00
}
2019-02-10 12:01:21 +00:00
static void trimEnd(StringBuilder sb) {
int length = sb.length();
while (length > 0 && sb.charAt(length - 1) == ' ')
length--;
sb.setLength(length);
}
static Spanned fromHtml(@NonNull String html) {
return fromHtml(html, null, null);
}
static Spanned fromHtml(@NonNull String html, @Nullable Html.ImageGetter imageGetter, @Nullable Html.TagHandler tagHandler) {
return HtmlCompat.fromHtml(html, FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM, imageGetter, null);
}
static String toHtml(Spanned spanned) {
return HtmlCompat.toHtml(spanned, TO_HTML_PARAGRAPH_LINES_CONSECUTIVE);
}
2018-08-02 13:33:06 +00:00
}