diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-03 19:52:36 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-03 19:52:36 +0900 |
| commit | 970843acd429e62c884c780601fae317a6a0fabb (patch) | |
| tree | 03a5d532d5b30758311d9069519d24f23bc209c7 /src/api/endpoints/aggregation/users/following.js | |
| parent | wip (diff) | |
| download | misskey-970843acd429e62c884c780601fae317a6a0fabb.tar.gz misskey-970843acd429e62c884c780601fae317a6a0fabb.tar.bz2 misskey-970843acd429e62c884c780601fae317a6a0fabb.zip | |
done
Diffstat (limited to 'src/api/endpoints/aggregation/users/following.js')
| -rw-r--r-- | src/api/endpoints/aggregation/users/following.js | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/src/api/endpoints/aggregation/users/following.js b/src/api/endpoints/aggregation/users/following.js deleted file mode 100644 index 0b04ff9543..0000000000 --- a/src/api/endpoints/aggregation/users/following.js +++ /dev/null @@ -1,79 +0,0 @@ -'use strict'; - -/** - * Module dependencies - */ -import * as mongo from 'mongodb'; -import User from '../../../models/user'; -import Following from '../../../models/following'; - -/** - * Aggregate following of a user - * - * @param {any} params - * @return {Promise<any>} - */ -module.exports = (params) => - new Promise(async (res, rej) => -{ - // Get 'user_id' parameter - const userId = params.user_id; - if (userId === undefined || userId === null) { - return rej('user_id is required'); - } - - // Lookup user - const user = await User.findOne({ - _id: new mongo.ObjectID(userId) - }, { - fields: { - _id: true - } - }); - - if (user === null) { - return rej('user not found'); - } - - const startTime = new Date(new Date().setMonth(new Date().getMonth() - 1)); - - const following = await Following - .find({ - follower_id: user._id, - $or: [ - { deleted_at: { $exists: false } }, - { deleted_at: { $gt: startTime } } - ] - }, { - _id: false, - follower_id: false, - followee_id: false - }, { - sort: { created_at: -1 } - }); - - 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 => - f.created_at < day && (f.deleted_at == null || f.deleted_at > day) - ).length; - - graph.push({ - date: { - year: day.getFullYear(), - month: day.getMonth() + 1, // In JavaScript, month is zero-based. - day: day.getDate() - }, - count: count - }); - } - - res(graph); -}); |