This commit is contained in:
syuilo 2018-04-02 11:14:45 +09:00
parent 6b6adeaa68
commit 21ebd9a367

View file

@ -34,6 +34,7 @@ type IUserBase = {
pinnedPostId: mongo.ObjectID; pinnedPostId: mongo.ObjectID;
isSuspended: boolean; isSuspended: boolean;
keywords: string[]; keywords: string[];
host: string;
hostLower: string; hostLower: string;
}; };
@ -71,7 +72,6 @@ export interface ILocalUser extends IUserBase {
} }
export interface IRemoteUser extends IUserBase { export interface IRemoteUser extends IUserBase {
host: string;
account: { account: {
inbox: string; inbox: string;
uri: string; uri: string;
@ -90,6 +90,7 @@ export const isLocalUser = (user: any): user is ILocalUser =>
export const isRemoteUser = (user: any): user is IRemoteUser => export const isRemoteUser = (user: any): user is IRemoteUser =>
!isLocalUser(user); !isLocalUser(user);
//#region Validators
export function validateUsername(username: string): boolean { export function validateUsername(username: string): boolean {
return typeof username == 'string' && /^[a-zA-Z0-9\-]{3,20}$/.test(username); return typeof username == 'string' && /^[a-zA-Z0-9\-]{3,20}$/.test(username);
} }
@ -113,6 +114,7 @@ export function isValidLocation(location: string): boolean {
export function isValidBirthday(birthday: string): boolean { export function isValidBirthday(birthday: string): boolean {
return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday); return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
} }
//#endregion
export function init(user): IUser { export function init(user): IUser {
user._id = new mongo.ObjectID(user._id); user._id = new mongo.ObjectID(user._id);