2017-01-16 18:12:33 -06:00
|
|
|
import db from '../../db/mongodb';
|
|
|
|
|
2017-01-16 19:39:21 -06:00
|
|
|
const collection = db.get('users');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-16 19:39:21 -06:00
|
|
|
(collection as any).index('username'); // fuck type definition
|
|
|
|
(collection as any).index('token'); // fuck type definition
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
export default collection;
|
|
|
|
|
|
|
|
export function validateUsername(username: string): boolean {
|
|
|
|
return /^[a-zA-Z0-9\-]{3,20}$/.test(username);
|
|
|
|
}
|
2017-01-06 00:35:07 -06:00
|
|
|
|
|
|
|
export function isValidBirthday(birthday: string): boolean {
|
|
|
|
return /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
|
|
|
|
}
|