Sharkey/src/server/api/endpoints/aggregation/posts/reactions.ts

73 lines
1.5 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
/**
* Module dependencies
*/
2017-03-09 03:50:09 +09:00
import $ from 'cafy';
2018-03-29 20:32:18 +09:00
import Post from '../../../../../models/post';
import Reaction from '../../../../../models/post-reaction';
2016-12-29 07:49:51 +09:00
/**
2017-05-24 16:29:00 +09:00
* Aggregate reactions of a post
2016-12-29 07:49:51 +09:00
*
2017-03-01 17:37:01 +09:00
* @param {any} params
* @return {Promise<any>}
2016-12-29 07:49:51 +09:00
*/
2017-03-04 04:28:38 +09:00
module.exports = (params) => new Promise(async (res, rej) => {
2018-03-29 14:48:47 +09:00
// Get 'postId' parameter
const [postId, postIdErr] = $(params.postId).id().$;
if (postIdErr) return rej('invalid postId param');
2016-12-29 07:49:51 +09:00
// Lookup post
const post = await Post.findOne({
2017-03-03 19:52:36 +09:00
_id: postId
2016-12-29 07:49:51 +09:00
});
if (post === null) {
return rej('post not found');
}
const startTime = new Date(new Date().setMonth(new Date().getMonth() - 1));
2017-05-24 16:29:00 +09:00
const reactions = await Reaction
2016-12-29 07:49:51 +09:00
.find({
2018-03-29 14:48:47 +09:00
postId: post._id,
2016-12-29 07:49:51 +09:00
$or: [
2018-03-29 14:48:47 +09:00
{ deletedAt: { $exists: false } },
{ deletedAt: { $gt: startTime } }
2016-12-29 07:49:51 +09:00
]
}, {
2018-02-04 14:52:33 +09:00
sort: {
_id: -1
},
fields: {
_id: false,
2018-03-29 14:48:47 +09:00
postId: false
2018-02-04 14:52:33 +09:00
}
2017-01-17 11:11:22 +09:00
});
2016-12-29 07:49:51 +09:00
const graph = [];
for (let i = 0; i < 30; i++) {
let day = new Date(new Date().setDate(new Date().getDate() - i));
day = new Date(day.setMilliseconds(999));
day = new Date(day.setSeconds(59));
day = new Date(day.setMinutes(59));
day = new Date(day.setHours(23));
2017-04-14 20:45:37 +09:00
// day = day.getTime();
2016-12-29 07:49:51 +09:00
2017-05-24 16:29:00 +09:00
const count = reactions.filter(r =>
2018-03-29 14:48:47 +09:00
r.createdAt < day && (r.deletedAt == null || r.deletedAt > day)
2016-12-29 07:49:51 +09:00
).length;
graph.push({
date: {
year: day.getFullYear(),
month: day.getMonth() + 1, // In JavaScript, month is zero-based.
day: day.getDate()
},
count: count
});
}
res(graph);
});