2018-03-28 23:48:47 -06:00
|
|
|
import * as mongo from 'mongodb';
|
2018-06-17 18:54:53 -06:00
|
|
|
const deepcopy = require('deepcopy');
|
2018-03-29 05:32:18 -06:00
|
|
|
import db from '../db/mongodb';
|
2018-04-19 22:31:43 -06:00
|
|
|
import { pack as packNote } from './note';
|
2017-01-16 17:12:33 -07:00
|
|
|
|
2018-04-11 12:46:32 -06:00
|
|
|
const Favorite = db.get<IFavorite>('favorites');
|
2018-04-19 21:38:31 -06:00
|
|
|
Favorite.createIndex(['userId', 'noteId'], { unique: true });
|
2018-04-11 12:46:32 -06:00
|
|
|
export default Favorite;
|
2018-03-28 23:48:47 -06:00
|
|
|
|
|
|
|
export type IFavorite = {
|
|
|
|
_id: mongo.ObjectID;
|
|
|
|
createdAt: Date;
|
|
|
|
userId: mongo.ObjectID;
|
2018-04-07 11:30:37 -06:00
|
|
|
noteId: mongo.ObjectID;
|
2018-03-28 23:48:47 -06:00
|
|
|
};
|
2018-04-11 12:46:32 -06: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
|
|
|
|
});
|
|
|
|
}
|
2018-04-19 22:31:43 -06:00
|
|
|
|
2018-10-03 22:33:59 -06:00
|
|
|
export const packMany = async (
|
|
|
|
favorites: any[],
|
|
|
|
me: any
|
|
|
|
) => {
|
|
|
|
return (await Promise.all(favorites.map(f => pack(f, me)))).filter(x => x != null);
|
|
|
|
};
|
|
|
|
|
2018-04-19 22:31:43 -06:00
|
|
|
/**
|
|
|
|
* Pack a favorite for API response
|
|
|
|
*/
|
|
|
|
export const pack = (
|
|
|
|
favorite: any,
|
|
|
|
me: any
|
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
let _favorite: any;
|
|
|
|
|
|
|
|
// Populate the favorite if 'favorite' is ID
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(favorite)) {
|
|
|
|
_favorite = await Favorite.findOne({
|
|
|
|
_id: favorite
|
|
|
|
});
|
|
|
|
} else if (typeof favorite === 'string') {
|
|
|
|
_favorite = await Favorite.findOne({
|
|
|
|
_id: new mongo.ObjectID(favorite)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_favorite = deepcopy(favorite);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename _id to id
|
|
|
|
_favorite.id = _favorite._id;
|
|
|
|
delete _favorite._id;
|
|
|
|
|
|
|
|
// Populate note
|
|
|
|
_favorite.note = await packNote(_favorite.noteId, me);
|
|
|
|
|
2018-10-03 22:33:59 -06:00
|
|
|
// (データベースの不具合などで)投稿が見つからなかったら
|
|
|
|
if (_favorite.note == null) {
|
2018-10-10 11:19:21 -06:00
|
|
|
console.warn(`[DAMAGED DB] (missing) pkg: favorite -> note :: ${_favorite.id} (note ${_favorite.noteId})`);
|
2018-10-03 22:33:59 -06:00
|
|
|
return resolve(null);
|
|
|
|
}
|
|
|
|
|
2018-04-19 22:31:43 -06:00
|
|
|
resolve(_favorite);
|
|
|
|
});
|