misskey/src/models/favorite.ts

41 lines
857 B
TypeScript
Raw Normal View History

2018-03-28 22:48:47 -07:00
import * as mongo from 'mongodb';
2018-03-29 04:32:18 -07:00
import db from '../db/mongodb';
2017-01-16 16:12:33 -08:00
2018-04-11 11:46:32 -07:00
const Favorite = db.get<IFavorite>('favorites');
2018-04-19 20:38:31 -07:00
Favorite.createIndex(['userId', 'noteId'], { unique: true });
2018-04-11 11:46:32 -07:00
export default Favorite;
2018-03-28 22:48:47 -07:00
export type IFavorite = {
_id: mongo.ObjectID;
createdAt: Date;
userId: mongo.ObjectID;
2018-04-07 10:30:37 -07:00
noteId: mongo.ObjectID;
2018-03-28 22:48:47 -07:00
};
2018-04-11 11:46:32 -07:00
/**
* Favoriteを物理削除します
*/
export async function deleteFavorite(favorite: string | mongo.ObjectID | IFavorite) {
let f: IFavorite;
// Populate
if (mongo.ObjectID.prototype.isPrototypeOf(favorite)) {
f = await Favorite.findOne({
_id: favorite
});
} else if (typeof favorite === 'string') {
f = await Favorite.findOne({
_id: new mongo.ObjectID(favorite)
});
} else {
f = favorite as IFavorite;
}
if (f == null) return;
// このFavoriteを削除
await Favorite.remove({
_id: f._id
});
}