2017-10-30 08:30:32 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
2018-03-29 11:32:18 +00:00
|
|
|
import Channel from '../../../../models/channel';
|
|
|
|
import Watching from '../../../../models/channel-watching';
|
|
|
|
import { pack } from '../../../../models/channel';
|
2017-10-30 08:30:32 +00:00
|
|
|
|
|
|
|
/**
|
2017-10-31 12:42:11 +00:00
|
|
|
* Create a channel
|
2017-10-30 08:30:32 +00:00
|
|
|
*/
|
|
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'title' parameter
|
|
|
|
const [title, titleErr] = $(params.title).string().range(1, 100).$;
|
|
|
|
if (titleErr) return rej('invalid title param');
|
|
|
|
|
2017-10-31 12:42:11 +00:00
|
|
|
// Create a channel
|
|
|
|
const channel = await Channel.insert({
|
2018-03-29 05:48:47 +00:00
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user._id,
|
2017-10-31 16:38:19 +00:00
|
|
|
title: title,
|
2017-11-01 10:33:08 +00:00
|
|
|
index: 0,
|
2018-03-29 05:48:47 +00:00
|
|
|
watchingCount: 1
|
2017-10-30 08:30:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
2018-02-01 23:21:30 +00:00
|
|
|
res(await pack(channel));
|
2017-11-01 10:33:08 +00:00
|
|
|
|
|
|
|
// Create Watching
|
|
|
|
await Watching.insert({
|
2018-03-29 05:48:47 +00:00
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user._id,
|
|
|
|
channelId: channel._id
|
2017-11-01 10:33:08 +00:00
|
|
|
});
|
2017-10-30 08:30:32 +00:00
|
|
|
});
|