2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-03-29 13:32:18 +02:00
|
|
|
import User from '../../../../../models/user';
|
|
|
|
import Post from '../../../../../models/post';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Aggregate post of a user
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params) => new Promise(async (res, rej) => {
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'userId' parameter
|
|
|
|
const [userId, userIdErr] = $(params.userId).id().$;
|
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Lookup user
|
|
|
|
const user = await User.findOne({
|
2017-03-03 11:52:36 +01:00
|
|
|
_id: userId
|
2017-02-22 05:08:33 +01:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
_id: true
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
const datas = await Post
|
|
|
|
.aggregate([
|
2018-03-29 07:48:47 +02:00
|
|
|
{ $match: { userId: user._id } },
|
2016-12-28 23:49:51 +01:00
|
|
|
{ $project: {
|
2018-03-29 07:48:47 +02:00
|
|
|
repostId: '$repostId',
|
|
|
|
replyId: '$replyId',
|
|
|
|
createdAt: { $add: ['$createdAt', 9 * 60 * 60 * 1000] } // Convert into JST
|
2016-12-28 23:49:51 +01:00
|
|
|
}},
|
|
|
|
{ $project: {
|
|
|
|
date: {
|
2018-03-29 07:48:47 +02:00
|
|
|
year: { $year: '$createdAt' },
|
|
|
|
month: { $month: '$createdAt' },
|
|
|
|
day: { $dayOfMonth: '$createdAt' }
|
2016-12-28 23:49:51 +01:00
|
|
|
},
|
|
|
|
type: {
|
|
|
|
$cond: {
|
2018-03-29 07:48:47 +02:00
|
|
|
if: { $ne: ['$repostId', null] },
|
2016-12-28 23:49:51 +01:00
|
|
|
then: 'repost',
|
|
|
|
else: {
|
|
|
|
$cond: {
|
2018-03-29 07:48:47 +02:00
|
|
|
if: { $ne: ['$replyId', null] },
|
2016-12-28 23:49:51 +01:00
|
|
|
then: 'reply',
|
|
|
|
else: 'post'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
},
|
|
|
|
{ $group: { _id: {
|
|
|
|
date: '$date',
|
|
|
|
type: '$type'
|
|
|
|
}, count: { $sum: 1 } } },
|
|
|
|
{ $group: {
|
|
|
|
_id: '$_id.date',
|
|
|
|
data: { $addToSet: {
|
|
|
|
type: '$_id.type',
|
|
|
|
count: '$count'
|
|
|
|
}}
|
|
|
|
} }
|
2017-01-17 03:11:22 +01:00
|
|
|
]);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
datas.forEach(data => {
|
|
|
|
data.date = data._id;
|
|
|
|
delete data._id;
|
|
|
|
|
|
|
|
data.posts = (data.data.filter(x => x.type == 'post')[0] || { count: 0 }).count;
|
|
|
|
data.reposts = (data.data.filter(x => x.type == 'repost')[0] || { count: 0 }).count;
|
|
|
|
data.replies = (data.data.filter(x => x.type == 'reply')[0] || { count: 0 }).count;
|
|
|
|
|
|
|
|
delete data.data;
|
|
|
|
});
|
|
|
|
|
|
|
|
const graph = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < 30; i++) {
|
2017-05-24 13:50:17 +02:00
|
|
|
const day = new Date(new Date().setDate(new Date().getDate() - i));
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
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 20:28:38 +01:00
|
|
|
graph.push(data);
|
2016-12-28 23:49:51 +01:00
|
|
|
} else {
|
|
|
|
graph.push({
|
|
|
|
date: {
|
|
|
|
year: day.getFullYear(),
|
|
|
|
month: day.getMonth() + 1, // In JavaScript, month is zero-based.
|
|
|
|
day: day.getDate()
|
|
|
|
},
|
|
|
|
posts: 0,
|
|
|
|
reposts: 0,
|
|
|
|
replies: 0
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
res(graph);
|
|
|
|
});
|