1
0
Fork 0
peertube/server/lib/video-channel.ts

51 lines
1.6 KiB
TypeScript

import * as Sequelize from 'sequelize'
import { addVideoChannelToFriends } from './friends'
import { database as db } from '../initializers'
import { logger } from '../helpers'
import { AuthorInstance } from '../models'
import { VideoChannelCreate } from '../../shared/models'
async function createVideoChannel (videoChannelInfo: VideoChannelCreate, author: AuthorInstance, t: Sequelize.Transaction) {
const videoChannelData = {
name: videoChannelInfo.name,
description: videoChannelInfo.description,
remote: false,
authorId: author.id
}
const videoChannel = db.VideoChannel.build(videoChannelData)
const options = { transaction: t }
const videoChannelCreated = await videoChannel.save(options)
// Do not forget to add Author information to the created video channel
videoChannelCreated.Author = author
const remoteVideoChannel = videoChannelCreated.toAddRemoteJSON()
// Now we'll add the video channel's meta data to our friends
await addVideoChannelToFriends(remoteVideoChannel, t)
return videoChannelCreated
}
async function fetchVideoChannelByHostAndUUID (podHost: string, uuid: string, t: Sequelize.Transaction) {
try {
const videoChannel = await db.VideoChannel.loadByHostAndUUID(podHost, uuid, t)
if (!videoChannel) throw new Error('Video channel not found')
return videoChannel
} catch (err) {
logger.error('Cannot load video channel from host and uuid.', { error: err.stack, podHost, uuid })
throw err
}
}
// ---------------------------------------------------------------------------
export {
createVideoChannel,
fetchVideoChannelByHostAndUUID
}