You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import * as Sequelize from 'sequelize'
|
|||
import { VideoChannelCreate } from '@peertube/peertube-models'
|
|||
import { VideoChannelModel } from '../models/video/video-channel.js'
|
|||
import { VideoModel } from '../models/video/video.js'
|
|||
import { MAccountId, MChannelId } from '../types/models/index.js'
|
|||
import { getLocalVideoChannelActivityPubUrl } from './activitypub/url.js'
|
|||
import { federateVideoIfNeeded } from './activitypub/videos/index.js'
|
|||
import { buildActorInstance } from './local-actor.js'
|
|||
|
|||
async function createLocalVideoChannelWithoutKeys (videoChannelInfo: VideoChannelCreate, account: MAccountId, t: Sequelize.Transaction) {
|
|||
const url = getLocalVideoChannelActivityPubUrl(videoChannelInfo.name)
|
|||
const actorInstance = buildActorInstance('Group', url, videoChannelInfo.name)
|
|||
|
|||
const actorInstanceCreated = await actorInstance.save({ transaction: t })
|
|||
|
|||
const videoChannelData = {
|
|||
name: videoChannelInfo.displayName,
|
|||
description: videoChannelInfo.description,
|
|||
support: videoChannelInfo.support,
|
|||
accountId: account.id,
|
|||
actorId: actorInstanceCreated.id
|
|||
}
|
|||
|
|||
const videoChannel = new VideoChannelModel(videoChannelData)
|
|||
|
|||
const options = { transaction: t }
|
|||
const videoChannelCreated = await videoChannel.save(options)
|
|||
|
|||
videoChannelCreated.Actor = actorInstanceCreated
|
|||
|
|||
// No need to send this empty video channel to followers
|
|||
return videoChannelCreated
|
|||
}
|
|||
|
|||
async function federateAllVideosOfChannel (videoChannel: MChannelId) {
|
|||
const videoIds = await VideoModel.getAllIdsFromChannel(videoChannel)
|
|||
|
|||
for (const videoId of videoIds) {
|
|||
const video = await VideoModel.loadFull(videoId)
|
|||
|
|||
await federateVideoIfNeeded(video, false)
|
|||
}
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
export {
|
|||
createLocalVideoChannelWithoutKeys,
|
|||
federateAllVideosOfChannel
|
|||
}
|