2019-02-02 00:16:27 +09:00
|
|
|
import * as ms from 'ms';
|
2017-03-09 03:50:09 +09:00
|
|
|
import $ from 'cafy';
|
2018-12-02 03:42:45 +09:00
|
|
|
import User, { pack, ILocalUser } from '../../../../models/user';
|
2018-04-19 12:43:25 +09:00
|
|
|
import { getFriendIds } from '../../common/get-friends';
|
2018-12-02 03:42:45 +09:00
|
|
|
import * as request from 'request-promise-native';
|
2018-10-10 02:08:26 +09:00
|
|
|
import config from '../../../../config';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2018-11-21 23:44:59 +09:00
|
|
|
import fetchMeta from '../../../../misc/fetch-meta';
|
2018-12-02 03:42:45 +09:00
|
|
|
import resolveUser from '../../../../remote/resolve-user';
|
2019-02-01 09:57:51 +09:00
|
|
|
import { getHideUserIds } from '../../common/get-hide-users';
|
2019-02-03 18:16:57 +09:00
|
|
|
import { apiLogger } from '../../logger';
|
2018-11-21 23:44:59 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-29 06:59:43 +09:00
|
|
|
'ja-JP': 'おすすめのユーザー一覧を取得します。'
|
2018-07-17 04:36:44 +09:00
|
|
|
},
|
|
|
|
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['users'],
|
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-02 12:49:08 +09:00
|
|
|
kind: 'account-read',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-02 12:49:08 +09:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 16:33:07 +09:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-02 12:49:08 +09:00
|
|
|
default: 0
|
|
|
|
}
|
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, me) => {
|
2018-11-21 23:44:59 +09:00
|
|
|
const instance = await fetchMeta();
|
|
|
|
|
|
|
|
if (instance.enableExternalUserRecommendation) {
|
2018-10-10 02:08:26 +09:00
|
|
|
const userName = me.username;
|
|
|
|
const hostName = config.hostname;
|
2018-11-02 13:47:44 +09:00
|
|
|
const limit = ps.limit;
|
|
|
|
const offset = ps.offset;
|
2018-11-21 23:44:59 +09:00
|
|
|
const timeout = instance.externalUserRecommendationTimeout;
|
|
|
|
const engine = instance.externalUserRecommendationEngine;
|
2018-10-06 17:21:27 +09:00
|
|
|
const url = engine
|
|
|
|
.replace('{{host}}', hostName)
|
|
|
|
.replace('{{user}}', userName)
|
2018-11-02 13:47:44 +09:00
|
|
|
.replace('{{limit}}', limit.toString())
|
|
|
|
.replace('{{offset}}', offset.toString());
|
2018-10-10 02:08:26 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
const users = await request({
|
2018-10-13 13:13:15 +09:00
|
|
|
url: url,
|
2019-02-07 21:02:33 +09:00
|
|
|
proxy: config.proxy,
|
2018-10-13 13:13:15 +09:00
|
|
|
timeout: timeout,
|
|
|
|
json: true,
|
|
|
|
followRedirect: true,
|
|
|
|
followAllRedirects: true
|
2018-12-02 03:42:45 +09:00
|
|
|
})
|
2019-02-22 11:46:58 +09:00
|
|
|
.then(body => convertUsers(body, me));
|
|
|
|
|
|
|
|
return users;
|
2018-10-06 16:03:18 +09:00
|
|
|
} else {
|
|
|
|
// ID list of the user itself and other users who the user follows
|
|
|
|
const followingIds = await getFriendIds(me._id);
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
// 隠すユーザーを取得
|
|
|
|
const hideUserIds = await getHideUserIds(me);
|
|
|
|
|
|
|
|
const users = await User.find({
|
|
|
|
_id: {
|
|
|
|
$nin: followingIds.concat(hideUserIds)
|
|
|
|
},
|
|
|
|
isLocked: { $ne: true },
|
|
|
|
updatedAt: {
|
|
|
|
$gte: new Date(Date.now() - ms('7days'))
|
|
|
|
},
|
|
|
|
host: null
|
|
|
|
}, {
|
|
|
|
limit: ps.limit,
|
|
|
|
skip: ps.offset,
|
|
|
|
sort: {
|
|
|
|
followersCount: -1
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return await Promise.all(users.map(user => pack(user, me, { detail: true })));
|
2018-10-06 16:03:18 +09:00
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|
2018-12-02 03:42:45 +09:00
|
|
|
|
|
|
|
type IRecommendUser = {
|
|
|
|
name: string;
|
|
|
|
username: string;
|
|
|
|
host: string;
|
|
|
|
description: string;
|
|
|
|
avatarUrl: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolve/Pack dummy users
|
|
|
|
*/
|
|
|
|
async function convertUsers(src: IRecommendUser[], me: ILocalUser) {
|
|
|
|
const packed = await Promise.all(src.map(async x => {
|
|
|
|
const user = await resolveUser(x.username, x.host)
|
|
|
|
.catch(() => {
|
2019-02-03 18:16:57 +09:00
|
|
|
apiLogger.warn(`Can't resolve ${x.username}@${x.host}`);
|
2018-12-02 03:42:45 +09:00
|
|
|
return null;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (user == null) return x;
|
|
|
|
|
|
|
|
return await pack(user, me, { detail: true });
|
|
|
|
}));
|
|
|
|
|
|
|
|
return packed;
|
|
|
|
}
|