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