jormungandr-bite/src/server/api/endpoints/aggregation/users/following.ts

62 lines
1.4 KiB
TypeScript
Raw Normal View History

2016-12-28 15:49:51 -07:00
/**
* Module dependencies
*/
2018-04-24 03:13:06 -06:00
import $ from 'cafy'; import ID from '../../../../../cafy-id';
2018-03-29 05:32:18 -06:00
import User from '../../../../../models/user';
import FollowingLog from '../../../../../models/following-log';
2016-12-28 15:49:51 -07:00
/**
* Aggregate following of a user
*/
2017-03-03 12:28:38 -07:00
module.exports = (params) => new Promise(async (res, rej) => {
2018-03-28 23:48:47 -06:00
// Get 'userId' parameter
2018-04-27 04:12:15 -06:00
const [userId, userIdErr] = $(params.userId).type(ID).get();
2018-03-28 23:48:47 -06:00
if (userIdErr) return rej('invalid userId param');
2016-12-28 15:49:51 -07:00
// Lookup user
const user = await User.findOne({
2017-03-03 03:52:36 -07:00
_id: userId
2017-02-21 21:08:33 -07:00
}, {
fields: {
_id: true
}
2016-12-28 15:49:51 -07:00
});
if (user === null) {
return rej('user not found');
}
const today = new Date();
const graph = [];
2016-12-28 15:49:51 -07:00
today.setMinutes(0);
today.setSeconds(0);
today.setMilliseconds(0);
2016-12-28 15:49:51 -07:00
let cursorDate = new Date(today.getTime());
let cursorTime = cursorDate.setDate(new Date(today.getTime()).getDate() + 1);
2016-12-28 15:49:51 -07:00
for (let i = 0; i < 30; i++) {
graph.push(FollowingLog.findOne({
createdAt: { $lt: new Date(cursorTime / 1000) },
userId: user._id
}, {
sort: { createdAt: -1 },
}).then(log => {
cursorDate = new Date(today.getTime());
cursorTime = cursorDate.setDate(today.getDate() - i);
2016-12-28 15:49:51 -07: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 15:49:51 -07:00
}
res(await Promise.all(graph));
2016-12-28 15:49:51 -07:00
});