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

310 lines
12 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;
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
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-01-05 11:17:33 +00:00
private static final List<String> heads = Arrays.asList("p", "h1", "h2", "h3", "h4", "h5", "tr");
private static final List<String> tails = Arrays.asList("br", "dd", "dt", "p", "h1", "h2", "h3", "h4", "h5");
2018-08-02 13:33:06 +00:00
2018-12-21 14:19:07 +00:00
static String sanitize(String html, boolean quotes) {
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
for (Element tr : document.select("tr"))
tr.after("<br>");
2018-11-24 11:27:44 +00:00
2018-11-24 11:42:21 +00:00
for (Element img : document.select("img")) {
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);
img.replaceWith(a);
a.appendChild(img);
}
}
2018-11-24 11:42:21 +00:00
}
2018-11-24 11:27:44 +00:00
2019-02-04 12:39:38 +00:00
for (Element img : document.select("img")) {
Element p = document.createElement("p");
img.replaceWith(p);
p.appendChild(img);
}
2018-12-21 14:19:07 +00:00
if (!quotes)
for (Element quote : document.select("blockquote"))
quote.text("&#8230;");
NodeTraversor.traverse(new NodeVisitor() {
@Override
public void head(Node node, int depth) {
if (node instanceof TextNode) {
String text = ((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() {
public void head(Node node, int depth) {
if (node instanceof TextNode)
sb.append(((TextNode) node).text());
else {
String name = node.nodeName();
if (name.equals("li"))
sb.append("\n * ");
else if (name.equals("dt"))
sb.append(" ");
else if (heads.contains(name))
sb.append("\n");
}
}
public void tail(Node node, int depth) {
String name = node.nodeName();
if (tails.contains(name))
sb.append("\n");
else if (name.equals("a"))
sb.append(" <").append(node.absUrl("href")).append(">");
}
}, Jsoup.parse(html));
return sb.toString();
2018-12-24 20:09:47 +00:00
}
2018-08-02 13:33:06 +00:00
}