support for jid escapting when displaying localpart only
This commit is contained in:
parent
58de10bcab
commit
5d4aa04e5d
|
@ -121,7 +121,7 @@ public class Contact implements ListItem, Blockable {
|
|||
} else if (this.presenceName != null && mutualPresenceSubscription()) {
|
||||
return this.presenceName;
|
||||
} else if (jid.hasLocalpart()) {
|
||||
return jid.getLocalpart();
|
||||
return jid.getUnescapedLocalpart();
|
||||
} else {
|
||||
return jid.getDomainpart();
|
||||
}
|
||||
|
|
|
@ -464,7 +464,7 @@ public class Conversation extends AbstractEntity implements Blockable, Comparabl
|
|||
if (generatedName != null) {
|
||||
return generatedName;
|
||||
} else {
|
||||
return getJid().getLocalpart();
|
||||
return getJid().getUnescapedLocalpart();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -380,7 +380,7 @@ public class ConferenceDetailsActivity extends XmppActivity implements OnConvers
|
|||
MenuItem invite = menu.findItem(R.id.invite);
|
||||
startConversation.setVisible(true);
|
||||
if (contact != null) {
|
||||
showContactDetails.setVisible(true);
|
||||
showContactDetails.setVisible(!contact.isSelf());
|
||||
}
|
||||
if (user.getRole() == MucOptions.Role.NONE) {
|
||||
invite.setVisible(true);
|
||||
|
|
|
@ -21,6 +21,8 @@ public final class Jid {
|
|||
private final String domainpart;
|
||||
private final String resourcepart;
|
||||
|
||||
private static final char[] JID_ESCAPING_CHARS = {' ','"','&','\'','/',':','<','>','@','\\'};
|
||||
|
||||
// It's much more efficient to store the ful JID as well as the parts instead of figuring them
|
||||
// all out every time (since some characters are displayed but aren't used for comparisons).
|
||||
private final String displayjid;
|
||||
|
@ -29,6 +31,18 @@ public final class Jid {
|
|||
return localpart;
|
||||
}
|
||||
|
||||
public String getUnescapedLocalpart() {
|
||||
if (localpart == null || !localpart.contains("\\")) {
|
||||
return localpart;
|
||||
} else {
|
||||
String localpart = this.localpart;
|
||||
for(char c : JID_ESCAPING_CHARS) {
|
||||
localpart = localpart.replace(String.format ("\\%02x", (int)c),String.valueOf(c));
|
||||
}
|
||||
return localpart;
|
||||
}
|
||||
}
|
||||
|
||||
public String getDomainpart() {
|
||||
return IDN.toUnicode(domainpart);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue