2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-03-31 12:55:00 +02:00
|
|
|
import User, { pack } from '../../../../models/user';
|
2018-04-01 21:15:27 +02:00
|
|
|
import resolveRemoteUser from '../../../../remote/resolve-user';
|
2018-03-27 09:51:12 +02:00
|
|
|
|
2018-03-31 12:55:00 +02:00
|
|
|
const cursorOption = { fields: { data: false } };
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-25 15:37:08 +02:00
|
|
|
* Show user(s)
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, me) => new Promise(async (res, rej) => {
|
2018-03-27 09:51:12 +02:00
|
|
|
let user;
|
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'userId' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [userId, userIdErr] = $.type(ID).optional().get(params.userId);
|
2018-03-29 07:48:47 +02:00
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
// Get 'userIds' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [userIds, userIdsErr] = $.arr($.type(ID)).optional().get(params.userIds);
|
2018-04-25 15:37:08 +02:00
|
|
|
if (userIdsErr) return rej('invalid userIds param');
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'username' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [username, usernameErr] = $.str.optional().get(params.username);
|
2017-03-02 23:47:14 +01:00
|
|
|
if (usernameErr) return rej('invalid username param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-03-27 09:51:12 +02:00
|
|
|
// Get 'host' parameter
|
2018-05-02 11:06:16 +02:00
|
|
|
const [host, hostErr] = $.str.optional().nullable().get(params.host);
|
2018-03-29 14:45:43 +02:00
|
|
|
if (hostErr) return rej('invalid host param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
if (userIds) {
|
|
|
|
const users = await User.find({
|
|
|
|
_id: {
|
|
|
|
$in: userIds
|
|
|
|
}
|
|
|
|
});
|
2017-02-22 05:08:33 +01:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
res(await Promise.all(users.map(u => pack(u, me, {
|
|
|
|
detail: true
|
|
|
|
}))));
|
2018-03-27 09:51:12 +02:00
|
|
|
} else {
|
2018-04-25 15:37:08 +02:00
|
|
|
// Lookup user
|
|
|
|
if (typeof host === 'string') {
|
|
|
|
try {
|
|
|
|
user = await resolveRemoteUser(username, host, cursorOption);
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(`failed to resolve remote user: ${e}`);
|
|
|
|
return rej('failed to resolve remote user');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const q = userId !== undefined
|
|
|
|
? { _id: userId }
|
|
|
|
: { usernameLower: username.toLowerCase(), host: null };
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
user = await User.findOne(q, cursorOption);
|
2018-03-27 09:51:12 +02:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
2018-03-27 09:51:12 +02:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-04-25 15:37:08 +02:00
|
|
|
// Send response
|
|
|
|
res(await pack(user, me, {
|
|
|
|
detail: true
|
|
|
|
}));
|
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|