1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/server/api/controllers/users/show.js

48 lines
787 B
JavaScript
Raw Normal View History

const Errors = {
USER_NOT_FOUND: {
userNotFound: 'User not found',
},
};
const CURRENT_USER_ID = 'me';
2019-08-31 04:07:25 +05:00
module.exports = {
inputs: {
id: {
type: 'string',
regex: /^[0-9]+|me$/,
required: true,
},
2023-01-05 15:03:06 +01:00
subscribe: {
type: 'boolean',
},
},
exits: {
boardNotFound: {
responseType: 'notFound',
},
},
2019-08-31 04:07:25 +05:00
async fn(inputs) {
let user;
if (inputs.id === CURRENT_USER_ID) {
({ currentUser: user } = this.req);
2019-08-31 04:07:25 +05:00
2023-01-05 15:03:06 +01:00
if (inputs.subscribe && this.req.isSocket) {
sails.sockets.join(this.req, `user:${user.id}`);
}
} else {
user = await sails.helpers.users.getOne(inputs.id);
if (!user) {
throw Errors.USER_NOT_FOUND;
}
}
2019-08-31 04:07:25 +05:00
return {
item: user,
};
},
2019-08-31 04:07:25 +05:00
};