Merge pull request #490 from calzoneman/fix-489

Fix #489
This commit is contained in:
Calvin Montgomery 2015-06-19 17:09:54 -04:00
commit 4433260041
1 changed files with 10 additions and 1 deletions

View File

@ -7,6 +7,15 @@ var Logger = require("../logger");
var registrationLock = {};
var blackHole = function () { };
/**
* Replaces look-alike characters with "_" (single character wildcard) for
* use in LIKE queries. This prevents guests from taking names that look
* visually identical to existing names in certain fonts.
*/
function wildcardSimilarChars(name) {
return name.replace(/[Il1oO0]/g, "_");
}
module.exports = {
init: function () {
},
@ -15,7 +24,7 @@ module.exports = {
* Check if a username is taken
*/
isUsernameTaken: function (name, callback) {
db.query("SELECT name FROM `users` WHERE name=?", [name],
db.query("SELECT name FROM `users` WHERE name LIKE ?", [wildcardSimilarChars(name)],
function (err, rows) {
if (err) {
callback(err, true);