0
0
switched/src/services/note/watch.ts

26 lines
490 B
TypeScript
Raw Normal View History

2017-06-07 00:44:26 +09:00
import * as mongodb from 'mongodb';
2018-04-08 02:30:37 +09:00
import Watching from '../../models/note-watching';
2017-06-07 00:44:26 +09:00
2018-04-08 02:30:37 +09:00
export default async (me: mongodb.ObjectID, note: object) => {
2017-06-07 01:20:07 +09:00
// 自分の投稿はwatchできない
2018-04-08 02:30:37 +09:00
if (me.equals((note as any).userId)) {
2017-06-07 01:20:07 +09:00
return;
}
2017-06-07 00:44:26 +09:00
// if watching now
const exist = await Watching.findOne({
2018-04-08 02:30:37 +09:00
noteId: (note as any)._id,
2018-07-27 07:29:24 +09:00
userId: me
2017-06-07 00:44:26 +09:00
});
if (exist !== null) {
return;
}
await Watching.insert({
2018-03-29 14:48:47 +09:00
createdAt: new Date(),
2018-04-08 02:30:37 +09:00
noteId: (note as any)._id,
2018-03-29 14:48:47 +09:00
userId: me
2017-06-07 00:44:26 +09:00
});
};