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

31 lines
865 B
TypeScript
Raw Normal View History

2019-02-05 04:48:08 +02:00
import $ from 'cafy';
import ID, { transform, ObjectId } from '../../../../misc/cafy-id';
2018-11-02 06:47:44 +02:00
import { getRelation } from '../../../../models/user';
import define from '../../define';
2018-10-31 17:11:21 +02:00
export const meta = {
desc: {
'ja-JP': 'ユーザー間のリレーションを取得します。'
},
requireCredential: true,
2018-10-31 17:11:21 +02:00
params: {
2018-11-01 20:32:24 +02:00
userId: {
validator: $.or($.type(ID), $.arr($.type(ID)).unique()),
transform: (v: any): ObjectId | ObjectId[] => Array.isArray(v) ? v.map(x => transform(x)) : transform(v),
2018-10-31 17:11:21 +02:00
desc: {
'ja-JP': 'ユーザーID (配列でも可)'
}
2018-11-01 20:32:24 +02:00
}
2018-10-31 17:11:21 +02:00
}
};
2018-11-02 06:47:44 +02:00
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
2018-10-31 17:11:21 +02:00
const ids = Array.isArray(ps.userId) ? ps.userId : [ps.userId];
const relations = await Promise.all(ids.map(id => getRelation(me._id, id)));
res(Array.isArray(ps.userId) ? relations : relations[0]);
2018-11-02 06:47:44 +02:00
}));