Validate user name during registration
This commit is contained in:
parent
b9c26a7206
commit
a4b1ad6d22
@ -20,6 +20,7 @@ import envoy.server.data.PersistenceManager;
|
|||||||
import envoy.server.data.User;
|
import envoy.server.data.User;
|
||||||
import envoy.server.net.ConnectionManager;
|
import envoy.server.net.ConnectionManager;
|
||||||
import envoy.server.net.ObjectWriteProxy;
|
import envoy.server.net.ObjectWriteProxy;
|
||||||
|
import envoy.util.Bounds;
|
||||||
import envoy.util.EnvoyLog;
|
import envoy.util.EnvoyLog;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -76,6 +77,12 @@ public final class LoginCredentialProcessor implements ObjectProcessor<LoginCred
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
// Validate user name
|
||||||
|
if (!Bounds.isValidContactName(credentials.getIdentifier())) {
|
||||||
|
logger.info("The requested user name is not valid.");
|
||||||
|
writeProxy.write(socketID, new HandshakeRejection(INTERNAL_ERROR));
|
||||||
|
return;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
// Checking that no user already has this identifier
|
// Checking that no user already has this identifier
|
||||||
PersistenceManager.getInstance().getUserByName(credentials.getIdentifier());
|
PersistenceManager.getInstance().getUserByName(credentials.getIdentifier());
|
||||||
|
Reference in New Issue
Block a user