Sharkey/src/server/api/common/watch-post.ts

27 lines
526 B
TypeScript
Raw Normal View History

2017-06-06 18:44:26 +03:00
import * as mongodb from 'mongodb';
2018-03-29 14:32:18 +03:00
import Watching from '../../../models/post-watching';
2017-06-06 18:44:26 +03:00
2017-06-06 19:20:07 +03:00
export default async (me: mongodb.ObjectID, post: object) => {
// 自分の投稿はwatchできない
2018-03-29 08:48:47 +03:00
if (me.equals((post as any).userId)) {
2017-06-06 19:20:07 +03:00
return;
}
2017-06-06 18:44:26 +03:00
// if watching now
const exist = await Watching.findOne({
2018-03-29 08:48:47 +03:00
postId: (post as any)._id,
userId: me,
deletedAt: { $exists: false }
2017-06-06 18:44:26 +03:00
});
if (exist !== null) {
return;
}
await Watching.insert({
2018-03-29 08:48:47 +03:00
createdAt: new Date(),
postId: (post as any)._id,
userId: me
2017-06-06 18:44:26 +03:00
});
};