2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
2021-08-19 13:04:15 +00:00
|
|
|
import { maximum } from '@/prelude/array';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
2019-05-20 12:44:16 +00:00
|
|
|
import { Not, In, IsNull } from 'typeorm';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { Notes, Users } from '@/models/index';
|
2017-09-08 14:29:33 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: false,
|
2018-11-01 18:32:24 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2017-09-08 14:29:33 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 10,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
2019-02-24 10:42:26 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 10:42:26 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
properties: {
|
|
|
|
user: {
|
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserDetailed',
|
|
|
|
},
|
|
|
|
weight: {
|
|
|
|
type: 'number',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
},
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-24 10:42:26 +00:00
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: 'e6965129-7b2a-40a4-bae2-cd84cd434822',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-01 18:32:24 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, me) => {
|
2017-09-08 14:29:33 +00:00
|
|
|
// Lookup user
|
2019-02-22 05:02:56 +00:00
|
|
|
const user = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2017-09-08 14:29:33 +00:00
|
|
|
});
|
|
|
|
|
2018-04-07 17:30:37 +00:00
|
|
|
// Fetch recent notes
|
2019-04-07 12:50:36 +00:00
|
|
|
const recentNotes = await Notes.find({
|
|
|
|
where: {
|
|
|
|
userId: user.id,
|
2021-12-09 14:58:30 +00:00
|
|
|
replyId: Not(IsNull()),
|
2017-09-08 14:29:33 +00:00
|
|
|
},
|
2019-04-07 12:50:36 +00:00
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
id: -1,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
take: 1000,
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['replyId'],
|
2017-09-08 14:29:33 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// 投稿が少なかったら中断
|
2018-04-07 17:30:37 +00:00
|
|
|
if (recentNotes.length === 0) {
|
2019-02-22 02:46:58 +00:00
|
|
|
return [];
|
2017-09-08 14:29:33 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
// TODO ミュートを考慮
|
|
|
|
const replyTargetNotes = await Notes.find({
|
|
|
|
where: {
|
|
|
|
id: In(recentNotes.map(p => p.replyId)),
|
2017-09-08 14:29:33 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['userId'],
|
2017-09-08 14:29:33 +00:00
|
|
|
});
|
|
|
|
|
2018-06-18 00:54:53 +00:00
|
|
|
const repliedUsers: any = {};
|
2017-09-08 14:29:33 +00:00
|
|
|
|
2018-04-07 17:30:37 +00:00
|
|
|
// Extract replies from recent notes
|
2018-12-11 11:36:55 +00:00
|
|
|
for (const userId of replyTargetNotes.map(x => x.userId.toString())) {
|
2017-09-08 14:29:33 +00:00
|
|
|
if (repliedUsers[userId]) {
|
|
|
|
repliedUsers[userId]++;
|
|
|
|
} else {
|
|
|
|
repliedUsers[userId] = 1;
|
|
|
|
}
|
2018-12-11 11:36:55 +00:00
|
|
|
}
|
2017-09-08 14:29:33 +00:00
|
|
|
|
|
|
|
// Calc peak
|
2018-12-11 11:36:55 +00:00
|
|
|
const peak = maximum(Object.values(repliedUsers));
|
2017-09-08 14:29:33 +00:00
|
|
|
|
|
|
|
// Sort replies by frequency
|
|
|
|
const repliedUsersSorted = Object.keys(repliedUsers).sort((a, b) => repliedUsers[b] - repliedUsers[a]);
|
|
|
|
|
2017-11-14 14:38:18 +00:00
|
|
|
// Extract top replied users
|
2019-04-12 16:43:22 +00:00
|
|
|
const topRepliedUsers = repliedUsersSorted.slice(0, ps.limit!);
|
2017-09-08 14:29:33 +00:00
|
|
|
|
|
|
|
// Make replies object (includes weights)
|
|
|
|
const repliesObj = await Promise.all(topRepliedUsers.map(async (user) => ({
|
2019-04-07 12:50:36 +00:00
|
|
|
user: await Users.pack(user, me, { detail: true }),
|
2021-12-09 14:58:30 +00:00
|
|
|
weight: repliedUsers[user] / peak,
|
2017-09-08 14:29:33 +00:00
|
|
|
})));
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
return repliesObj;
|
|
|
|
});
|