Sharkey/src/server/api/endpoints/users/get_frequently_replied_users.ts

111 lines
2.2 KiB
TypeScript
Raw Normal View History

2019-02-05 04:48:08 +02:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
2018-04-07 20:30:37 +03:00
import Note from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import User, { pack } from '../../../../models/user';
import define from '../../define';
import { maximum } from '../../../../prelude/array';
import { getHideUserIds } from '../../common/get-hide-users';
2017-09-08 17:29:33 +03:00
2018-11-01 20:32:24 +02:00
export const meta = {
requireCredential: false,
params: {
userId: {
validator: $.type(ID),
transform: transform,
2018-11-03 15:49:36 +02:00
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
2018-11-01 20:32:24 +02:00
},
2017-09-08 17:29:33 +03:00
2018-11-01 20:32:24 +02:00
limit: {
2019-02-13 09:33:07 +02:00
validator: $.optional.num.range(1, 100),
2018-11-01 20:32:24 +02:00
default: 10
},
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
2017-09-08 17:29:33 +03:00
// Lookup user
const user = await User.findOne({
2018-11-01 20:32:24 +02:00
_id: ps.userId
2017-09-08 17:29:33 +03:00
}, {
fields: {
_id: true
}
});
if (user === null) {
return rej('user not found');
}
2018-04-07 20:30:37 +03:00
// Fetch recent notes
const recentNotes = await Note.find({
2018-03-29 08:48:47 +03:00
userId: user._id,
replyId: {
2017-09-08 17:29:33 +03:00
$exists: true,
$ne: null
}
}, {
sort: {
_id: -1
},
limit: 1000,
fields: {
_id: false,
2018-03-29 08:48:47 +03:00
replyId: true
2017-09-08 17:29:33 +03:00
}
});
// 投稿が少なかったら中断
2018-04-07 20:30:37 +03:00
if (recentNotes.length === 0) {
2017-09-08 17:29:33 +03:00
return res([]);
}
const hideUserIds = await getHideUserIds(me);
hideUserIds.push(user._id);
2018-04-07 20:30:37 +03:00
const replyTargetNotes = await Note.find({
2017-09-08 17:29:33 +03:00
_id: {
2018-04-07 20:30:37 +03:00
$in: recentNotes.map(p => p.replyId)
2017-09-08 17:29:33 +03:00
},
2018-03-29 08:48:47 +03:00
userId: {
$nin: hideUserIds
2017-09-08 17:29:33 +03:00
}
}, {
fields: {
_id: false,
2018-03-29 08:48:47 +03:00
userId: true
2017-09-08 17:29:33 +03:00
}
});
2018-06-18 03:54:53 +03:00
const repliedUsers: any = {};
2017-09-08 17:29:33 +03:00
2018-04-07 20:30:37 +03:00
// Extract replies from recent notes
for (const userId of replyTargetNotes.map(x => x.userId.toString())) {
2017-09-08 17:29:33 +03:00
if (repliedUsers[userId]) {
repliedUsers[userId]++;
} else {
repliedUsers[userId] = 1;
}
}
2017-09-08 17:29:33 +03:00
// Calc peak
const peak = maximum(Object.values(repliedUsers));
2017-09-08 17:29:33 +03:00
// Sort replies by frequency
const repliedUsersSorted = Object.keys(repliedUsers).sort((a, b) => repliedUsers[b] - repliedUsers[a]);
2017-11-14 16:38:18 +02:00
// Extract top replied users
2018-11-01 20:32:24 +02:00
const topRepliedUsers = repliedUsersSorted.slice(0, ps.limit);
2017-09-08 17:29:33 +03:00
// Make replies object (includes weights)
const repliesObj = await Promise.all(topRepliedUsers.map(async (user) => ({
2018-02-02 01:21:30 +02:00
user: await pack(user, me, { detail: true }),
2017-09-08 17:29:33 +03:00
weight: repliedUsers[user] / peak
})));
res(repliesObj);
2018-11-02 06:47:44 +02:00
}));