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

92 lines
2.3 KiB
TypeScript
Raw Normal View History

const ms = require('ms');
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-06-18 03:54:53 +03:00
import User, { pack, ILocalUser } from '../../../../models/user';
2018-04-19 06:43:25 +03:00
import { getFriendIds } from '../../common/get-friends';
2018-04-18 12:46:38 +03:00
import Mute from '../../../../models/mute';
2018-10-06 10:03:18 +03:00
import * as request from 'request'
import config from '../../../../config'
2016-12-29 00:49:51 +02:00
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,
kind: 'account-read'
};
2018-07-05 20:58:29 +03:00
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-10-06 11:19:41 +03:00
if (config.user_recommendation && config.user_recommendation.external) {
2018-10-06 10:03:18 +03:00
var userName = me.username
var hostName = config.hostname
var limit = params.limit
var offset = params.offset
var timeout = config.user_recommendation.timeout
var engine = config.user_recommendation.engine
var url
url = engine
url = url.replace('{{host}}', hostName)
url = url.replace('{{user}}', userName)
url = url.replace('{{limit}}', limit)
url = url.replace('{{offset}}', offset)
request(
{
url: url,
timeout: timeout,
json: true,
followRedirect: true,
followAllRedirects: true
},
2018-10-06 10:03:18 +03:00
function (error: any, response: any, body: any) {
if (!error && response.statusCode == 200) {
res(body)
} else {
res([])
2018-03-27 10:51:12 +03:00
}
2016-12-29 00:49:51 +02:00
}
2018-10-06 10:03:18 +03:00
)
} else {
// Get 'limit' parameter
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
if (limitErr) return rej('invalid limit param');
// Get 'offset' parameter
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
if (offsetErr) return rej('invalid offset param');
// ID list of the user itself and other users who the user follows
const followingIds = await getFriendIds(me._id);
// ミュートしているユーザーを取得
const mutedUserIds = (await Mute.find({
muterId: me._id
})).map(m => m.muteeId);
const users = await User
.find({
_id: {
$nin: followingIds.concat(mutedUserIds)
},
isLocked: false,
$or: [{
lastUsedAt: {
$gte: new Date(Date.now() - ms('7days'))
}
}, {
host: null
}]
}, {
limit: limit,
skip: offset,
sort: {
followersCount: -1
}
});
2016-12-29 00:49:51 +02:00
2018-10-06 10:03:18 +03:00
// Serialize
res(await Promise.all(users.map(async user =>
await pack(user, me, { detail: true }))));
}
2016-12-29 00:49:51 +02:00
});