Commit 049c0b94 authored by Ben Wheeler's avatar Ben Wheeler

use api instead of scratchr2 to validate usernames

parent 6e543b0c
...@@ -20,16 +20,14 @@ module.exports.validateUsernameLocally = username => { ...@@ -20,16 +20,14 @@ module.exports.validateUsernameLocally = username => {
module.exports.validateUsernameRemotely = username => ( module.exports.validateUsernameRemotely = username => (
new Promise(resolve => { new Promise(resolve => {
api({ api({
host: '', // not handled by API; use existing infrastructure uri: `/accounts/checkusername/${username}/`
uri: `/accounts/check_username/${username}/`
}, (err, body, res) => { }, (err, body, res) => {
if (err || res.statusCode !== 200) { if (err || res.statusCode !== 200) {
resolve({requestSucceeded: false, valid: false, errMsgId: 'general.error'}); resolve({requestSucceeded: false, valid: false, errMsgId: 'general.error'});
} }
let msg = ''; let msg = '';
if (body && body[0]) { if (body && body.msg) msg = body.msg;
msg = body[0].msg; else if (body && body[0]) msg = body[0].msg;
}
switch (msg) { switch (msg) {
case 'valid username': case 'valid username':
resolve({requestSucceeded: true, valid: true}); resolve({requestSucceeded: true, valid: true});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment