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