jormungandr-bite/src/api/endpoints/aggregation/users/reaction.ts

81 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-12-28 15:49:51 -07:00
/**
* Module dependencies
*/
2017-03-08 11:50:09 -07:00
import $ from 'cafy';
2016-12-28 15:49:51 -07:00
import User from '../../../models/user';
2017-05-24 01:29:00 -06:00
import Reaction from '../../../models/post-reaction';
2016-12-28 15:49:51 -07:00
/**
2017-05-24 01:29:00 -06:00
* Aggregate reaction of a user
2016-12-28 15:49:51 -07:00
*
2017-03-01 01:37:01 -07:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 15:49:51 -07:00
*/
2017-03-03 12:28:38 -07:00
module.exports = (params) => new Promise(async (res, rej) => {
2016-12-28 15:49:51 -07:00
// Get 'user_id' parameter
2017-03-08 11:50:09 -07:00
const [userId, userIdErr] = $(params.user_id).id().$;
2017-03-03 03:52:36 -07:00
if (userIdErr) return rej('invalid user_id param');
2016-12-28 15:49:51 -07:00
// Lookup user
const user = await User.findOne({
2017-03-03 03:52:36 -07:00
_id: userId
2017-02-21 21:08:33 -07:00
}, {
fields: {
_id: true
}
2016-12-28 15:49:51 -07:00
});
if (user === null) {
return rej('user not found');
}
2017-05-24 01:29:00 -06:00
const datas = await Reaction
2016-12-28 15:49:51 -07:00
.aggregate([
{ $match: { user_id: user._id } },
{ $project: {
created_at: { $add: ['$created_at', 9 * 60 * 60 * 1000] } // Convert into JST
}},
{ $project: {
date: {
year: { $year: '$created_at' },
month: { $month: '$created_at' },
day: { $dayOfMonth: '$created_at' }
}
}},
{ $group: {
_id: '$date',
count: { $sum: 1 }
}}
2017-01-16 19:11:22 -07:00
]);
2016-12-28 15:49:51 -07:00
datas.forEach(data => {
data.date = data._id;
delete data._id;
});
const graph = [];
for (let i = 0; i < 30; i++) {
let day = new Date(new Date().setDate(new Date().getDate() - i));
const data = datas.filter(d =>
d.date.year == day.getFullYear() && d.date.month == day.getMonth() + 1 && d.date.day == day.getDate()
)[0];
if (data) {
2017-03-03 12:28:38 -07:00
graph.push(data);
2016-12-28 15:49:51 -07:00
} else {
graph.push({
date: {
year: day.getFullYear(),
month: day.getMonth() + 1, // In JavaScript, month is zero-based.
day: day.getDate()
},
count: 0
2017-03-03 12:28:38 -07:00
});
}
2016-12-28 15:49:51 -07:00
}
res(graph);
});