summaryrefslogtreecommitdiff
path: root/src/api/endpoints/users/show.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
commit0926d5b6da68be6c9375addbd3cec8545185dea7 (patch)
tree7e88d0ba7a3b663844e401071a588f1d0f50e918 /src/api/endpoints/users/show.ts
parentRefactor (diff)
downloadsharkey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.gz
sharkey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.bz2
sharkey-0926d5b6da68be6c9375addbd3cec8545185dea7.zip
wip
Diffstat (limited to 'src/api/endpoints/users/show.ts')
-rw-r--r--src/api/endpoints/users/show.ts51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/api/endpoints/users/show.ts b/src/api/endpoints/users/show.ts
new file mode 100644
index 0000000000..cae4ac0b7f
--- /dev/null
+++ b/src/api/endpoints/users/show.ts
@@ -0,0 +1,51 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import it from '../../it';
+import User from '../../models/user';
+import serialize from '../../serializers/user';
+
+/**
+ * Show a user
+ *
+ * @param {any} params
+ * @param {any} me
+ * @return {Promise<any>}
+ */
+module.exports = (params, me) =>
+ new Promise(async (res, rej) =>
+{
+ // Get 'user_id' parameter
+ const [userId, userIdErr] = it(params.user_id, 'id');
+ if (userIdErr) return rej('invalid user_id param');
+
+ // Get 'username' parameter
+ const [username, usernameErr] = it(params.username, 'string');
+ if (usernameErr) return rej('invalid username param');
+
+ if (userId === null && username === null) {
+ return rej('user_id or username is required');
+ }
+
+ const q = userId != null
+ ? { _id: userId }
+ : { username_lower: username.toLowerCase() } ;
+
+ // Lookup user
+ const user = await User.findOne(q, {
+ fields: {
+ data: false
+ }
+ });
+
+ if (user === null) {
+ return rej('user not found');
+ }
+
+ // Send response
+ res(await serialize(user, me, {
+ detail: true
+ }));
+});