Refined avatar generation a bit

This commit is contained in:
Daniel Gultsch 2017-12-05 14:15:10 +01:00
parent 614372dcbb
commit b5fe8789e9
5 changed files with 165 additions and 102 deletions

View File

@ -82,7 +82,7 @@ public class Bookmark extends Element implements ListItem {
for (Element element : getChildren()) { for (Element element : getChildren()) {
if (element.getName().equals("group") && element.getContent() != null) { if (element.getName().equals("group") && element.getContent() != null) {
String group = element.getContent(); String group = element.getContent();
tags.add(new Tag(group, UIHelper.getColorForName(group))); tags.add(new Tag(group, UIHelper.getColorForName(group,true)));
} }
} }
return tags; return tags;

View File

@ -30,6 +30,7 @@ import eu.siacs.conversations.entities.MucOptions;
import eu.siacs.conversations.utils.UIHelper; import eu.siacs.conversations.utils.UIHelper;
import eu.siacs.conversations.xmpp.OnAdvancedStreamFeaturesLoaded; import eu.siacs.conversations.xmpp.OnAdvancedStreamFeaturesLoaded;
import eu.siacs.conversations.xmpp.XmppConnection; import eu.siacs.conversations.xmpp.XmppConnection;
import eu.siacs.conversations.xmpp.jid.Jid;
public class AvatarService implements OnAdvancedStreamFeaturesLoaded { public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
@ -67,7 +68,7 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
avatar = mXmppConnectionService.getFileBackend().getAvatar(contact.getAvatar(), size); avatar = mXmppConnectionService.getFileBackend().getAvatar(contact.getAvatar(), size);
} }
if (avatar == null) { if (avatar == null) {
avatar = get(contact.getDisplayName(), size, cachedOnly); avatar = get(contact.getDisplayName(), contact.getJid().toBareJid().toString(), size, cachedOnly);
} }
this.mXmppConnectionService.getBitmapCache().put(KEY, avatar); this.mXmppConnectionService.getBitmapCache().put(KEY, avatar);
return avatar; return avatar;
@ -114,7 +115,8 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
if (contact != null) { if (contact != null) {
avatar = get(contact, size, cachedOnly); avatar = get(contact, size, cachedOnly);
} else { } else {
avatar = get(user.getName(), size, cachedOnly); String seed = user.getRealJid() != null ? user.getRealJid().toBareJid().toString() : null;
avatar = get(user.getName(), seed, size, cachedOnly);
} }
} }
this.mXmppConnectionService.getBitmapCache().put(KEY, avatar); this.mXmppConnectionService.getBitmapCache().put(KEY, avatar);
@ -165,10 +167,12 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
if (bookmark.getConversation() != null) { if (bookmark.getConversation() != null) {
return get(bookmark.getConversation(), size, cachedOnly); return get(bookmark.getConversation(), size, cachedOnly);
} else { } else {
return get(bookmark.getDisplayName(), size, cachedOnly); String seed = bookmark.getJid() != null ? bookmark.getJid().toBareJid().toString() : null;
return get(bookmark.getDisplayName(), seed, size, cachedOnly);
} }
} else { } else {
return get(item.getDisplayName(), size, cachedOnly); String seed = item.getJid() != null ? item.getJid().toBareJid().toString() : null;
return get(item.getDisplayName(), seed, size, cachedOnly);
} }
} }
@ -211,7 +215,8 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
} }
final List<MucOptions.User> users = mucOptions.getUsers(5); final List<MucOptions.User> users = mucOptions.getUsers(5);
if (users.size() == 0) { if (users.size() == 0) {
bitmap = getImpl(mucOptions.getConversation().getName(),size); Conversation c = mucOptions.getConversation();
bitmap = getImpl(c.getName(),c.getJid().toBareJid().toString(),size);
} else { } else {
bitmap = getImpl(users,size); bitmap = getImpl(users,size);
} }
@ -319,7 +324,7 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
} }
avatar = mXmppConnectionService.getFileBackend().getAvatar(account.getAvatar(), size); avatar = mXmppConnectionService.getFileBackend().getAvatar(account.getAvatar(), size);
if (avatar == null) { if (avatar == null) {
avatar = get(account.getJid().toBareJid().toString(), size,false); avatar = get(account.getJid().toBareJid().toString(), null, size,false);
} }
mXmppConnectionService.getBitmapCache().put(KEY, avatar); mXmppConnectionService.getBitmapCache().put(KEY, avatar);
return avatar; return avatar;
@ -338,8 +343,12 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
if (user != null) { if (user != null) {
return getImpl(user,size,cachedOnly); return getImpl(user,size,cachedOnly);
} }
} else if (c != null) {
return get(c, size, cachedOnly);
} }
return get(UIHelper.getMessageDisplayName(message), size, cachedOnly); Jid tcp = message.getTrueCounterpart();
String seed = tcp != null ? tcp.toBareJid().toString() :null;
return get(UIHelper.getMessageDisplayName(message), seed, size, cachedOnly);
} else { } else {
return get(conversation.getAccount(), size, cachedOnly); return get(conversation.getAccount(), size, cachedOnly);
} }
@ -371,26 +380,26 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
+ String.valueOf(size); + String.valueOf(size);
} }
public Bitmap get(String name, int size) { /*public Bitmap get(String name, int size) {
return get(name,size,false); return get(name,null, size,false);
} }*/
public Bitmap get(final String name, final int size, boolean cachedOnly) { public Bitmap get(final String name, String seed, final int size, boolean cachedOnly) {
final String KEY = key(name, size); final String KEY = key(seed == null ? name : seed, size);
Bitmap bitmap = mXmppConnectionService.getBitmapCache().get(KEY); Bitmap bitmap = mXmppConnectionService.getBitmapCache().get(KEY);
if (bitmap != null || cachedOnly) { if (bitmap != null || cachedOnly) {
return bitmap; return bitmap;
} }
bitmap = getImpl(name, size); bitmap = getImpl(name, seed, size);
mXmppConnectionService.getBitmapCache().put(KEY, bitmap); mXmppConnectionService.getBitmapCache().put(KEY, bitmap);
return bitmap; return bitmap;
} }
private Bitmap getImpl(final String name, final int size) { private Bitmap getImpl(final String name, final String seed, final int size) {
Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap); Canvas canvas = new Canvas(bitmap);
final String trimmedName = name == null ? "" : name.trim(); final String trimmedName = name == null ? "" : name.trim();
drawTile(canvas, trimmedName, 0, 0, size, size); drawTile(canvas, trimmedName, seed, 0, 0, size, size);
return bitmap; return bitmap;
} }
@ -403,8 +412,7 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
return PREFIX_GENERIC + "_" + name + "_" + String.valueOf(size); return PREFIX_GENERIC + "_" + name + "_" + String.valueOf(size);
} }
private boolean drawTile(Canvas canvas, String letter, int tileColor, private boolean drawTile(Canvas canvas, String letter, int tileColor, int left, int top, int right, int bottom) {
int left, int top, int right, int bottom) {
letter = letter.toUpperCase(Locale.getDefault()); letter = letter.toUpperCase(Locale.getDefault());
Paint tilePaint = new Paint(), textPaint = new Paint(); Paint tilePaint = new Paint(), textPaint = new Paint();
tilePaint.setColor(tileColor); tilePaint.setColor(tileColor);
@ -443,8 +451,13 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
return true; return true;
} }
} }
String name = contact != null ? contact.getDisplayName() : user.getName(); if (contact != null) {
drawTile(canvas, name, left, top, right, bottom); String seed = contact.getJid().toBareJid().toString();
drawTile(canvas, contact.getDisplayName(), seed, left, top, right, bottom);
} else {
String seed = user.getRealJid() == null ? null : user.getRealJid().toBareJid().toString();
drawTile(canvas, user.getName(), seed, left, top, right, bottom);
}
return true; return true;
} }
@ -458,13 +471,14 @@ public class AvatarService implements OnAdvancedStreamFeaturesLoaded {
} }
} }
} }
return drawTile(canvas, account.getJid().toBareJid().toString(), left, top, right, bottom); String name = account.getJid().toBareJid().toString();
return drawTile(canvas, name, name, left, top, right, bottom);
} }
private boolean drawTile(Canvas canvas, String name, int left, int top, int right, int bottom) { private boolean drawTile(Canvas canvas, String name, String seed, int left, int top, int right, int bottom) {
if (name != null) { if (name != null) {
final String letter = getFirstLetter(name); final String letter = getFirstLetter(name);
final int color = UIHelper.getColorForName(name); final int color = UIHelper.getColorForName(seed == null ? name : seed);
drawTile(canvas, letter, color, left, top, right, bottom); drawTile(canvas, letter, color, left, top, right, bottom);
return true; return true;
} }

View File

@ -112,7 +112,7 @@ public class AccountAdapter extends ArrayAdapter<Account> {
imageView.setImageBitmap(bm); imageView.setImageBitmap(bm);
imageView.setBackgroundColor(0x00000000); imageView.setBackgroundColor(0x00000000);
} else { } else {
imageView.setBackgroundColor(UIHelper.getColorForName(account.getDisplayName())); imageView.setBackgroundColor(UIHelper.getColorForName(account.getJid().toBareJid().toString()));
imageView.setImageDrawable(null); imageView.setImageDrawable(null);
final BitmapWorkerTask task = new BitmapWorkerTask(imageView); final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
final AsyncDrawable asyncDrawable = new AsyncDrawable(activity.getResources(), null, task); final AsyncDrawable asyncDrawable = new AsyncDrawable(activity.getResources(), null, task);

View File

@ -127,7 +127,8 @@ public class ListItemAdapter extends ArrayAdapter<ListItem> {
imageView.setImageBitmap(bm); imageView.setImageBitmap(bm);
imageView.setBackgroundColor(0x00000000); imageView.setBackgroundColor(0x00000000);
} else { } else {
imageView.setBackgroundColor(UIHelper.getColorForName(item.getDisplayName())); String seed = item.getJid() != null ? item.getJid().toBareJid().toString() : item.getDisplayName();
imageView.setBackgroundColor(UIHelper.getColorForName(seed));
imageView.setImageDrawable(null); imageView.setImageDrawable(null);
final BitmapWorkerTask task = new BitmapWorkerTask(imageView); final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
final AsyncDrawable asyncDrawable = new AsyncDrawable(activity.getResources(), null, task); final AsyncDrawable asyncDrawable = new AsyncDrawable(activity.getResources(), null, task);

View File

@ -30,35 +30,78 @@ import eu.siacs.conversations.xmpp.jid.Jid;
public class UIHelper { public class UIHelper {
private static int[] UNSAFE_COLORS = {
0xFFF44336, //red 500
0xFFE53935, //red 600
0xFFD32F2F, //red 700
0xFFC62828, //red 800
private static int COLORS[] = {
0xFFE91E63, //pink 500
0xFFAD1457, //pink 800
0xFF9C27B0, //purple 500
0xFF6A1B9A, //purple 800
0xFF673AB7, //deep purple 500,
0xFF4527A0, //deep purple 800,
0xFF3F51B5, //indigo 500,
0xFF283593, //indigo 800
0xFF2196F3, //blue 500
0xFF1565C0, //blue 800
0xFF03A9F4, //light blue 500
0xFF0277BD, //light blue 800
0xFF00BCD4, //cyan 500
0xFF00838F, //cyan 800
0xFF009688, //teal 500,
0xFF00695C, //teal 800,
//0xFF558B2F, //light green 800
0xFFC0CA33, //lime 600
0xFF9E9D24, //lime 800
0xFFEF6C00, //orange 800 0xFFEF6C00, //orange 800
0xFFF4511E, //deep orange 600
0xFFE64A19, //deep orange 700
0xFFD84315, //deep orange 800, 0xFFD84315, //deep orange 800,
};
private static int[] SAFE_COLORS = {
0xFFE91E63, //pink 500
0xFFD81B60, //pink 600
0xFFC2185B, //pink 700
0xFFAD1457, //pink 800
0xFF9C27B0, //purple 500
0xFF8E24AA, //purple 600
0xFF7B1FA2, //purple 700
0xFF6A1B9A, //purple 800
0xFF673AB7, //deep purple 500,
0xFF5E35B1, //deep purple 600
0xFF512DA8, //deep purple 700
0xFF4527A0, //deep purple 800,
0xFF3F51B5, //indigo 500,
0xFF3949AB,//indigo 600
0xFF303F9F,//indigo 700
0xFF283593, //indigo 800
0xFF2196F3, //blue 500
0xFF1E88E5, //blue 600
0xFF1976D2, //blue 700
0xFF1565C0, //blue 800
0xFF03A9F4, //light blue 500
0xFF039BE5, //light blue 600
0xFF0288D1, //light blue 700
0xFF0277BD, //light blue 800
0xFF00BCD4, //cyan 500
0xFF00ACC1, //cyan 600
0xFF0097A7, //cyan 700
0xFF00838F, //cyan 800
0xFF009688, //teal 500,
0xFF00897B, //teal 600
0xFF00796B, //teal 700
0xFF00695C, //teal 800,
//0xFF558B2F, //light green 800
//0xFFC0CA33, //lime 600
0xFF9E9D24, //lime 800
0xFF795548, //brown 500, 0xFF795548, //brown 500,
//0xFF4E342E, //brown 800 //0xFF4E342E, //brown 800
0xFF607D8B, //blue grey 500, 0xFF607D8B, //blue grey 500,
0xFF37474F //blue grey 800 //0xFF37474F //blue grey 800
}; };
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( private static final List<String> LOCATION_QUESTIONS = Arrays.asList(
"where are you", //en "where are you", //en
"where are you now", //en "where are you now", //en
@ -77,14 +120,14 @@ public class UIHelper {
"wo seid ihr gerade", //de "wo seid ihr gerade", //de
"dónde estás", //es "dónde estás", //es
"donde estas" //es "donde estas" //es
); );
private static final List<Character> PUNCTIONATION = Arrays.asList('.',',','?','!',';',':'); private static final List<Character> PUNCTIONATION = Arrays.asList('.', ',', '?', '!', ';', ':');
private static final int SHORT_DATE_FLAGS = DateUtils.FORMAT_SHOW_DATE private static final int SHORT_DATE_FLAGS = DateUtils.FORMAT_SHOW_DATE
| DateUtils.FORMAT_NO_YEAR | DateUtils.FORMAT_ABBREV_ALL; | DateUtils.FORMAT_NO_YEAR | DateUtils.FORMAT_ABBREV_ALL;
private static final int FULL_DATE_FLAGS = DateUtils.FORMAT_SHOW_TIME private static final int FULL_DATE_FLAGS = DateUtils.FORMAT_SHOW_TIME
| DateUtils.FORMAT_ABBREV_ALL | DateUtils.FORMAT_SHOW_DATE; | DateUtils.FORMAT_ABBREV_ALL | DateUtils.FORMAT_SHOW_DATE;
public static String readableTimeDifference(Context context, long time) { public static String readableTimeDifference(Context context, long time) {
return readableTimeDifference(context, time, false); return readableTimeDifference(context, time, false);
@ -95,7 +138,7 @@ public class UIHelper {
} }
private static String readableTimeDifference(Context context, long time, private static String readableTimeDifference(Context context, long time,
boolean fullDate) { boolean fullDate) {
if (time == 0) { if (time == 0) {
return context.getString(R.string.just_now); return context.getString(R.string.just_now);
} }
@ -106,7 +149,7 @@ public class UIHelper {
} else if (difference < 60 * 2) { } else if (difference < 60 * 2) {
return context.getString(R.string.minute_ago); return context.getString(R.string.minute_ago);
} else if (difference < 60 * 15) { } else if (difference < 60 * 15) {
return context.getString(R.string.minutes_ago,Math.round(difference / 60.0)); return context.getString(R.string.minutes_ago, Math.round(difference / 60.0));
} else if (today(date)) { } else if (today(date)) {
java.text.DateFormat df = DateFormat.getTimeFormat(context); java.text.DateFormat df = DateFormat.getTimeFormat(context);
return df.format(date); return df.format(date);
@ -122,17 +165,17 @@ public class UIHelper {
} }
private static boolean today(Date date) { private static boolean today(Date date) {
return sameDay(date,new Date(System.currentTimeMillis())); return sameDay(date, new Date(System.currentTimeMillis()));
} }
public static boolean today(long date) { public static boolean today(long date) {
return sameDay(date,System.currentTimeMillis()); return sameDay(date, System.currentTimeMillis());
} }
public static boolean yesterday(long date) { public static boolean yesterday(long date) {
Calendar cal1 = Calendar.getInstance(); Calendar cal1 = Calendar.getInstance();
Calendar cal2 = Calendar.getInstance(); Calendar cal2 = Calendar.getInstance();
cal1.add(Calendar.DAY_OF_YEAR,-1); cal1.add(Calendar.DAY_OF_YEAR, -1);
cal2.setTime(new Date(date)); cal2.setTime(new Date(date));
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR)
&& cal1.get(Calendar.DAY_OF_YEAR) == cal2 && cal1.get(Calendar.DAY_OF_YEAR) == cal2
@ -140,7 +183,7 @@ public class UIHelper {
} }
public static boolean sameDay(long a, long b) { public static boolean sameDay(long a, long b) {
return sameDay(new Date(a),new Date(b)); return sameDay(new Date(a), new Date(b));
} }
private static boolean sameDay(Date a, Date b) { private static boolean sameDay(Date a, Date b) {
@ -149,8 +192,8 @@ public class UIHelper {
cal1.setTime(a); cal1.setTime(a);
cal2.setTime(b); cal2.setTime(b);
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR)
&& cal1.get(Calendar.DAY_OF_YEAR) == cal2 && cal1.get(Calendar.DAY_OF_YEAR) == cal2
.get(Calendar.DAY_OF_YEAR); .get(Calendar.DAY_OF_YEAR);
} }
public static String lastseen(Context context, boolean active, long time) { public static String lastseen(Context context, boolean active, long time) {
@ -162,8 +205,7 @@ public class UIHelper {
} else if (difference < 60 * 2) { } else if (difference < 60 * 2) {
return context.getString(R.string.last_seen_min); return context.getString(R.string.last_seen_min);
} else if (difference < 60 * 60) { } else if (difference < 60 * 60) {
return context.getString(R.string.last_seen_mins, return context.getString(R.string.last_seen_mins, Math.round(difference / 60.0));
Math.round(difference / 60.0));
} else if (difference < 60 * 60 * 2) { } else if (difference < 60 * 60 * 2) {
return context.getString(R.string.last_seen_hour); return context.getString(R.string.last_seen_hour);
} else if (difference < 60 * 60 * 24) { } else if (difference < 60 * 60 * 24) {
@ -178,42 +220,48 @@ public class UIHelper {
} }
public static int getColorForName(String name) { public static int getColorForName(String name) {
return getColorForName(name, false);
}
public static int getColorForName(String name, boolean safe) {
if (name == null || name.isEmpty()) { if (name == null || name.isEmpty()) {
return 0xFF202020; return 0xFF202020;
} }
return COLORS[getIntForName(name) % COLORS.length]; if (safe) {
return SAFE_COLORS[(int) (getLongForName(name) % SAFE_COLORS.length)];
} else {
return COLORS[(int) (getLongForName(name) % COLORS.length)];
}
} }
private static int getIntForName(String name) { private static long getLongForName(String name) {
try { try {
final MessageDigest messageDigest = MessageDigest.getInstance("MD5"); final MessageDigest messageDigest = MessageDigest.getInstance("MD5");
messageDigest.update(name.getBytes()); return Math.abs(new BigInteger(messageDigest.digest(name.getBytes())).longValue());
byte[] bytes = messageDigest.digest();
return Math.abs(new BigInteger(bytes).intValue());
} catch (Exception e) { } catch (Exception e) {
return 0; return 0;
} }
} }
public static Pair<String,Boolean> getMessagePreview(final Context context, final Message message) { public static Pair<String, Boolean> getMessagePreview(final Context context, final Message message) {
final Transferable d = message.getTransferable(); final Transferable d = message.getTransferable();
if (d != null ) { if (d != null) {
switch (d.getStatus()) { switch (d.getStatus()) {
case Transferable.STATUS_CHECKING: case Transferable.STATUS_CHECKING:
return new Pair<>(context.getString(R.string.checking_x, return new Pair<>(context.getString(R.string.checking_x,
getFileDescriptionString(context,message)),true); getFileDescriptionString(context, message)), true);
case Transferable.STATUS_DOWNLOADING: case Transferable.STATUS_DOWNLOADING:
return new Pair<>(context.getString(R.string.receiving_x_file, return new Pair<>(context.getString(R.string.receiving_x_file,
getFileDescriptionString(context,message), getFileDescriptionString(context, message),
d.getProgress()),true); d.getProgress()), true);
case Transferable.STATUS_OFFER: case Transferable.STATUS_OFFER:
case Transferable.STATUS_OFFER_CHECK_FILESIZE: case Transferable.STATUS_OFFER_CHECK_FILESIZE:
return new Pair<>(context.getString(R.string.x_file_offered_for_download, return new Pair<>(context.getString(R.string.x_file_offered_for_download,
getFileDescriptionString(context,message)),true); getFileDescriptionString(context, message)), true);
case Transferable.STATUS_DELETED: case Transferable.STATUS_DELETED:
return new Pair<>(context.getString(R.string.file_deleted),true); return new Pair<>(context.getString(R.string.file_deleted), true);
case Transferable.STATUS_FAILED: case Transferable.STATUS_FAILED:
return new Pair<>(context.getString(R.string.file_transmission_failed),true); return new Pair<>(context.getString(R.string.file_transmission_failed), true);
case Transferable.STATUS_UPLOADING: case Transferable.STATUS_UPLOADING:
if (message.getStatus() == Message.STATUS_OFFERED) { if (message.getStatus() == Message.STATUS_OFFERED) {
return new Pair<>(context.getString(R.string.offering_x_file, return new Pair<>(context.getString(R.string.offering_x_file,
@ -223,18 +271,18 @@ public class UIHelper {
getFileDescriptionString(context, message)), true); getFileDescriptionString(context, message)), true);
} }
default: default:
return new Pair<>("",false); return new Pair<>("", false);
} }
} else if (message.getEncryption() == Message.ENCRYPTION_PGP) { } else if (message.getEncryption() == Message.ENCRYPTION_PGP) {
return new Pair<>(context.getString(R.string.pgp_message),true); return new Pair<>(context.getString(R.string.pgp_message), true);
} else if (message.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED) { } else if (message.getEncryption() == Message.ENCRYPTION_DECRYPTION_FAILED) {
return new Pair<>(context.getString(R.string.decryption_failed), true); return new Pair<>(context.getString(R.string.decryption_failed), true);
} else if (message.getType() == Message.TYPE_FILE || message.getType() == Message.TYPE_IMAGE) { } else if (message.getType() == Message.TYPE_FILE || message.getType() == Message.TYPE_IMAGE) {
if (message.getStatus() == Message.STATUS_RECEIVED) { if (message.getStatus() == Message.STATUS_RECEIVED) {
return new Pair<>(context.getString(R.string.received_x_file, return new Pair<>(context.getString(R.string.received_x_file,
getFileDescriptionString(context, message)), true); getFileDescriptionString(context, message)), true);
} else { } else {
return new Pair<>(getFileDescriptionString(context,message),true); return new Pair<>(getFileDescriptionString(context, message), true);
} }
} else { } else {
final String body = message.getBody(); final String body = message.getBody();
@ -249,19 +297,19 @@ public class UIHelper {
} }
} else if (message.treatAsDownloadable()) { } else if (message.treatAsDownloadable()) {
return new Pair<>(context.getString(R.string.x_file_offered_for_download, return new Pair<>(context.getString(R.string.x_file_offered_for_download,
getFileDescriptionString(context,message)),true); getFileDescriptionString(context, message)), true);
} else { } else {
String[] lines = body.split("\n"); String[] lines = body.split("\n");
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
for(String l : lines) { for (String l : lines) {
if (l.length() > 0) { if (l.length() > 0) {
char first = l.charAt(0); char first = l.charAt(0);
if ((first != '>' || !isPositionFollowedByQuoteableCharacter(l,0)) && first != '\u00bb') { if ((first != '>' || !isPositionFollowedByQuoteableCharacter(l, 0)) && first != '\u00bb') {
String line = l.trim(); String line = l.trim();
if (line.isEmpty()) { if (line.isEmpty()) {
continue; continue;
} }
char last = line.charAt(line.length()-1); char last = line.charAt(line.length() - 1);
if (builder.length() != 0) { if (builder.length() != 0) {
builder.append(' '); builder.append(' ');
} }
@ -275,20 +323,20 @@ public class UIHelper {
if (builder.length() == 0) { if (builder.length() == 0) {
builder.append(body.trim()); builder.append(body.trim());
} }
return new Pair<>(builder.length() > 256 ? builder.substring(0,256) : builder.toString(), false); return new Pair<>(builder.length() > 256 ? builder.substring(0, 256) : builder.toString(), false);
} }
} }
} }
public static boolean isPositionFollowedByQuoteableCharacter(CharSequence body, int pos) { public static boolean isPositionFollowedByQuoteableCharacter(CharSequence body, int pos) {
return !isPositionFollowedByNumber(body, pos) return !isPositionFollowedByNumber(body, pos)
&& !isPositionFollowedByEmoticon(body,pos) && !isPositionFollowedByEmoticon(body, pos)
&& !isPositionFollowedByEquals(body,pos); && !isPositionFollowedByEquals(body, pos);
} }
private static boolean isPositionFollowedByNumber(CharSequence body, int pos) { private static boolean isPositionFollowedByNumber(CharSequence body, int pos) {
boolean previousWasNumber = false; boolean previousWasNumber = false;
for (int i = pos +1; i < body.length(); i++) { for (int i = pos + 1; i < body.length(); i++) {
char c = body.charAt(i); char c = body.charAt(i);
if (Character.isDigit(body.charAt(i))) { if (Character.isDigit(body.charAt(i))) {
previousWasNumber = true; previousWasNumber = true;
@ -302,22 +350,22 @@ public class UIHelper {
} }
private static boolean isPositionFollowedByEquals(CharSequence body, int pos) { private static boolean isPositionFollowedByEquals(CharSequence body, int pos) {
return body.length() > pos + 1 && body.charAt(pos+1) == '='; return body.length() > pos + 1 && body.charAt(pos + 1) == '=';
} }
private static boolean isPositionFollowedByEmoticon(CharSequence body, int pos) { private static boolean isPositionFollowedByEmoticon(CharSequence body, int pos) {
if (body.length() <= pos +1) { if (body.length() <= pos + 1) {
return false; return false;
} else { } else {
final char first = body.charAt(pos +1); final char first = body.charAt(pos + 1);
return first == ';' return first == ';'
|| first == ':' || first == ':'
|| closingBeforeWhitespace(body,pos+1); || closingBeforeWhitespace(body, pos + 1);
} }
} }
private static boolean closingBeforeWhitespace(CharSequence body, int pos) { private static boolean closingBeforeWhitespace(CharSequence body, int pos) {
for(int i = pos; i < body.length(); ++i) { for (int i = pos; i < body.length(); ++i) {
final char c = body.charAt(i); final char c = body.charAt(i);
if (Character.isWhitespace(c)) { if (Character.isWhitespace(c)) {
return false; return false;
@ -329,11 +377,11 @@ public class UIHelper {
} }
public static boolean isPositionFollowedByQuote(CharSequence body, int pos) { public static boolean isPositionFollowedByQuote(CharSequence body, int pos) {
if (body.length() <= pos + 1 || Character.isWhitespace(body.charAt(pos+1))) { if (body.length() <= pos + 1 || Character.isWhitespace(body.charAt(pos + 1))) {
return false; return false;
} }
boolean previousWasWhitespace = false; boolean previousWasWhitespace = false;
for (int i = pos +1; i < body.length(); i++) { for (int i = pos + 1; i < body.length(); i++) {
char c = body.charAt(i); char c = body.charAt(i);
if (c == '\n' || c == '»') { if (c == '\n' || c == '»') {
return false; return false;
@ -364,13 +412,13 @@ public class UIHelper {
} }
public static String concatNames(List<MucOptions.User> users) { public static String concatNames(List<MucOptions.User> users) {
return concatNames(users,users.size()); return concatNames(users, users.size());
} }
public static String concatNames(List<MucOptions.User> users, int max) { public static String concatNames(List<MucOptions.User> users, int max) {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
final boolean shortNames = users.size() >= 3; final boolean shortNames = users.size() >= 3;
for(int i = 0; i < Math.max(users.size(),max); ++i) { for (int i = 0; i < Math.max(users.size(), max); ++i) {
if (builder.length() != 0) { if (builder.length() != 0) {
builder.append(", "); builder.append(", ");
} }
@ -389,16 +437,16 @@ public class UIHelper {
return context.getString(R.string.file); return context.getString(R.string.file);
} else if (mime.startsWith("audio/")) { } else if (mime.startsWith("audio/")) {
return context.getString(R.string.audio); return context.getString(R.string.audio);
} else if(mime.startsWith("video/")) { } else if (mime.startsWith("video/")) {
return context.getString(R.string.video); return context.getString(R.string.video);
} else if (mime.startsWith("image/")) { } else if (mime.startsWith("image/")) {
return context.getString(R.string.image); return context.getString(R.string.image);
} else if (mime.contains("pdf")) { } else if (mime.contains("pdf")) {
return context.getString(R.string.pdf_document) ; return context.getString(R.string.pdf_document);
} else if (mime.contains("application/vnd.android.package-archive")) { } else if (mime.contains("application/vnd.android.package-archive")) {
return context.getString(R.string.apk) ; return context.getString(R.string.apk);
} else if (mime.contains("vcard")) { } else if (mime.contains("vcard")) {
return context.getString(R.string.vcard) ; return context.getString(R.string.vcard);
} else { } else {
return mime; return mime;
} }
@ -433,7 +481,7 @@ public class UIHelper {
if (Config.multipleEncryptionChoices()) { if (Config.multipleEncryptionChoices()) {
return context.getString(R.string.send_unencrypted_message); return context.getString(R.string.send_unencrypted_message);
} else { } else {
return context.getString(R.string.send_message_to_x,conversation.getName()); return context.getString(R.string.send_message_to_x, conversation.getName());
} }
case Message.ENCRYPTION_OTR: case Message.ENCRYPTION_OTR:
return context.getString(R.string.send_otr_message); return context.getString(R.string.send_otr_message);
@ -452,7 +500,7 @@ public class UIHelper {
} }
public static String getDisplayedMucCounterpart(final Jid counterpart) { public static String getDisplayedMucCounterpart(final Jid counterpart) {
if (counterpart==null) { if (counterpart == null) {
return ""; return "";
} else if (!counterpart.isBareJid()) { } else if (!counterpart.isBareJid()) {
return counterpart.getResourcepart().trim(); return counterpart.getResourcepart().trim();
@ -468,7 +516,7 @@ public class UIHelper {
return false; return false;
} }
String body = message.getBody() == null ? null : message.getBody().trim().toLowerCase(Locale.getDefault()); String body = message.getBody() == null ? null : message.getBody().trim().toLowerCase(Locale.getDefault());
body = body.replace("?","").replace("¿",""); body = body.replace("?", "").replace("¿", "");
return LOCATION_QUESTIONS.contains(body); return LOCATION_QUESTIONS.contains(body);
} }