try to detect invalid nick (w/ emoji) in MUCs
This commit is contained in:
parent
43242a293e
commit
946d97074f
|
@ -141,6 +141,7 @@ public class MucOptions {
|
||||||
MEMBERS_ONLY,
|
MEMBERS_ONLY,
|
||||||
KICKED,
|
KICKED,
|
||||||
SHUTDOWN,
|
SHUTDOWN,
|
||||||
|
INVALID_NICK,
|
||||||
UNKNOWN
|
UNKNOWN
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -72,10 +72,7 @@ public class PresenceParser extends AbstractParser implements
|
||||||
|| ((codes.isEmpty() || codes.contains(MucOptions.STATUS_CODE_ROOM_CREATED)) && jid.equals(item.getAttributeAsJid("jid")))) {
|
|| ((codes.isEmpty() || codes.contains(MucOptions.STATUS_CODE_ROOM_CREATED)) && jid.equals(item.getAttributeAsJid("jid")))) {
|
||||||
mucOptions.setOnline();
|
mucOptions.setOnline();
|
||||||
mucOptions.setSelf(user);
|
mucOptions.setSelf(user);
|
||||||
if (mucOptions.onRenameListener != null) {
|
invokeRenameListener(mucOptions, true);
|
||||||
mucOptions.onRenameListener.onSuccess();
|
|
||||||
mucOptions.onRenameListener = null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
boolean isNew = mucOptions.updateUser(user);
|
boolean isNew = mucOptions.updateUser(user);
|
||||||
final AxolotlService axolotlService = conversation.getAccount().getAxolotlService();
|
final AxolotlService axolotlService = conversation.getAccount().getAxolotlService();
|
||||||
|
@ -143,27 +140,50 @@ public class PresenceParser extends AbstractParser implements
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (type.equals("error")) {
|
} else if (type.equals("error")) {
|
||||||
Element error = packet.findChild("error");
|
final Element error = packet.findChild("error");
|
||||||
if (error != null && error.hasChild("conflict")) {
|
if (error == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (error.hasChild("conflict")) {
|
||||||
if (mucOptions.online()) {
|
if (mucOptions.online()) {
|
||||||
if (mucOptions.onRenameListener != null) {
|
invokeRenameListener(mucOptions, false);
|
||||||
mucOptions.onRenameListener.onFailure();
|
|
||||||
mucOptions.onRenameListener = null;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
mucOptions.setError(MucOptions.Error.NICK_IN_USE);
|
mucOptions.setError(MucOptions.Error.NICK_IN_USE);
|
||||||
}
|
}
|
||||||
} else if (error != null && error.hasChild("not-authorized")) {
|
} else if (error.hasChild("not-authorized")) {
|
||||||
mucOptions.setError(MucOptions.Error.PASSWORD_REQUIRED);
|
mucOptions.setError(MucOptions.Error.PASSWORD_REQUIRED);
|
||||||
} else if (error != null && error.hasChild("forbidden")) {
|
} else if (error.hasChild("forbidden")) {
|
||||||
mucOptions.setError(MucOptions.Error.BANNED);
|
mucOptions.setError(MucOptions.Error.BANNED);
|
||||||
} else if (error != null && error.hasChild("registration-required")) {
|
} else if (error.hasChild("registration-required")) {
|
||||||
mucOptions.setError(MucOptions.Error.MEMBERS_ONLY);
|
mucOptions.setError(MucOptions.Error.MEMBERS_ONLY);
|
||||||
|
} else {
|
||||||
|
final String text = error.findChildContent("text");
|
||||||
|
if (text != null && text.contains("attribute 'to'")) {
|
||||||
|
if (mucOptions.online()) {
|
||||||
|
invokeRenameListener(mucOptions, false);
|
||||||
|
} else {
|
||||||
|
mucOptions.setError(MucOptions.Error.INVALID_NICK);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
mucOptions.setError(MucOptions.Error.UNKNOWN);
|
||||||
|
Log.d(Config.LOGTAG, "unknown error in conference: " + packet);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void invokeRenameListener(final MucOptions options, boolean success) {
|
||||||
|
if (options.onRenameListener != null) {
|
||||||
|
if (success) {
|
||||||
|
options.onRenameListener.onSuccess();
|
||||||
|
} else {
|
||||||
|
options.onRenameListener.onFailure();
|
||||||
|
}
|
||||||
|
options.onRenameListener = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static List<String> getStatusCodes(Element x) {
|
private static List<String> getStatusCodes(Element x) {
|
||||||
List<String> codes = new ArrayList<>();
|
List<String> codes = new ArrayList<>();
|
||||||
if (x != null) {
|
if (x != null) {
|
||||||
|
@ -292,5 +312,4 @@ public class PresenceParser extends AbstractParser implements
|
||||||
this.parseContactPresence(packet, account);
|
this.parseContactPresence(packet, account);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1109,6 +1109,8 @@ public class ConversationFragment extends Fragment implements EditMessage.Keyboa
|
||||||
case UNKNOWN:
|
case UNKNOWN:
|
||||||
showSnackbar(R.string.conference_unknown_error, R.string.try_again, joinMuc);
|
showSnackbar(R.string.conference_unknown_error, R.string.try_again, joinMuc);
|
||||||
break;
|
break;
|
||||||
|
case INVALID_NICK:
|
||||||
|
showSnackbar(R.string.invalid_muc_nick, R.string.edit, clickToMuc);
|
||||||
case SHUTDOWN:
|
case SHUTDOWN:
|
||||||
showSnackbar(R.string.conference_shutdown, R.string.try_again, joinMuc);
|
showSnackbar(R.string.conference_shutdown, R.string.try_again, joinMuc);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
<string name="message_decrypting">Decrypting message. Please wait…</string>
|
<string name="message_decrypting">Decrypting message. Please wait…</string>
|
||||||
<string name="pgp_message">OpenPGP encrypted message</string>
|
<string name="pgp_message">OpenPGP encrypted message</string>
|
||||||
<string name="nick_in_use">Nickname is already in use</string>
|
<string name="nick_in_use">Nickname is already in use</string>
|
||||||
|
<string name="invalid_muc_nick">Invalid nickname</string>
|
||||||
<string name="admin">Admin</string>
|
<string name="admin">Admin</string>
|
||||||
<string name="owner">Owner</string>
|
<string name="owner">Owner</string>
|
||||||
<string name="moderator">Moderator</string>
|
<string name="moderator">Moderator</string>
|
||||||
|
|
Loading…
Reference in New Issue