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できない
|
2018-03-29 07:48:47 +02:00
|
|
|
if (me.equals((post as any).userId)) {
|
2017-06-06 18:20:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-06 17:44:26 +02:00
|
|
|
// if watching now
|
|
|
|
const exist = await Watching.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
postId: (post as any)._id,
|
|
|
|
userId: me,
|
|
|
|
deletedAt: { $exists: false }
|
2017-06-06 17:44:26 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await Watching.insert({
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
|
|
|
postId: (post as any)._id,
|
|
|
|
userId: me
|
2017-06-06 17:44:26 +02:00
|
|
|
});
|
|
|
|
};
|