2017-09-07 14:13:01 -05:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
|
2017-01-16 18:12:33 -06:00
|
|
|
import db from '../../db/mongodb';
|
2017-09-07 14:13:01 -05:00
|
|
|
import { IPost } from './post';
|
2017-01-16 18:12:33 -06:00
|
|
|
|
2017-01-16 19:39:21 -06:00
|
|
|
const collection = db.get('users');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-08-27 02:53:15 -05:00
|
|
|
(collection as any).createIndex('username'); // fuck type definition
|
|
|
|
(collection as any).createIndex('token'); // fuck type definition
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-01-18 01:30:42 -06:00
|
|
|
export default collection as any; // fuck type definition
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
export function validateUsername(username: string): boolean {
|
2017-02-22 04:39:34 -06: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 16:49:51 -06:00
|
|
|
}
|
2017-01-06 00:35:07 -06:00
|
|
|
|
2017-03-01 05:35:54 -06:00
|
|
|
export function isValidName(name: string): boolean {
|
2017-03-01 05:38:27 -06:00
|
|
|
return typeof name == 'string' && name.length < 30 && name.trim() != '';
|
2017-03-01 05:35:54 -06:00
|
|
|
}
|
|
|
|
|
2017-03-02 18:24:17 -06: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 00:35:07 -06:00
|
|
|
export function isValidBirthday(birthday: string): boolean {
|
2017-02-22 04:39:34 -06:00
|
|
|
return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
|
|
|
|
}
|
2017-02-28 08:56:20 -06:00
|
|
|
|
2017-09-07 14:13:01 -05:00
|
|
|
export type IUser = {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
created_at: Date;
|
|
|
|
email: string;
|
|
|
|
followers_count: number;
|
|
|
|
following_count: number;
|
|
|
|
links: string[];
|
2017-02-28 08:56:20 -06:00
|
|
|
name: string;
|
2017-09-07 14:13:01 -05: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;
|
|
|
|
};
|
|
|
|
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[];
|
|
|
|
};
|