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

116 lines
2.7 KiB
TypeScript
Raw Normal View History

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