mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -05:00
use api instead of scratchr2 to validate usernames
This commit is contained in:
parent
6e543b0c55
commit
049c0b946a
1 changed files with 3 additions and 5 deletions
|
@ -20,16 +20,14 @@ module.exports.validateUsernameLocally = username => {
|
|||
module.exports.validateUsernameRemotely = username => (
|
||||
new Promise(resolve => {
|
||||
api({
|
||||
host: '', // not handled by API; use existing infrastructure
|
||||
uri: `/accounts/check_username/${username}/`
|
||||
uri: `/accounts/checkusername/${username}/`
|
||||
}, (err, body, res) => {
|
||||
if (err || res.statusCode !== 200) {
|
||||
resolve({requestSucceeded: false, valid: false, errMsgId: 'general.error'});
|
||||
}
|
||||
let msg = '';
|
||||
if (body && body[0]) {
|
||||
msg = body[0].msg;
|
||||
}
|
||||
if (body && body.msg) msg = body.msg;
|
||||
else if (body && body[0]) msg = body[0].msg;
|
||||
switch (msg) {
|
||||
case 'valid username':
|
||||
resolve({requestSucceeded: true, valid: true});
|
||||
|
|
Loading…
Reference in a new issue