rudeshark.net/src/api/common/watch-post.ts

27 lines
527 B
TypeScript
Raw Normal View History

2017-06-06 17:44:26 +02:00
import * as mongodb from 'mongodb';
import Watching from '../models/post-watching';
2017-06-06 18:20:07 +02:00
export default async (me: mongodb.ObjectID, post: object) => {
// 自分の投稿はwatchできない
if (me.equals((post as any).user_id)) {
return;
}
2017-06-06 17:44:26 +02:00
// if watching now
const exist = await Watching.findOne({
2017-06-06 18:20:07 +02:00
post_id: (post as any)._id,
2017-06-06 17:44:26 +02:00
user_id: me,
deleted_at: { $exists: false }
});
if (exist !== null) {
return;
}
await Watching.insert({
created_at: new Date(),
2017-06-06 18:20:07 +02:00
post_id: (post as any)._id,
2017-06-06 17:44:26 +02:00
user_id: me
});
};