mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 06:57:36 -07:00
2ebbb70356
Closes #1411
26 lines
523 B
TypeScript
26 lines
523 B
TypeScript
import * as mongodb from 'mongodb';
|
|
import Watching from '../../models/note-watching';
|
|
|
|
export default async (me: mongodb.ObjectID, note: object) => {
|
|
// 自分の投稿はwatchできない
|
|
if (me.equals((note as any).userId)) {
|
|
return;
|
|
}
|
|
|
|
// if watching now
|
|
const exist = await Watching.findOne({
|
|
noteId: (note as any)._id,
|
|
userId: me,
|
|
deletedAt: { $exists: false }
|
|
});
|
|
|
|
if (exist !== null) {
|
|
return;
|
|
}
|
|
|
|
await Watching.insert({
|
|
createdAt: new Date(),
|
|
noteId: (note as any)._id,
|
|
userId: me
|
|
});
|
|
};
|