Sharkey/src/server/api/endpoints/aggregation/users/following.ts

62 lines
1.4 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2018-04-24 11:13:06 +02:00
import $ from 'cafy'; import ID from '../../../../../cafy-id';
2018-03-29 13:32:18 +02:00
import User from '../../../../../models/user';
import FollowingLog from '../../../../../models/following-log';
2016-12-28 23:49:51 +01:00
/**
* Aggregate following of a user
*/
2018-06-18 02:54:53 +02:00
module.exports = (params: any) => new Promise(async (res, rej) => {
2018-03-29 07:48:47 +02:00
// Get 'userId' parameter
2018-05-02 11:06:16 +02:00
const [userId, userIdErr] = $.type(ID).get(params.userId);
2018-03-29 07:48:47 +02:00
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 today = new Date();
const graph = [];
2016-12-28 23:49:51 +01:00
today.setMinutes(0);
today.setSeconds(0);
today.setMilliseconds(0);
2016-12-28 23:49:51 +01: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++) {
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 23:49:51 +01: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
}
res(await Promise.all(graph));
2016-12-28 23:49:51 +01:00
});