2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import User from '../../models/user';
|
|
|
|
import serialize from '../../serializers/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a user
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} me
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
module.exports = (params, me) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
// Get 'user_id' parameter
|
|
|
|
let userId = params.user_id;
|
|
|
|
if (userId === undefined || userId === null || userId === '') {
|
|
|
|
userId = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'username' parameter
|
|
|
|
let username = params.username;
|
|
|
|
if (username === undefined || username === null || username === '') {
|
|
|
|
username = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userId === null && username === null) {
|
|
|
|
return rej('user_id or username is required');
|
|
|
|
}
|
|
|
|
|
2017-01-17 22:32:50 +01:00
|
|
|
// Validate id
|
|
|
|
if (userId && !mongo.ObjectID.isValid(userId)) {
|
|
|
|
return rej('incorrect user_id');
|
|
|
|
}
|
|
|
|
|
2017-02-22 05:08:33 +01:00
|
|
|
const q = userId != null
|
|
|
|
? { _id: new mongo.ObjectID(userId) }
|
|
|
|
: { username_lower: username.toLowerCase() } ;
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Lookup user
|
2017-02-22 05:08:33 +01:00
|
|
|
const user = await User.findOne(q, {
|
|
|
|
fields: {
|
|
|
|
data: false
|
|
|
|
}
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return rej('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send response
|
|
|
|
res(await serialize(user, me, {
|
|
|
|
detail: true
|
|
|
|
}));
|
|
|
|
});
|