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 Following from '../../../../../models/following';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Aggregate following 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 startTime = new Date(new Date().setMonth(new Date().getMonth() - 1));
|
|
|
|
|
|
|
|
const following = await Following
|
|
|
|
.find({
|
2018-03-29 07:48:47 +02:00
|
|
|
followerId: user._id,
|
2016-12-28 23:49:51 +01:00
|
|
|
$or: [
|
2018-03-29 07:48:47 +02:00
|
|
|
{ deletedAt: { $exists: false } },
|
|
|
|
{ deletedAt: { $gt: startTime } }
|
2016-12-28 23:49:51 +01:00
|
|
|
]
|
|
|
|
}, {
|
2018-03-29 13:32:18 +02:00
|
|
|
sort: { createdAt: -1 },
|
|
|
|
fields: {
|
|
|
|
_id: false,
|
|
|
|
followerId: false,
|
|
|
|
followeeId: false
|
|
|
|
}
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01: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));
|
|
|
|
|
|
|
|
const count = following.filter(f =>
|
2018-03-29 07:48:47 +02:00
|
|
|
f.createdAt < day && (f.deletedAt == null || f.deletedAt > day)
|
2016-12-28 23:49:51 +01: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);
|
|
|
|
});
|