Sharkey/src/services/note/watch.ts

26 lines
490 B
TypeScript
Raw Normal View History

2017-06-06 18:44:26 +03:00
import * as mongodb from 'mongodb';
2018-04-07 20:30:37 +03:00
import Watching from '../../models/note-watching';
2017-06-06 18:44:26 +03:00
2018-04-07 20:30:37 +03:00
export default async (me: mongodb.ObjectID, note: object) => {
2017-06-06 19:20:07 +03:00
// 自分の投稿はwatchできない
2018-04-07 20:30:37 +03:00
if (me.equals((note 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-04-07 20:30:37 +03:00
noteId: (note as any)._id,
2018-07-27 01:29:24 +03:00
userId: me
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(),
2018-04-07 20:30:37 +03:00
noteId: (note as any)._id,
2018-03-29 08:48:47 +03:00
userId: me
2017-06-06 18:44:26 +03:00
});
};