conversations-classic/src/main/java/eu/siacs/conversations/utils/UIHelper.java

569 lines
19 KiB
Java
Raw Normal View History

2014-10-22 16:38:44 +00:00
package eu.siacs.conversations.utils;
2015-07-20 12:26:29 +00:00
import android.content.Context;
import android.support.annotation.ColorInt;
import android.text.SpannableString;
import android.text.SpannableStringBuilder;
2015-07-20 12:26:29 +00:00
import android.text.format.DateFormat;
import android.text.format.DateUtils;
import android.util.Log;
2015-07-20 12:26:29 +00:00
import android.util.Pair;
import android.widget.PopupMenu;
2015-07-20 12:26:29 +00:00
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.util.ArrayList;
2015-05-10 10:04:11 +00:00
import java.util.Arrays;
2014-10-22 16:38:44 +00:00
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.Locale;
2014-10-22 16:38:44 +00:00
2016-08-25 15:30:44 +00:00
import eu.siacs.conversations.Config;
2014-10-22 16:38:44 +00:00
import eu.siacs.conversations.R;
2016-08-25 15:30:44 +00:00
import eu.siacs.conversations.crypto.axolotl.AxolotlService;
import eu.siacs.conversations.entities.Contact;
import eu.siacs.conversations.entities.Conversation;
import eu.siacs.conversations.entities.Conversational;
import eu.siacs.conversations.entities.ListItem;
import eu.siacs.conversations.entities.Message;
2017-03-08 09:32:42 +00:00
import eu.siacs.conversations.entities.MucOptions;
import eu.siacs.conversations.entities.Presence;
2015-07-20 12:26:29 +00:00
import eu.siacs.conversations.entities.Transferable;
2018-03-05 17:30:40 +00:00
import rocks.xmpp.addr.Jid;
2014-10-22 16:38:44 +00:00
public class UIHelper {
2017-12-05 13:15:10 +00:00
private static int[] UNSAFE_COLORS = {
0xFFF44336, //red 500
0xFFE53935, //red 600
0xFFD32F2F, //red 700
0xFFC62828, //red 800
2017-12-05 13:15:10 +00:00
0xFFEF6C00, //orange 800
0xFFF4511E, //deep orange 600
0xFFE64A19, //deep orange 700
0xFFD84315, //deep orange 800,
};
private static int[] SAFE_COLORS = {
0xFFE91E63, //pink 500
2017-12-05 13:15:10 +00:00
0xFFD81B60, //pink 600
0xFFC2185B, //pink 700
0xFFAD1457, //pink 800
2017-12-05 13:15:10 +00:00
0xFF9C27B0, //purple 500
2017-12-05 13:15:10 +00:00
0xFF8E24AA, //purple 600
0xFF7B1FA2, //purple 700
0xFF6A1B9A, //purple 800
2017-12-05 13:15:10 +00:00
0xFF673AB7, //deep purple 500,
2017-12-05 13:15:10 +00:00
0xFF5E35B1, //deep purple 600
0xFF512DA8, //deep purple 700
0xFF4527A0, //deep purple 800,
2017-12-05 13:15:10 +00:00
0xFF3F51B5, //indigo 500,
2017-12-05 13:15:10 +00:00
0xFF3949AB,//indigo 600
0xFF303F9F,//indigo 700
0xFF283593, //indigo 800
2017-12-05 13:15:10 +00:00
0xFF2196F3, //blue 500
2017-12-05 13:15:10 +00:00
0xFF1E88E5, //blue 600
0xFF1976D2, //blue 700
0xFF1565C0, //blue 800
2017-12-05 13:15:10 +00:00
0xFF03A9F4, //light blue 500
2017-12-05 13:15:10 +00:00
0xFF039BE5, //light blue 600
0xFF0288D1, //light blue 700
0xFF0277BD, //light blue 800
2017-12-05 13:15:10 +00:00
0xFF00BCD4, //cyan 500
2017-12-05 13:15:10 +00:00
0xFF00ACC1, //cyan 600
0xFF0097A7, //cyan 700
0xFF00838F, //cyan 800
2017-12-05 13:15:10 +00:00
0xFF009688, //teal 500,
2017-12-05 13:15:10 +00:00
0xFF00897B, //teal 600
0xFF00796B, //teal 700
0xFF00695C, //teal 800,
2017-12-05 13:15:10 +00:00
//0xFF558B2F, //light green 800
2017-12-05 13:15:10 +00:00
//0xFFC0CA33, //lime 600
0xFF9E9D24, //lime 800
2017-12-05 13:15:10 +00:00
0xFF795548, //brown 500,
//0xFF4E342E, //brown 800
0xFF607D8B, //blue grey 500,
2017-12-05 13:15:10 +00:00
//0xFF37474F //blue grey 800
};
2017-12-05 13:15:10 +00:00
private static final int[] COLORS;
static {
COLORS = Arrays.copyOf(SAFE_COLORS, SAFE_COLORS.length + UNSAFE_COLORS.length);
System.arraycopy(UNSAFE_COLORS, 0, COLORS, SAFE_COLORS.length, UNSAFE_COLORS.length);
}
private static final List<String> LOCATION_QUESTIONS = Arrays.asList(
"where are you", //en
2015-05-14 10:08:43 +00:00
"where are you now", //en
"where are you right now", //en
"whats your 20", //en
"what is your 20", //en
"what's your 20", //en
"whats your twenty", //en
"what is your twenty", //en
"what's your twenty", //en
"wo bist du", //de
2015-05-14 10:08:43 +00:00
"wo bist du jetzt", //de
"wo bist du gerade", //de
"wo seid ihr", //de
2015-05-14 10:08:43 +00:00
"wo seid ihr jetzt", //de
"wo seid ihr gerade", //de
"dónde estás", //es
"donde estas" //es
2017-12-05 13:15:10 +00:00
);
2017-12-05 13:15:10 +00:00
private static final List<Character> PUNCTIONATION = Arrays.asList('.', ',', '?', '!', ';', ':');
2014-10-22 16:38:44 +00:00
private static final int SHORT_DATE_FLAGS = DateUtils.FORMAT_SHOW_DATE
2017-12-05 13:15:10 +00:00
| DateUtils.FORMAT_NO_YEAR | DateUtils.FORMAT_ABBREV_ALL;
2014-10-22 16:38:44 +00:00
private static final int FULL_DATE_FLAGS = DateUtils.FORMAT_SHOW_TIME
2017-12-05 13:15:10 +00:00
| DateUtils.FORMAT_ABBREV_ALL | DateUtils.FORMAT_SHOW_DATE;
2014-10-22 16:38:44 +00:00
public static String readableTimeDifference(Context context, long time) {
return readableTimeDifference(context, time, false);
}
public static String readableTimeDifferenceFull(Context context, long time) {
return readableTimeDifference(context, time, true);
}
private static String readableTimeDifference(Context context, long time,
2017-12-05 13:15:10 +00:00
boolean fullDate) {
2014-10-22 16:38:44 +00:00
if (time == 0) {
return context.getString(R.string.just_now);
}
Date date = new Date(time);
long difference = (System.currentTimeMillis() - time) / 1000;
if (difference < 60) {
return context.getString(R.string.just_now);
} else if (difference < 60 * 2) {
return context.getString(R.string.minute_ago);
} else if (difference < 60 * 15) {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.minutes_ago, Math.round(difference / 60.0));
2014-10-22 16:38:44 +00:00
} else if (today(date)) {
java.text.DateFormat df = DateFormat.getTimeFormat(context);
return df.format(date);
} else {
if (fullDate) {
return DateUtils.formatDateTime(context, date.getTime(),
FULL_DATE_FLAGS);
} else {
return DateUtils.formatDateTime(context, date.getTime(),
SHORT_DATE_FLAGS);
}
}
}
private static boolean today(Date date) {
2017-12-05 13:15:10 +00:00
return sameDay(date, new Date(System.currentTimeMillis()));
2015-01-06 23:59:42 +00:00
}
2017-07-04 09:01:20 +00:00
public static boolean today(long date) {
2017-12-05 13:15:10 +00:00
return sameDay(date, System.currentTimeMillis());
2017-07-04 09:01:20 +00:00
}
public static boolean yesterday(long date) {
Calendar cal1 = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance();
2017-12-05 13:15:10 +00:00
cal1.add(Calendar.DAY_OF_YEAR, -1);
2017-07-04 09:01:20 +00:00
cal2.setTime(new Date(date));
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR)
&& cal1.get(Calendar.DAY_OF_YEAR) == cal2
.get(Calendar.DAY_OF_YEAR);
}
public static boolean sameDay(long a, long b) {
2017-12-05 13:15:10 +00:00
return sameDay(new Date(a), new Date(b));
2017-07-04 09:01:20 +00:00
}
2015-01-06 23:59:42 +00:00
private static boolean sameDay(Date a, Date b) {
2014-10-22 16:38:44 +00:00
Calendar cal1 = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance();
2015-01-06 23:59:42 +00:00
cal1.setTime(a);
cal2.setTime(b);
2014-10-22 16:38:44 +00:00
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR)
2017-12-05 13:15:10 +00:00
&& cal1.get(Calendar.DAY_OF_YEAR) == cal2
.get(Calendar.DAY_OF_YEAR);
2014-10-22 16:38:44 +00:00
}
public static String lastseen(Context context, boolean active, long time) {
2014-10-22 16:38:44 +00:00
long difference = (System.currentTimeMillis() - time) / 1000;
if (active) {
return context.getString(R.string.online_right_now);
} else if (difference < 60) {
2014-10-22 16:38:44 +00:00
return context.getString(R.string.last_seen_now);
} else if (difference < 60 * 2) {
return context.getString(R.string.last_seen_min);
} else if (difference < 60 * 60) {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.last_seen_mins, Math.round(difference / 60.0));
2014-10-22 16:38:44 +00:00
} else if (difference < 60 * 60 * 2) {
return context.getString(R.string.last_seen_hour);
} else if (difference < 60 * 60 * 24) {
return context.getString(R.string.last_seen_hours,
Math.round(difference / (60.0 * 60.0)));
} else if (difference < 60 * 60 * 48) {
return context.getString(R.string.last_seen_day);
} else {
return context.getString(R.string.last_seen_days,
Math.round(difference / (60.0 * 60.0 * 24.0)));
}
}
2014-11-16 16:21:21 +00:00
public static int getColorForName(String name) {
2017-12-05 13:15:10 +00:00
return getColorForName(name, false);
}
public static int getColorForName(String name, boolean safe) {
if (Config.XEP_0392) {
return XEP0392Helper.rgbFromNick(name);
}
2015-12-29 09:32:54 +00:00
if (name == null || name.isEmpty()) {
2014-12-02 22:59:02 +00:00
return 0xFF202020;
}
2017-12-05 13:15:10 +00:00
if (safe) {
return SAFE_COLORS[(int) (getLongForName(name) % SAFE_COLORS.length)];
} else {
return COLORS[(int) (getLongForName(name) % COLORS.length)];
}
}
2017-12-05 13:15:10 +00:00
private static long getLongForName(String name) {
try {
final MessageDigest messageDigest = MessageDigest.getInstance("MD5");
2017-12-05 13:15:10 +00:00
return Math.abs(new BigInteger(messageDigest.digest(name.getBytes())).longValue());
} catch (Exception e) {
return 0;
}
2014-11-16 16:21:21 +00:00
}
public static Pair<CharSequence, Boolean> getMessagePreview(final Context context, final Message message) {
return getMessagePreview(context, message, 0);
}
public static Pair<CharSequence, Boolean> getMessagePreview(final Context context, final Message message, @ColorInt int textColor) {
2015-07-10 13:11:03 +00:00
final Transferable d = message.getTransferable();
2017-12-05 13:15:10 +00:00
if (d != null) {
switch (d.getStatus()) {
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_CHECKING:
return new Pair<>(context.getString(R.string.checking_x,
2017-12-05 13:15:10 +00:00
getFileDescriptionString(context, message)), true);
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_DOWNLOADING:
return new Pair<>(context.getString(R.string.receiving_x_file,
2017-12-05 13:15:10 +00:00
getFileDescriptionString(context, message),
d.getProgress()), true);
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_OFFER:
case Transferable.STATUS_OFFER_CHECK_FILESIZE:
return new Pair<>(context.getString(R.string.x_file_offered_for_download,
2017-12-05 13:15:10 +00:00
getFileDescriptionString(context, message)), true);
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_DELETED:
2017-12-05 13:15:10 +00:00
return new Pair<>(context.getString(R.string.file_deleted), true);
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_FAILED:
2017-12-05 13:15:10 +00:00
return new Pair<>(context.getString(R.string.file_transmission_failed), true);
2015-07-10 13:11:03 +00:00
case Transferable.STATUS_UPLOADING:
if (message.getStatus() == Message.STATUS_OFFERED) {
return new Pair<>(context.getString(R.string.offering_x_file,
getFileDescriptionString(context, message)), true);
} else {
return new Pair<>(context.getString(R.string.sending_x_file,
getFileDescriptionString(context, message)), true);
}
default:
2017-12-05 13:15:10 +00:00
return new Pair<>("", false);
}
} else if (message.getEncryption() == Message.ENCRYPTION_PGP) {
2017-12-05 13:15:10 +00:00
return new Pair<>(context.getString(R.string.pgp_message), true);
2016-02-23 14:30:41 +00:00
} else if (message.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED) {
return new Pair<>(context.getString(R.string.decryption_failed), true);
} else if (message.getEncryption() == Message.ENCRYPTION_AXOLOTL_NOT_FOR_THIS_DEVICE) {
return new Pair<>(context.getString(R.string.not_encrypted_for_this_device), true);
2015-02-01 11:32:19 +00:00
} else if (message.getType() == Message.TYPE_FILE || message.getType() == Message.TYPE_IMAGE) {
return new Pair<>(getFileDescriptionString(context, message), true);
} else {
final String body = MessageUtils.filterLtrRtl(message.getBody());
if (body.startsWith(Message.ME_COMMAND)) {
return new Pair<>(body.replaceAll("^" + Message.ME_COMMAND,
2015-01-25 15:29:26 +00:00
UIHelper.getMessageDisplayName(message) + " "), false);
} else if (message.isGeoUri()) {
return new Pair<>(context.getString(R.string.location), true);
} else if (message.treatAsDownloadable()) {
return new Pair<>(context.getString(R.string.x_file_offered_for_download,
2017-12-05 13:15:10 +00:00
getFileDescriptionString(context, message)), true);
} else {
SpannableStringBuilder styledBody = new SpannableStringBuilder(body);
if (textColor != 0) {
StylingHelper.format(styledBody, 0, styledBody.length() - 1, textColor);
}
SpannableStringBuilder builder = new SpannableStringBuilder();
for (CharSequence l : CharSequenceUtils.split(styledBody, '\n')) {
if (l.length() > 0) {
char first = l.charAt(0);
2017-12-05 13:15:10 +00:00
if ((first != '>' || !isPositionFollowedByQuoteableCharacter(l, 0)) && first != '\u00bb') {
CharSequence line = CharSequenceUtils.trim(l);
if (line.length() == 0) {
continue;
}
2017-12-05 13:15:10 +00:00
char last = line.charAt(line.length() - 1);
if (builder.length() != 0) {
builder.append(' ');
}
builder.append(line);
if (!PUNCTIONATION.contains(last)) {
break;
}
}
}
}
if (builder.length() == 0) {
builder.append(body.trim());
}
return new Pair<>(builder, false);
}
}
}
public static boolean isLastLineQuote(String body) {
if (body.endsWith("\n")) {
return false;
}
String[] lines = body.split("\n");
if (lines.length == 0) {
return false;
}
String line = lines[lines.length - 1];
if (line.isEmpty()) {
return false;
}
char first = line.charAt(0);
return first == '>' && isPositionFollowedByQuoteableCharacter(line,0) || first == '\u00bb';
}
public static CharSequence shorten(CharSequence input) {
return input.length() > 256 ? StylingHelper.subSequence(input, 0, 256) : input;
}
2017-03-08 19:21:04 +00:00
public static boolean isPositionFollowedByQuoteableCharacter(CharSequence body, int pos) {
return !isPositionFollowedByNumber(body, pos)
2017-12-05 13:15:10 +00:00
&& !isPositionFollowedByEmoticon(body, pos)
&& !isPositionFollowedByEquals(body, pos);
2017-03-08 19:21:04 +00:00
}
private static boolean isPositionFollowedByNumber(CharSequence body, int pos) {
boolean previousWasNumber = false;
2017-12-05 13:15:10 +00:00
for (int i = pos + 1; i < body.length(); i++) {
char c = body.charAt(i);
if (Character.isDigit(body.charAt(i))) {
previousWasNumber = true;
} else if (previousWasNumber && (c == '.' || c == ',')) {
previousWasNumber = false;
} else {
2017-04-13 15:29:11 +00:00
return (Character.isWhitespace(c) || c == '%' || c == '+') && previousWasNumber;
}
}
return previousWasNumber;
}
private static boolean isPositionFollowedByEquals(CharSequence body, int pos) {
2017-12-05 13:15:10 +00:00
return body.length() > pos + 1 && body.charAt(pos + 1) == '=';
}
private static boolean isPositionFollowedByEmoticon(CharSequence body, int pos) {
2017-12-05 13:15:10 +00:00
if (body.length() <= pos + 1) {
return false;
} else {
2017-12-05 13:15:10 +00:00
final char first = body.charAt(pos + 1);
return first == ';'
2017-12-05 13:15:10 +00:00
|| first == ':'
|| closingBeforeWhitespace(body, pos + 1);
}
}
2017-12-04 15:50:15 +00:00
private static boolean closingBeforeWhitespace(CharSequence body, int pos) {
2017-12-05 13:15:10 +00:00
for (int i = pos; i < body.length(); ++i) {
final char c = body.charAt(i);
if (Character.isWhitespace(c)) {
return false;
2017-12-04 15:50:15 +00:00
} else if (c == '<' || c == '>') {
return body.length() == i + 1 || Character.isWhitespace(body.charAt(i + 1));
}
}
return false;
}
public static boolean isPositionFollowedByQuote(CharSequence body, int pos) {
2017-12-05 13:15:10 +00:00
if (body.length() <= pos + 1 || Character.isWhitespace(body.charAt(pos + 1))) {
return false;
}
boolean previousWasWhitespace = false;
2017-12-05 13:15:10 +00:00
for (int i = pos + 1; i < body.length(); i++) {
char c = body.charAt(i);
if (c == '\n' || c == '»') {
return false;
} else if (c == '«' && !previousWasWhitespace) {
return true;
} else {
previousWasWhitespace = Character.isWhitespace(c);
}
}
return false;
2017-03-08 09:32:42 +00:00
}
public static String getDisplayName(MucOptions.User user) {
Contact contact = user.getContact();
if (contact != null) {
return contact.getDisplayName();
} else {
final String name = user.getName();
if (name != null) {
return name;
}
final Jid realJid = user.getRealJid();
if (realJid != null) {
return JidHelper.localPartOrFallback(realJid);
}
return null;
}
}
public static String concatNames(List<MucOptions.User> users) {
2017-12-05 13:15:10 +00:00
return concatNames(users, users.size());
2017-11-22 16:57:28 +00:00
}
public static String concatNames(List<MucOptions.User> users, int max) {
StringBuilder builder = new StringBuilder();
final boolean shortNames = users.size() >= 3;
for (int i = 0; i < Math.min(users.size(), max); ++i) {
if (builder.length() != 0) {
builder.append(", ");
}
final String name = UIHelper.getDisplayName(users.get(i));
if (name != null) {
builder.append(shortNames ? name.split("\\s+")[0] : name);
}
2017-03-08 09:32:42 +00:00
}
return builder.toString();
2017-03-08 19:21:04 +00:00
}
public static String getFileDescriptionString(final Context context, final Message message) {
if (message.getType() == Message.TYPE_IMAGE) {
return context.getString(R.string.image);
}
2015-07-01 14:01:18 +00:00
final String mime = message.getMimeType();
if (mime == null) {
return context.getString(R.string.file);
} else if (mime.startsWith("audio/")) {
return context.getString(R.string.audio);
2017-12-05 13:15:10 +00:00
} else if (mime.startsWith("video/")) {
return context.getString(R.string.video);
} else if (mime.equals("image/gif")) {
return context.getString(R.string.gif);
} else if (mime.startsWith("image/")) {
return context.getString(R.string.image);
} else if (mime.contains("pdf")) {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.pdf_document);
} else if (mime.equals("application/vnd.android.package-archive")) {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.apk);
} else if (mime.contains("vcard")) {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.vcard);
} else {
return mime;
}
}
public static String getMessageDisplayName(final Message message) {
final Conversational conversation = message.getConversation();
if (message.getStatus() == Message.STATUS_RECEIVED) {
final Contact contact = message.getContact();
if (conversation.getMode() == Conversation.MODE_MULTI) {
if (contact != null) {
return contact.getDisplayName();
} else {
return getDisplayedMucCounterpart(message.getCounterpart());
}
} else {
return contact != null ? contact.getDisplayName() : "";
}
} else {
if (conversation instanceof Conversation && conversation.getMode() == Conversation.MODE_MULTI) {
return ((Conversation) conversation).getMucOptions().getSelf().getName();
} else {
final Jid jid = conversation.getAccount().getJid();
2018-03-05 17:30:40 +00:00
return jid.getLocal() != null ? jid.getLocal() : Jid.ofDomain(jid.getDomain()).toString();
}
}
}
2016-08-25 15:30:44 +00:00
public static String getMessageHint(Context context, Conversation conversation) {
switch (conversation.getNextEncryption()) {
case Message.ENCRYPTION_NONE:
if (Config.multipleEncryptionChoices()) {
return context.getString(R.string.send_unencrypted_message);
} else {
2017-12-05 13:15:10 +00:00
return context.getString(R.string.send_message_to_x, conversation.getName());
2016-08-25 15:30:44 +00:00
}
case Message.ENCRYPTION_AXOLOTL:
AxolotlService axolotlService = conversation.getAccount().getAxolotlService();
if (axolotlService != null && axolotlService.trustedSessionVerified(conversation)) {
return context.getString(R.string.send_omemo_x509_message);
} else {
return context.getString(R.string.send_omemo_message);
}
case Message.ENCRYPTION_PGP:
return context.getString(R.string.send_pgp_message);
default:
return "";
}
}
public static String getDisplayedMucCounterpart(final Jid counterpart) {
2017-12-05 13:15:10 +00:00
if (counterpart == null) {
return "";
} else if (!counterpart.isBareJid()) {
2018-03-05 17:30:40 +00:00
return counterpart.getResource().trim();
} else {
return counterpart.toString().trim();
}
}
public static boolean receivedLocationQuestion(Message message) {
if (message == null
|| message.getStatus() != Message.STATUS_RECEIVED
|| message.getType() != Message.TYPE_TEXT) {
return false;
}
String body = message.getBody() == null ? null : message.getBody().trim().toLowerCase(Locale.getDefault());
2017-12-05 13:15:10 +00:00
body = body.replace("?", "").replace("¿", "");
return LOCATION_QUESTIONS.contains(body);
}
public static ListItem.Tag getTagForStatus(Context context, Presence.Status status) {
switch (status) {
case CHAT:
return new ListItem.Tag(context.getString(R.string.presence_chat), 0xff259b24);
case AWAY:
return new ListItem.Tag(context.getString(R.string.presence_away), 0xffff9800);
case XA:
return new ListItem.Tag(context.getString(R.string.presence_xa), 0xfff44336);
case DND:
return new ListItem.Tag(context.getString(R.string.presence_dnd), 0xfff44336);
default:
return new ListItem.Tag(context.getString(R.string.presence_online), 0xff259b24);
}
}
2014-10-22 16:38:44 +00:00
}