2017-10-31 15:11:22 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-04-24 11:13:06 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../../cafy-id';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Channel, { IChannel, pack } from '../../../../models/channel';
|
2017-10-31 15:11:22 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a channel
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'channelId' parameter
|
2018-04-24 11:13:06 +02:00
|
|
|
const [channelId, channelIdErr] = $(params.channelId).type(ID).$;
|
2018-03-29 07:48:47 +02:00
|
|
|
if (channelIdErr) return rej('invalid channelId param');
|
2017-10-31 15:11:22 +01:00
|
|
|
|
|
|
|
// Fetch channel
|
|
|
|
const channel: IChannel = await Channel.findOne({
|
|
|
|
_id: channelId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (channel === null) {
|
|
|
|
return rej('channel not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize
|
2018-02-02 00:21:30 +01:00
|
|
|
res(await pack(channel, user));
|
2017-10-31 15:11:22 +01:00
|
|
|
});
|