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

23 lines
506 B
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-01-18 08:30:42 +01:00
export default db.get('posts') as any; // fuck type definition
2017-03-01 19:16:39 +01:00
export function isValidText(text: string): boolean {
return text.length <= 1000 && text.trim() != '';
}
2017-09-07 21:13:01 +02:00
export type IPost = {
_id: mongo.ObjectID;
2017-10-31 14:09:09 +01:00
channel_id: mongo.ObjectID;
2017-09-07 21:13:01 +02:00
created_at: Date;
media_ids: mongo.ObjectID[];
2017-11-01 02:22:40 +01:00
reply_id: mongo.ObjectID;
2017-09-07 21:13:01 +02:00
repost_id: mongo.ObjectID;
poll: {}; // todo
text: string;
user_id: mongo.ObjectID;
app_id: mongo.ObjectID;
};