2017-03-13 14:33:02 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
|
|
|
import User from '../../../models/user';
|
|
|
|
import Post from '../../../models/post';
|
|
|
|
|
|
|
|
// TODO: likeやfollowも集計
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Aggregate activity of a user
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = (params) => new Promise(async (res, rej) => {
|
2017-06-07 17:46:51 +00:00
|
|
|
// Get 'limit' parameter
|
|
|
|
const [limit = 365, limitErr] = $(params.limit).optional.number().range(1, 365).$;
|
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
2018-03-29 05:48:47 +00:00
|
|
|
// Get 'userId' parameter
|
|
|
|
const [userId, userIdErr] = $(params.userId).id().$;
|
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2017-03-13 14:33:02 +00:00
|
|
|
|
|
|
|
// Lookup user
|
|
|
|
const user = await User.findOne({
|
|
|
|
_id: userId
|
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
_id: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
const datas = await Post
|
|
|
|
.aggregate([
|
2018-03-29 05:48:47 +00:00
|
|
|
{ $match: { userId: user._id } },
|
2017-03-13 14:33:02 +00:00
|
|
|
{ $project: {
|
2018-03-29 05:48:47 +00:00
|
|
|
repostId: '$repostId',
|
|
|
|
replyId: '$replyId',
|
|
|
|
createdAt: { $add: ['$createdAt', 9 * 60 * 60 * 1000] } // Convert into JST
|
2017-03-13 14:33:02 +00:00
|
|
|
}},
|
|
|
|
{ $project: {
|
|
|
|
date: {
|
2018-03-29 05:48:47 +00:00
|
|
|
year: { $year: '$createdAt' },
|
|
|
|
month: { $month: '$createdAt' },
|
|
|
|
day: { $dayOfMonth: '$createdAt' }
|
2017-03-13 14:33:02 +00:00
|
|
|
},
|
|
|
|
type: {
|
|
|
|
$cond: {
|
2018-03-29 05:48:47 +00:00
|
|
|
if: { $ne: ['$repostId', null] },
|
2017-03-13 14:33:02 +00:00
|
|
|
then: 'repost',
|
|
|
|
else: {
|
|
|
|
$cond: {
|
2018-03-29 05:48:47 +00:00
|
|
|
if: { $ne: ['$replyId', null] },
|
2017-03-13 14:33:02 +00: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'
|
|
|
|
}}
|
|
|
|
} }
|
|
|
|
]);
|
|
|
|
|
|
|
|
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 = [];
|
|
|
|
|
2017-06-07 17:46:51 +00:00
|
|
|
for (let i = 0; i < limit; i++) {
|
2017-05-24 11:50:17 +00:00
|
|
|
const day = new Date(new Date().setDate(new Date().getDate() - i));
|
2017-03-13 14:33:02 +00: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) {
|
|
|
|
graph.push(data);
|
|
|
|
} 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
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res(graph);
|
|
|
|
});
|