yumechi-no-kuni/src/services/note/watch.ts

27 lines
523 B
TypeScript
Raw Normal View History

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