rudeshark.net/src/api/models/user.ts

84 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-09-07 21:13:01 +02:00
import * as mongo from 'mongodb';
2017-01-17 01:12:33 +01:00
import db from '../../db/mongodb';
2017-09-07 21:13:01 +02:00
import { IPost } from './post';
2017-01-17 01:12:33 +01:00
2017-01-17 02:39:21 +01:00
const collection = db.get('users');
2016-12-28 23:49:51 +01:00
(collection as any).createIndex('username'); // fuck type definition
(collection as any).createIndex('token'); // fuck type definition
2016-12-28 23:49:51 +01:00
2017-01-18 08:30:42 +01:00
export default collection as any; // fuck type definition
2016-12-28 23:49:51 +01:00
export function validateUsername(username: string): boolean {
2017-02-22 11:39:34 +01:00
return typeof username == 'string' && /^[a-zA-Z0-9\-]{3,20}$/.test(username);
}
export function validatePassword(password: string): boolean {
return typeof password == 'string' && password != '';
2016-12-28 23:49:51 +01:00
}
2017-01-06 07:35:07 +01:00
2017-03-01 12:35:54 +01:00
export function isValidName(name: string): boolean {
return typeof name == 'string' && name.length < 30 && name.trim() != '';
2017-03-01 12:35:54 +01:00
}
2017-03-03 01:24:17 +01:00
export function isValidDescription(description: string): boolean {
return typeof description == 'string' && description.length < 500 && description.trim() != '';
}
export function isValidLocation(location: string): boolean {
return typeof location == 'string' && location.length < 50 && location.trim() != '';
}
2017-01-06 07:35:07 +01:00
export function isValidBirthday(birthday: string): boolean {
2017-02-22 11:39:34 +01:00
return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
}
2017-02-28 15:56:20 +01:00
2017-09-07 21:13:01 +02:00
export type IUser = {
_id: mongo.ObjectID;
created_at: Date;
email: string;
followers_count: number;
following_count: number;
links: string[];
2017-02-28 15:56:20 +01:00
name: string;
2017-09-07 21:13:01 +02:00
password: string;
posts_count: number;
drive_capacity: number;
username: string;
username_lower: string;
token: string;
avatar_id: mongo.ObjectID;
banner_id: mongo.ObjectID;
data: any;
twitter: {
access_token: string;
access_token_secret: string;
user_id: string;
screen_name: string;
};
2017-10-06 20:36:46 +02:00
line: {
user_id: string;
};
2017-09-07 21:13:01 +02:00
description: string;
profile: {
location: string;
birthday: string; // 'YYYY-MM-DD'
tags: string[];
};
last_used_at: Date;
latest_post: IPost;
pinned_post_id: mongo.ObjectID;
is_pro: boolean;
is_suspended: boolean;
keywords: string[];
};
2017-10-07 00:23:00 +02:00
export function init(user): IUser {
user._id = new mongo.ObjectID(user._id);
user.avatar_id = new mongo.ObjectID(user.avatar_id);
user.banner_id = new mongo.ObjectID(user.banner_id);
user.pinned_post_id = new mongo.ObjectID(user.pinned_post_id);
2017-10-07 00:34:35 +02:00
return user;
2017-10-07 00:23:00 +02:00
}