2016-12-28 15:49:51 -07:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 11:50:09 -07:00
|
|
|
import $ from 'cafy';
|
2018-03-31 04:55:00 -06:00
|
|
|
import User, { pack } from '../../../../models/user';
|
|
|
|
import resolveRemoteUser from '../../../../common/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
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a user
|
|
|
|
*
|
2017-03-01 01:37:01 -07:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} me
|
|
|
|
* @return {Promise<any>}
|
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
|
|
|
|
const [userId, userIdErr] = $(params.userId).optional.id().$;
|
|
|
|
if (userIdErr) return rej('invalid userId param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
|
|
|
// Get 'username' parameter
|
2017-03-08 11:50:09 -07:00
|
|
|
const [username, usernameErr] = $(params.username).optional.string().$;
|
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
|
|
|
|
const [host, hostErr] = $(params.host).optional.string().$;
|
2018-03-29 06:45:43 -06:00
|
|
|
if (hostErr) return rej('invalid host param');
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-27 01:51:12 -06:00
|
|
|
if (userId === undefined && typeof username !== 'string') {
|
2018-03-28 23:48:47 -06:00
|
|
|
return rej('userId or pair of username and host is required');
|
2018-03-27 01:51:12 -06:00
|
|
|
}
|
2017-02-21 21:08:33 -07:00
|
|
|
|
2016-12-28 15:49:51 -07:00
|
|
|
// Lookup user
|
2018-03-27 01:51:12 -06:00
|
|
|
if (typeof host === 'string') {
|
2018-03-31 04:55:00 -06:00
|
|
|
try {
|
|
|
|
user = await resolveRemoteUser(username, host, cursorOption);
|
|
|
|
} catch (exception) {
|
|
|
|
return rej('failed to resolve remote user');
|
2017-02-21 21:08:33 -07:00
|
|
|
}
|
2018-03-27 01:51:12 -06:00
|
|
|
} else {
|
|
|
|
const q = userId !== undefined
|
|
|
|
? { _id: userId }
|
2018-03-28 23:48:47 -06:00
|
|
|
: { usernameLower: username.toLowerCase(), host: null };
|
2016-12-28 15:49:51 -07:00
|
|
|
|
2018-03-31 04:55:00 -06:00
|
|
|
user = await User.findOne(q, cursorOption);
|
2018-03-27 01:51:12 -06:00
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
2016-12-28 15:49:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send response
|
2018-02-01 16:21:30 -07:00
|
|
|
res(await pack(user, me, {
|
2016-12-28 15:49:51 -07:00
|
|
|
detail: true
|
|
|
|
}));
|
|
|
|
});
|