2018-04-24 09:13:06 +00:00
|
|
|
import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
2018-03-29 11:32:18 +00:00
|
|
|
import User from '../../../../../models/user';
|
2018-04-07 17:30:37 +00:00
|
|
|
import Note from '../../../../../models/note';
|
2017-03-13 14:33:02 +00:00
|
|
|
|
|
|
|
// TODO: likeやfollowも集計
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Aggregate activity of a user
|
|
|
|
*/
|
2018-07-05 17:58:29 +00:00
|
|
|
export default (params: any) => new Promise(async (res, rej) => {
|
2017-06-07 17:46:51 +00:00
|
|
|
// Get 'limit' parameter
|
2018-07-05 14:36:07 +00:00
|
|
|
const [limit = 365, limitErr] = $.num.optional.range(1, 365).get(params.limit);
|
2017-06-07 17:46:51 +00:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
2018-03-29 05:48:47 +00:00
|
|
|
// Get 'userId' parameter
|
2018-05-02 09:06:16 +00:00
|
|
|
const [userId, userIdErr] = $.type(ID).get(params.userId);
|
2018-03-29 05:48:47 +00:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2018-04-07 17:30:37 +00:00
|
|
|
const datas = await Note
|
2017-03-13 14:33:02 +00:00
|
|
|
.aggregate([
|
2018-03-29 05:48:47 +00:00
|
|
|
{ $match: { userId: user._id } },
|
2017-03-13 14:33:02 +00:00
|
|
|
{ $project: {
|
2018-04-07 17:30:37 +00:00
|
|
|
renoteId: '$renoteId',
|
2018-03-29 05:48:47 +00:00
|
|
|
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-04-07 17:30:37 +00:00
|
|
|
if: { $ne: ['$renoteId', null] },
|
|
|
|
then: 'renote',
|
2017-03-13 14:33:02 +00:00
|
|
|
else: {
|
|
|
|
$cond: {
|
2018-03-29 05:48:47 +00:00
|
|
|
if: { $ne: ['$replyId', null] },
|
2017-03-13 14:33:02 +00:00
|
|
|
then: 'reply',
|
2018-04-07 17:30:37 +00:00
|
|
|
else: 'note'
|
2017-03-13 14:33:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
},
|
|
|
|
{ $group: { _id: {
|
|
|
|
date: '$date',
|
|
|
|
type: '$type'
|
|
|
|
}, count: { $sum: 1 } } },
|
|
|
|
{ $group: {
|
|
|
|
_id: '$_id.date',
|
|
|
|
data: { $addToSet: {
|
|
|
|
type: '$_id.type',
|
|
|
|
count: '$count'
|
|
|
|
}}
|
|
|
|
} }
|
|
|
|
]);
|
|
|
|
|
2018-06-18 00:54:53 +00:00
|
|
|
datas.forEach((data: any) => {
|
2017-03-13 14:33:02 +00:00
|
|
|
data.date = data._id;
|
|
|
|
delete data._id;
|
|
|
|
|
2018-06-18 00:54:53 +00:00
|
|
|
data.notes = (data.data.filter((x: any) => x.type == 'note')[0] || { count: 0 }).count;
|
|
|
|
data.renotes = (data.data.filter((x: any) => x.type == 'renote')[0] || { count: 0 }).count;
|
|
|
|
data.replies = (data.data.filter((x: any) => x.type == 'reply')[0] || { count: 0 }).count;
|
2017-03-13 14:33:02 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2018-06-18 00:54:53 +00:00
|
|
|
const data = datas.filter((d: any) =>
|
2017-03-13 14:33:02 +00:00
|
|
|
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()
|
|
|
|
},
|
2018-04-07 17:30:37 +00:00
|
|
|
notes: 0,
|
|
|
|
renotes: 0,
|
2017-03-13 14:33:02 +00:00
|
|
|
replies: 0
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res(graph);
|
|
|
|
});
|