2018-02-01 15:06:01 -08:00
|
|
|
import * as mongo from 'mongodb';
|
2018-04-27 03:12:15 -07:00
|
|
|
import $ from 'cafy';
|
2018-06-17 17:54:53 -07:00
|
|
|
const deepcopy = require('deepcopy');
|
2018-03-29 04:32:18 -07:00
|
|
|
import db from '../db/mongodb';
|
2018-04-07 10:30:37 -07:00
|
|
|
import Reaction from './note-reaction';
|
2018-02-01 15:06:01 -08:00
|
|
|
import { pack as packUser } from './user';
|
2017-03-19 12:24:19 -07:00
|
|
|
|
2018-04-07 10:30:37 -07:00
|
|
|
const NoteReaction = db.get<INoteReaction>('noteReactions');
|
|
|
|
NoteReaction.createIndex(['userId', 'noteId'], { unique: true });
|
|
|
|
export default NoteReaction;
|
2018-02-01 15:06:01 -08:00
|
|
|
|
2018-04-07 10:30:37 -07:00
|
|
|
export interface INoteReaction {
|
2018-02-01 15:06:01 -08:00
|
|
|
_id: mongo.ObjectID;
|
2018-03-28 22:48:47 -07:00
|
|
|
createdAt: Date;
|
2018-04-07 10:30:37 -07:00
|
|
|
noteId: mongo.ObjectID;
|
2018-03-28 22:48:47 -07:00
|
|
|
userId: mongo.ObjectID;
|
2018-02-03 21:52:33 -08:00
|
|
|
reaction: string;
|
2018-02-01 15:06:01 -08:00
|
|
|
}
|
|
|
|
|
2018-05-02 02:06:16 -07:00
|
|
|
export const validateReaction = $.str.or([
|
2018-04-22 23:27:01 -07:00
|
|
|
'like',
|
|
|
|
'love',
|
|
|
|
'laugh',
|
|
|
|
'hmm',
|
|
|
|
'surprise',
|
|
|
|
'congrats',
|
|
|
|
'angry',
|
|
|
|
'confused',
|
|
|
|
'pudding'
|
|
|
|
]);
|
|
|
|
|
2018-04-11 11:46:32 -07:00
|
|
|
/**
|
|
|
|
* NoteReactionを物理削除します
|
|
|
|
*/
|
|
|
|
export async function deleteNoteReaction(noteReaction: string | mongo.ObjectID | INoteReaction) {
|
|
|
|
let n: INoteReaction;
|
|
|
|
|
|
|
|
// Populate
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(noteReaction)) {
|
|
|
|
n = await NoteReaction.findOne({
|
|
|
|
_id: noteReaction
|
|
|
|
});
|
|
|
|
} else if (typeof noteReaction === 'string') {
|
|
|
|
n = await NoteReaction.findOne({
|
|
|
|
_id: new mongo.ObjectID(noteReaction)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
n = noteReaction as INoteReaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == null) return;
|
|
|
|
|
|
|
|
// このNoteReactionを削除
|
|
|
|
await NoteReaction.remove({
|
|
|
|
_id: n._id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-01 15:06:01 -08:00
|
|
|
/**
|
|
|
|
* Pack a reaction for API response
|
|
|
|
*/
|
|
|
|
export const pack = (
|
|
|
|
reaction: any,
|
|
|
|
me?: any
|
|
|
|
) => new Promise<any>(async (resolve, reject) => {
|
|
|
|
let _reaction: any;
|
|
|
|
|
|
|
|
// Populate the reaction if 'reaction' is ID
|
|
|
|
if (mongo.ObjectID.prototype.isPrototypeOf(reaction)) {
|
|
|
|
_reaction = await Reaction.findOne({
|
|
|
|
_id: reaction
|
|
|
|
});
|
|
|
|
} else if (typeof reaction === 'string') {
|
|
|
|
_reaction = await Reaction.findOne({
|
|
|
|
_id: new mongo.ObjectID(reaction)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_reaction = deepcopy(reaction);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rename _id to id
|
|
|
|
_reaction.id = _reaction._id;
|
|
|
|
delete _reaction._id;
|
|
|
|
|
|
|
|
// Populate user
|
2018-03-28 22:48:47 -07:00
|
|
|
_reaction.user = await packUser(_reaction.userId, me);
|
2018-02-01 15:06:01 -08:00
|
|
|
|
|
|
|
resolve(_reaction);
|
|
|
|
});
|