sharkey/src/server/api/endpoints/username/available.ts

34 lines
635 B
TypeScript
Raw Normal View History

2017-03-09 03:50:09 +09:00
import $ from 'cafy';
2018-03-29 20:32:18 +09:00
import User from '../../../../models/user';
import { validateUsername } from '../../../../models/user';
2018-11-02 12:49:08 +09:00
import getParams from '../../get-params';
export const meta = {
requireCredential: false,
params: {
username: {
validator: $.str.pipe(validateUsername)
}
}
};
2016-12-29 07:49:51 +09:00
2018-07-06 02:58:29 +09:00
export default async (params: any) => new Promise(async (res, rej) => {
2018-11-02 12:49:08 +09:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2016-12-29 07:49:51 +09:00
// Get exist
const exist = await User
.count({
2018-03-27 16:51:12 +09:00
host: null,
2018-11-02 12:49:08 +09:00
usernameLower: ps.username.toLowerCase()
2016-12-29 07:49:51 +09:00
}, {
limit: 1
});
// Reply
res({
available: exist === 0
});
});