mirror of https://github.com/M66B/FairEmail.git
parent
4a01c00f4e
commit
e4958c0874
@ -0,0 +1,479 @@
|
||||
package eu.faircode.email;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2007 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Typeface;
|
||||
import android.text.Layout;
|
||||
import android.text.Spanned;
|
||||
import android.text.TextDirectionHeuristics;
|
||||
import android.text.TextUtils;
|
||||
import android.text.style.AbsoluteSizeSpan;
|
||||
import android.text.style.AlignmentSpan;
|
||||
import android.text.style.BackgroundColorSpan;
|
||||
import android.text.style.BulletSpan;
|
||||
import android.text.style.CharacterStyle;
|
||||
import android.text.style.ForegroundColorSpan;
|
||||
import android.text.style.ImageSpan;
|
||||
import android.text.style.ParagraphStyle;
|
||||
import android.text.style.QuoteSpan;
|
||||
import android.text.style.RelativeSizeSpan;
|
||||
import android.text.style.StrikethroughSpan;
|
||||
import android.text.style.StyleSpan;
|
||||
import android.text.style.SubscriptSpan;
|
||||
import android.text.style.SuperscriptSpan;
|
||||
import android.text.style.TypefaceSpan;
|
||||
import android.text.style.URLSpan;
|
||||
import android.text.style.UnderlineSpan;
|
||||
|
||||
import static android.text.Html.TO_HTML_PARAGRAPH_LINES_CONSECUTIVE;
|
||||
|
||||
public class HtmlEx {
|
||||
private Context context;
|
||||
|
||||
private static final int TO_HTML_PARAGRAPH_FLAG = 0x00000001;
|
||||
|
||||
public HtmlEx(Context context){
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated use {@link #toHtml(Spanned, int)} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public /* static */ String toHtml(Spanned text) {
|
||||
return toHtml(text, TO_HTML_PARAGRAPH_LINES_CONSECUTIVE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an HTML representation of the provided Spanned text. A best effort is
|
||||
* made to add HTML tags corresponding to spans. Also note that HTML metacharacters
|
||||
* (such as "<" and "&") within the input text are escaped.
|
||||
*
|
||||
* @param text input text to convert
|
||||
* @param option one of {@link #TO_HTML_PARAGRAPH_LINES_CONSECUTIVE} or
|
||||
* {@link #TO_HTML_PARAGRAPH_LINES_INDIVIDUAL}
|
||||
* @return string containing input converted to HTML
|
||||
*/
|
||||
public /* static */ String toHtml(Spanned text, int option) {
|
||||
StringBuilder out = new StringBuilder();
|
||||
withinHtml(out, text, option);
|
||||
return out.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an HTML escaped representation of the given plain text.
|
||||
*/
|
||||
public /* static */ String escapeHtml(CharSequence text) {
|
||||
StringBuilder out = new StringBuilder();
|
||||
withinStyle(out, text, 0, text.length());
|
||||
return out.toString();
|
||||
}
|
||||
|
||||
private /* static */ void withinHtml(StringBuilder out, Spanned text, int option) {
|
||||
if ((option & TO_HTML_PARAGRAPH_FLAG) == TO_HTML_PARAGRAPH_LINES_CONSECUTIVE) {
|
||||
encodeTextAlignmentByDiv(out, text, option);
|
||||
return;
|
||||
}
|
||||
|
||||
withinDiv(out, text, 0, text.length(), option);
|
||||
}
|
||||
|
||||
private /* static */ void encodeTextAlignmentByDiv(StringBuilder out, Spanned text, int option) {
|
||||
int len = text.length();
|
||||
|
||||
int next;
|
||||
for (int i = 0; i < len; i = next) {
|
||||
next = text.nextSpanTransition(i, len, ParagraphStyle.class);
|
||||
ParagraphStyle[] style = text.getSpans(i, next, ParagraphStyle.class);
|
||||
String elements = " ";
|
||||
boolean needDiv = false;
|
||||
|
||||
for(int j = 0; j < style.length; j++) {
|
||||
if (style[j] instanceof AlignmentSpan) {
|
||||
Layout.Alignment align =
|
||||
((AlignmentSpan) style[j]).getAlignment();
|
||||
needDiv = true;
|
||||
if (align == Layout.Alignment.ALIGN_CENTER) {
|
||||
elements = "align=\"center\" " + elements;
|
||||
} else if (align == Layout.Alignment.ALIGN_OPPOSITE) {
|
||||
elements = "align=\"right\" " + elements;
|
||||
} else {
|
||||
elements = "align=\"left\" " + elements;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (needDiv) {
|
||||
out.append("<div ").append(elements).append(">");
|
||||
}
|
||||
|
||||
withinDiv(out, text, i, next, option);
|
||||
|
||||
if (needDiv) {
|
||||
out.append("</div>");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private /* static */ void withinDiv(StringBuilder out, Spanned text, int start, int end,
|
||||
int option) {
|
||||
int next;
|
||||
for (int i = start; i < end; i = next) {
|
||||
next = text.nextSpanTransition(i, end, QuoteSpan.class);
|
||||
QuoteSpan[] quotes = text.getSpans(i, next, QuoteSpan.class);
|
||||
|
||||
for (QuoteSpan quote : quotes) {
|
||||
out.append("<blockquote>");
|
||||
}
|
||||
|
||||
withinBlockquote(out, text, i, next, option);
|
||||
|
||||
for (QuoteSpan quote : quotes) {
|
||||
out.append("</blockquote>\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private /* static */ String getTextDirection(Spanned text, int start, int end) {
|
||||
if (TextDirectionHeuristics.FIRSTSTRONG_LTR.isRtl(text, start, end - start)) {
|
||||
return " dir=\"rtl\"";
|
||||
} else {
|
||||
return " dir=\"ltr\"";
|
||||
}
|
||||
}
|
||||
|
||||
private /* static */ String getTextStyles(Spanned text, int start, int end,
|
||||
boolean forceNoVerticalMargin, boolean includeTextAlign) {
|
||||
String margin = null;
|
||||
String textAlign = null;
|
||||
|
||||
if (forceNoVerticalMargin) {
|
||||
margin = "margin-top:0; margin-bottom:0;";
|
||||
}
|
||||
if (includeTextAlign) {
|
||||
final AlignmentSpan[] alignmentSpans = text.getSpans(start, end, AlignmentSpan.class);
|
||||
|
||||
// Only use the last AlignmentSpan with flag SPAN_PARAGRAPH
|
||||
for (int i = alignmentSpans.length - 1; i >= 0; i--) {
|
||||
AlignmentSpan s = alignmentSpans[i];
|
||||
if ((text.getSpanFlags(s) & Spanned.SPAN_PARAGRAPH) == Spanned.SPAN_PARAGRAPH) {
|
||||
final Layout.Alignment alignment = s.getAlignment();
|
||||
if (alignment == Layout.Alignment.ALIGN_NORMAL) {
|
||||
textAlign = "text-align:start;";
|
||||
} else if (alignment == Layout.Alignment.ALIGN_CENTER) {
|
||||
textAlign = "text-align:center;";
|
||||
} else if (alignment == Layout.Alignment.ALIGN_OPPOSITE) {
|
||||
textAlign = "text-align:end;";
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (margin == null && textAlign == null) {
|
||||
return "";
|
||||
}
|
||||
|
||||
final StringBuilder style = new StringBuilder(" style=\"");
|
||||
if (margin != null && textAlign != null) {
|
||||
style.append(margin).append(" ").append(textAlign);
|
||||
} else if (margin != null) {
|
||||
style.append(margin);
|
||||
} else if (textAlign != null) {
|
||||
style.append(textAlign);
|
||||
}
|
||||
|
||||
return style.append("\"").toString();
|
||||
}
|
||||
|
||||
private /* static */ void withinBlockquote(StringBuilder out, Spanned text, int start, int end,
|
||||
int option) {
|
||||
if ((option & TO_HTML_PARAGRAPH_FLAG) == TO_HTML_PARAGRAPH_LINES_CONSECUTIVE) {
|
||||
withinBlockquoteConsecutive(out, text, start, end);
|
||||
} else {
|
||||
withinBlockquoteIndividual(out, text, start, end);
|
||||
}
|
||||
}
|
||||
|
||||
private /* static */ void withinBlockquoteIndividual(StringBuilder out, Spanned text, int start,
|
||||
int end) {
|
||||
boolean isInList = false;
|
||||
int next;
|
||||
for (int i = start; i <= end; i = next) {
|
||||
next = TextUtils.indexOf(text, '\n', i, end);
|
||||
if (next < 0) {
|
||||
next = end;
|
||||
}
|
||||
|
||||
if (next == i) {
|
||||
if (isInList) {
|
||||
// Current paragraph is no longer a list item; close the previously opened list
|
||||
isInList = false;
|
||||
out.append("</ul>\n");
|
||||
}
|
||||
out.append("<br>\n");
|
||||
} else {
|
||||
boolean isListItem = false;
|
||||
ParagraphStyle[] paragraphStyles = text.getSpans(i, next, ParagraphStyle.class);
|
||||
for (ParagraphStyle paragraphStyle : paragraphStyles) {
|
||||
final int spanFlags = text.getSpanFlags(paragraphStyle);
|
||||
if ((spanFlags & Spanned.SPAN_PARAGRAPH) == Spanned.SPAN_PARAGRAPH
|
||||
&& paragraphStyle instanceof BulletSpan) {
|
||||
isListItem = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (isListItem && !isInList) {
|
||||
// Current paragraph is the first item in a list
|
||||
isInList = true;
|
||||
out.append("<ul")
|
||||
.append(getTextStyles(text, i, next, true, false))
|
||||
.append(">\n");
|
||||
}
|
||||
|
||||
if (isInList && !isListItem) {
|
||||
// Current paragraph is no longer a list item; close the previously opened list
|
||||
isInList = false;
|
||||
out.append("</ul>\n");
|
||||
}
|
||||
|
||||
String tagType = isListItem ? "li" : "p";
|
||||
out.append("<").append(tagType)
|
||||
.append(getTextDirection(text, i, next))
|
||||
.append(getTextStyles(text, i, next, !isListItem, true))
|
||||
.append(">");
|
||||
|
||||
withinParagraph(out, text, i, next);
|
||||
|
||||
out.append("</");
|
||||
out.append(tagType);
|
||||
out.append(">\n");
|
||||
|
||||
if (next == end && isInList) {
|
||||
isInList = false;
|
||||
out.append("</ul>\n");
|
||||
}
|
||||
}
|
||||
|
||||
next++;
|
||||
}
|
||||
}
|
||||
|
||||
private /* static */ void withinBlockquoteConsecutive(StringBuilder out, Spanned text, int start,
|
||||
int end) {
|
||||
out.append("<p").append(getTextDirection(text, start, end)).append(">");
|
||||
|
||||
int next;
|
||||
for (int i = start; i < end; i = next) {
|
||||
next = TextUtils.indexOf(text, '\n', i, end);
|
||||
if (next < 0) {
|
||||
next = end;
|
||||
}
|
||||
|
||||
int nl = 0;
|
||||
|
||||
while (next < end && text.charAt(next) == '\n') {
|
||||
nl++;
|
||||
next++;
|
||||
}
|
||||
|
||||
withinParagraph(out, text, i, next - nl);
|
||||
|
||||
if (nl == 1) {
|
||||
out.append("<br>\n");
|
||||
} else {
|
||||
for (int j = 2; j < nl; j++) {
|
||||
out.append("<br>");
|
||||
}
|
||||
if (next != end) {
|
||||
/* Paragraph should be closed and reopened */
|
||||
out.append("</p>\n");
|
||||
out.append("<p").append(getTextDirection(text, start, end)).append(">");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
out.append("</p>\n");
|
||||
}
|
||||
|
||||
private /* static */ void withinParagraph(StringBuilder out, Spanned text, int start, int end) {
|
||||
int next;
|
||||
for (int i = start; i < end; i = next) {
|
||||
next = text.nextSpanTransition(i, end, CharacterStyle.class);
|
||||
CharacterStyle[] style = text.getSpans(i, next, CharacterStyle.class);
|
||||
|
||||
for (int j = 0; j < style.length; j++) {
|
||||
if (style[j] instanceof StyleSpan) {
|
||||
int s = ((StyleSpan) style[j]).getStyle();
|
||||
|
||||
if ((s & Typeface.BOLD) != 0) {
|
||||
out.append("<b>");
|
||||
}
|
||||
if ((s & Typeface.ITALIC) != 0) {
|
||||
out.append("<i>");
|
||||
}
|
||||
}
|
||||
if (style[j] instanceof TypefaceSpan) {
|
||||
String s = ((TypefaceSpan) style[j]).getFamily();
|
||||
|
||||
//if ("monospace".equals(s)) {
|
||||
// out.append("<tt>");
|
||||
//}
|
||||
|
||||
out.append("<span style=\"font-family:" + s + ";\">");
|
||||
}
|
||||
if (style[j] instanceof SuperscriptSpan) {
|
||||
out.append("<sup>");
|
||||
}
|
||||
if (style[j] instanceof SubscriptSpan) {
|
||||
out.append("<sub>");
|
||||
}
|
||||
if (style[j] instanceof UnderlineSpan) {
|
||||
out.append("<u>");
|
||||
}
|
||||
if (style[j] instanceof StrikethroughSpan) {
|
||||
out.append("<span style=\"text-decoration:line-through;\">");
|
||||
}
|
||||
if (style[j] instanceof URLSpan) {
|
||||
out.append("<a href=\"");
|
||||
out.append(((URLSpan) style[j]).getURL());
|
||||
out.append("\">");
|
||||
}
|
||||
if (style[j] instanceof ImageSpan) {
|
||||
out.append("<img src=\"");
|
||||
out.append(((ImageSpan) style[j]).getSource());
|
||||
out.append("\">");
|
||||
|
||||
// Don't output the dummy character underlying the image.
|
||||
i = next;
|
||||
}
|
||||
if (style[j] instanceof AbsoluteSizeSpan) {
|
||||
AbsoluteSizeSpan s = ((AbsoluteSizeSpan) style[j]);
|
||||
float sizeDip = s.getSize();
|
||||
if (!s.getDip()) {
|
||||
//Application application = ActivityThread.currentApplication();
|
||||
sizeDip /= context.getResources().getDisplayMetrics().density;
|
||||
}
|
||||
|
||||
// px in CSS is the equivalance of dip in Android
|
||||
out.append(String.format("<span style=\"font-size:%.0fpx\";>", sizeDip));
|
||||
}
|
||||
if (style[j] instanceof RelativeSizeSpan) {
|
||||
float sizeEm = ((RelativeSizeSpan) style[j]).getSizeChange();
|
||||
out.append(String.format("<span style=\"font-size:%.2fem;\">", sizeEm));
|
||||
}
|
||||
if (style[j] instanceof ForegroundColorSpan) {
|
||||
int color = ((ForegroundColorSpan) style[j]).getForegroundColor();
|
||||
out.append(String.format("<span style=\"color:#%06X;\">", 0xFFFFFF & color));
|
||||
}
|
||||
if (style[j] instanceof BackgroundColorSpan) {
|
||||
int color = ((BackgroundColorSpan) style[j]).getBackgroundColor();
|
||||
out.append(String.format("<span style=\"background-color:#%06X;\">",
|
||||
0xFFFFFF & color));
|
||||
}
|
||||
}
|
||||
|
||||
withinStyle(out, text, i, next);
|
||||
|
||||
for (int j = style.length - 1; j >= 0; j--) {
|
||||
if (style[j] instanceof BackgroundColorSpan) {
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof ForegroundColorSpan) {
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof RelativeSizeSpan) {
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof AbsoluteSizeSpan) {
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof URLSpan) {
|
||||
out.append("</a>");
|
||||
}
|
||||
if (style[j] instanceof StrikethroughSpan) {
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof UnderlineSpan) {
|
||||
out.append("</u>");
|
||||
}
|
||||
if (style[j] instanceof SubscriptSpan) {
|
||||
out.append("</sub>");
|
||||
}
|
||||
if (style[j] instanceof SuperscriptSpan) {
|
||||
out.append("</sup>");
|
||||
}
|
||||
if (style[j] instanceof TypefaceSpan) {
|
||||
//String s = ((TypefaceSpan) style[j]).getFamily();
|
||||
|
||||
//if (s.equals("monospace")) {
|
||||
// out.append("</tt>");
|
||||
//}
|
||||
|
||||
out.append("</span>");
|
||||
}
|
||||
if (style[j] instanceof StyleSpan) {
|
||||
int s = ((StyleSpan) style[j]).getStyle();
|
||||
|
||||
if ((s & Typeface.BOLD) != 0) {
|
||||
out.append("</b>");
|
||||
}
|
||||
if ((s & Typeface.ITALIC) != 0) {
|
||||
out.append("</i>");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//@UnsupportedAppUsage
|
||||
private /* static */ void withinStyle(StringBuilder out, CharSequence text,
|
||||
int start, int end) {
|
||||
for (int i = start; i < end; i++) {
|
||||
char c = text.charAt(i);
|
||||
|
||||
if (c == '<') {
|
||||
out.append("<");
|
||||
} else if (c == '>') {
|
||||
out.append(">");
|
||||
} else if (c == '&') {
|
||||
out.append("&");
|
||||
} else if (c >= 0xD800 && c <= 0xDFFF) {
|
||||
if (c < 0xDC00 && i + 1 < end) {
|
||||
char d = text.charAt(i + 1);
|
||||
if (d >= 0xDC00 && d <= 0xDFFF) {
|
||||
i++;
|
||||
int codepoint = 0x010000 | (int) c - 0xD800 << 10 | (int) d - 0xDC00;
|
||||
out.append("&#").append(codepoint).append(";");
|
||||
}
|
||||
}
|
||||
} else if (c > 0x7E || c < ' ') {
|
||||
out.append("&#").append((int) c).append(";");
|
||||
} else if (c == ' ') {
|
||||
while (i + 1 < end && text.charAt(i + 1) == ' ') {
|
||||
out.append(" ");
|
||||
i++;
|
||||
}
|
||||
|
||||
out.append(' ');
|
||||
} else {
|
||||
out.append(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue