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

61 lines
2.2 KiB
TypeScript
Raw Normal View History

2017-10-24 17:41:09 +00:00
import * as Sequelize from 'sequelize'
2020-02-28 15:03:39 +00:00
import { v4 as uuidv4 } from 'uuid'
2017-11-17 14:52:26 +00:00
import { VideoChannelCreate } from '../../shared/models'
import { VideoModel } from '../models/video/video'
2020-11-20 10:21:08 +00:00
import { VideoChannelModel } from '../models/video/video-channel'
2020-06-18 08:45:25 +00:00
import { MAccountId, MChannelDefault, MChannelId } from '../types/models'
2020-11-20 10:21:08 +00:00
import { buildActorInstance } from './activitypub/actor'
import { getLocalVideoChannelActivityPubUrl } from './activitypub/url'
2020-04-22 14:07:04 +00:00
import { federateVideoIfNeeded } from './activitypub/videos'
2017-10-24 17:41:09 +00:00
2020-01-31 15:56:52 +00:00
type CustomVideoChannelModelAccount <T extends MAccountId> = MChannelDefault & { Account?: T }
2019-08-15 09:53:26 +00:00
2019-08-20 17:05:31 +00:00
async function createLocalVideoChannel <T extends MAccountId> (
2019-08-15 09:53:26 +00:00
videoChannelInfo: VideoChannelCreate,
account: T,
t: Sequelize.Transaction
): Promise<CustomVideoChannelModelAccount<T>> {
2017-12-14 16:38:41 +00:00
const uuid = uuidv4()
2020-11-20 10:21:08 +00:00
const url = getLocalVideoChannelActivityPubUrl(videoChannelInfo.name)
2018-08-17 13:45:42 +00:00
const actorInstance = buildActorInstance('Group', url, videoChannelInfo.name, uuid)
2017-12-14 16:38:41 +00:00
const actorInstanceCreated = await actorInstance.save({ transaction: t })
2017-10-24 17:41:09 +00:00
const videoChannelData = {
2018-04-26 14:11:38 +00:00
name: videoChannelInfo.displayName,
2017-10-24 17:41:09 +00:00
description: videoChannelInfo.description,
support: videoChannelInfo.support,
2017-12-14 16:38:41 +00:00
accountId: account.id,
actorId: actorInstanceCreated.id
2017-10-24 17:41:09 +00:00
}
2019-08-15 09:53:26 +00:00
const videoChannel = new VideoChannelModel(videoChannelData)
2017-11-14 09:57:56 +00:00
2017-10-24 17:41:09 +00:00
const options = { transaction: t }
2019-08-20 17:05:31 +00:00
const videoChannelCreated: CustomVideoChannelModelAccount<T> = await videoChannel.save(options) as MChannelDefault
2017-10-25 09:55:06 +00:00
2017-12-14 16:38:41 +00:00
// Do not forget to add Account/Actor information to the created video channel
2017-11-09 16:51:58 +00:00
videoChannelCreated.Account = account
2017-12-14 16:38:41 +00:00
videoChannelCreated.Actor = actorInstanceCreated
2017-10-25 09:55:06 +00:00
2017-11-16 17:40:50 +00:00
// No need to seed this empty video channel to followers
2017-10-25 09:55:06 +00:00
return videoChannelCreated
}
2019-08-15 09:53:26 +00:00
async function federateAllVideosOfChannel (videoChannel: MChannelId) {
const videoIds = await VideoModel.getAllIdsFromChannel(videoChannel)
for (const videoId of videoIds) {
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
await federateVideoIfNeeded(video, false)
}
}
2017-10-24 17:41:09 +00:00
// ---------------------------------------------------------------------------
export {
2019-08-20 17:05:31 +00:00
createLocalVideoChannel,
federateAllVideosOfChannel
2017-10-24 17:41:09 +00:00
}