yumechi-no-kuni/src/api/endpoints/username/available.ts

32 lines
650 B
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Module dependencies
*/
2017-03-08 12:50:09 -06:00
import $ from 'cafy';
2016-12-28 16:49:51 -06:00
import User from '../../models/user';
import { validateUsername } from '../../models/user';
/**
* Check available username
*
2017-03-01 02:37:01 -06:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 16:49:51 -06:00
*/
2017-03-03 13:28:38 -06:00
module.exports = async (params) => new Promise(async (res, rej) => {
2016-12-28 16:49:51 -06:00
// Get 'username' parameter
2017-03-08 12:50:09 -06:00
const [username, usernameError] = $(params.username).string().pipe(validateUsername).$;
2017-03-02 17:00:10 -06:00
if (usernameError) return rej('invalid username param');
2016-12-28 16:49:51 -06:00
// Get exist
const exist = await User
.count({
username_lower: username.toLowerCase()
}, {
limit: 1
});
// Reply
res({
available: exist === 0
});
});