sharkey/src/server/api/endpoints/users/show.ts

57 lines
1.4 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
/**
* Module dependencies
*/
2017-03-09 03:50:09 +09:00
import $ from 'cafy';
2018-03-31 19:55:00 +09:00
import User, { pack } from '../../../../models/user';
2018-04-02 04:15:27 +09:00
import resolveRemoteUser from '../../../../remote/resolve-user';
2018-03-27 16:51:12 +09:00
2018-03-31 19:55:00 +09:00
const cursorOption = { fields: { data: false } };
2016-12-29 07:49:51 +09:00
/**
* Show a user
*/
2017-03-04 04:28:38 +09:00
module.exports = (params, me) => new Promise(async (res, rej) => {
2018-03-27 16:51:12 +09:00
let user;
2018-03-29 14:48:47 +09:00
// Get 'userId' parameter
const [userId, userIdErr] = $(params.userId).optional.id().$;
if (userIdErr) return rej('invalid userId param');
2016-12-29 07:49:51 +09:00
// Get 'username' parameter
2017-03-09 03:50:09 +09:00
const [username, usernameErr] = $(params.username).optional.string().$;
2017-03-03 07:47:14 +09:00
if (usernameErr) return rej('invalid username param');
2016-12-29 07:49:51 +09:00
2018-03-27 16:51:12 +09:00
// Get 'host' parameter
const [host, hostErr] = $(params.host).nullable.optional.string().$;
2018-03-29 21:45:43 +09:00
if (hostErr) return rej('invalid host param');
2016-12-29 07:49:51 +09:00
2018-03-27 16:51:12 +09:00
if (userId === undefined && typeof username !== 'string') {
2018-03-29 14:48:47 +09:00
return rej('userId or pair of username and host is required');
2018-03-27 16:51:12 +09:00
}
2017-02-22 13:08:33 +09:00
2016-12-29 07:49:51 +09:00
// Lookup user
2018-03-27 16:51:12 +09:00
if (typeof host === 'string') {
2018-03-31 19:55:00 +09:00
try {
user = await resolveRemoteUser(username, host, cursorOption);
2018-04-05 18:50:52 +09:00
} catch (e) {
console.warn(`failed to resolve remote user: ${e}`);
2018-03-31 19:55:00 +09:00
return rej('failed to resolve remote user');
2017-02-22 13:08:33 +09:00
}
2018-03-27 16:51:12 +09:00
} else {
const q = userId !== undefined
? { _id: userId }
2018-03-29 14:48:47 +09:00
: { usernameLower: username.toLowerCase(), host: null };
2016-12-29 07:49:51 +09:00
2018-03-31 19:55:00 +09:00
user = await User.findOne(q, cursorOption);
2018-03-27 16:51:12 +09:00
if (user === null) {
return rej('user not found');
}
2016-12-29 07:49:51 +09:00
}
// Send response
2018-02-02 08:21:30 +09:00
res(await pack(user, me, {
2016-12-29 07:49:51 +09:00
detail: true
}));
});