2018-04-07 19:30:37 +02:00
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import db from '../db/mongodb';
|
|
|
|
|
|
|
|
const NoteWatching = db.get<INoteWatching>('noteWatching');
|
|
|
|
NoteWatching.createIndex(['userId', 'noteId'], { unique: true });
|
|
|
|
export default NoteWatching;
|
|
|
|
|
|
|
|
export interface INoteWatching {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
createdAt: Date;
|
|
|
|
userId: mongo.ObjectID;
|
|
|
|
noteId: mongo.ObjectID;
|
|
|
|
}
|
2018-04-11 20:46:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* NoteWatchingを物理削除します
|
|
|
|
*/
|
|
|
|
export async function deleteNoteWatching(noteWatching: string | mongo.ObjectID | INoteWatching) {
|
|
|
|
let n: INoteWatching;
|
|
|
|
|
|
|
|
// Populate
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(noteWatching)) {
|
|
|
|
n = await NoteWatching.findOne({
|
|
|
|
_id: noteWatching
|
|
|
|
});
|
|
|
|
} else if (typeof noteWatching === 'string') {
|
|
|
|
n = await NoteWatching.findOne({
|
|
|
|
_id: new mongo.ObjectID(noteWatching)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
n = noteWatching as INoteWatching;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == null) return;
|
|
|
|
|
|
|
|
// このNoteWatchingを削除
|
|
|
|
await NoteWatching.remove({
|
|
|
|
_id: n._id
|
|
|
|
});
|
|
|
|
}
|