2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-04-02 14:57:36 +02:00
|
|
|
import { ObjectID } from 'mongodb';
|
2018-03-29 13:32:18 +02:00
|
|
|
import User from '../../../../../models/user';
|
2018-04-02 14:57:36 +02:00
|
|
|
import FollowingLog from '../../../../../models/following-log';
|
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');
|
|
|
|
}
|
|
|
|
|
2018-04-02 14:57:36 +02:00
|
|
|
const today = new Date();
|
|
|
|
const graph = [];
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-02 14:57:36 +02:00
|
|
|
today.setMinutes(0);
|
|
|
|
today.setSeconds(0);
|
|
|
|
today.setMilliseconds(0);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-02 14:57:36 +02:00
|
|
|
let cursorDate = new Date(today.getTime());
|
|
|
|
let cursorTime = cursorDate.setDate(new Date(today.getTime()).getDate() + 1);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
for (let i = 0; i < 30; i++) {
|
2018-04-02 14:57:36 +02:00
|
|
|
graph.push(FollowingLog.findOne({
|
|
|
|
_id: { $lt: ObjectID.createFromTime(cursorTime / 1000) },
|
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
sort: { _id: -1 },
|
|
|
|
}).then(log => {
|
|
|
|
cursorDate = new Date(today.getTime());
|
|
|
|
cursorTime = cursorDate.setDate(today.getDate() - i);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-02 14:57:36 +02:00
|
|
|
return {
|
|
|
|
date: {
|
|
|
|
year: cursorDate.getFullYear(),
|
|
|
|
month: cursorDate.getMonth() + 1, // In JavaScript, month is zero-based.
|
|
|
|
day: cursorDate.getDate()
|
|
|
|
},
|
|
|
|
count: log ? log.count : 0
|
|
|
|
};
|
|
|
|
}));
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2018-04-02 14:57:36 +02:00
|
|
|
res(await Promise.all(graph));
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|