monkeeShark/src/server/api/endpoints/channels/create.ts

40 lines
849 B
TypeScript
Raw Normal View History

2017-10-30 08:30:32 +00:00
/**
* Module dependencies
*/
import $ from 'cafy';
2017-10-31 13:35:31 +00:00
import Channel from '../../models/channel';
2017-11-01 10:33:08 +00:00
import Watching from '../../models/channel-watching';
2018-02-01 23:21:30 +00:00
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
*
* @param {any} params
* @param {any} user
* @return {Promise<any>}
*/
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({
2017-10-30 08:30:32 +00:00
created_at: new Date(),
user_id: user._id,
2017-10-31 16:38:19 +00:00
title: title,
2017-11-01 10:33:08 +00:00
index: 0,
watching_count: 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({
created_at: new Date(),
user_id: user._id,
channel_id: channel._id
});
2017-10-30 08:30:32 +00:00
});