2017-10-24 19:41:09 +02:00
|
|
|
import * as Sequelize from 'sequelize'
|
2023-07-31 14:34:36 +02:00
|
|
|
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'
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2024-02-14 09:21:53 +01:00
|
|
|
async function createLocalVideoChannelWithoutKeys (videoChannelInfo: VideoChannelCreate, account: MAccountId, t: Sequelize.Transaction) {
|
2020-11-20 11:21:08 +01:00
|
|
|
const url = getLocalVideoChannelActivityPubUrl(videoChannelInfo.name)
|
2021-05-12 14:09:04 +02:00
|
|
|
const actorInstance = buildActorInstance('Group', url, videoChannelInfo.name)
|
2017-12-14 17:38:41 +01:00
|
|
|
|
|
|
|
const actorInstanceCreated = await actorInstance.save({ transaction: t })
|
|
|
|
|
2017-10-24 19:41:09 +02:00
|
|
|
const videoChannelData = {
|
2018-04-26 16:11:38 +02:00
|
|
|
name: videoChannelInfo.displayName,
|
2017-10-24 19:41:09 +02:00
|
|
|
description: videoChannelInfo.description,
|
2018-02-15 14:46:26 +01:00
|
|
|
support: videoChannelInfo.support,
|
2017-12-14 17:38:41 +01:00
|
|
|
accountId: account.id,
|
|
|
|
actorId: actorInstanceCreated.id
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
const videoChannel = new VideoChannelModel(videoChannelData)
|
2017-11-14 10:57:56 +01:00
|
|
|
|
2017-10-24 19:41:09 +02:00
|
|
|
const options = { transaction: t }
|
2021-04-06 17:01:35 +02:00
|
|
|
const videoChannelCreated = await videoChannel.save(options)
|
2017-10-25 11:55:06 +02:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
videoChannelCreated.Actor = actorInstanceCreated
|
2017-10-25 11:55:06 +02:00
|
|
|
|
2021-04-06 17:01:35 +02:00
|
|
|
// No need to send this empty video channel to followers
|
2017-10-25 11:55:06 +02:00
|
|
|
return videoChannelCreated
|
|
|
|
}
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
async function federateAllVideosOfChannel (videoChannel: MChannelId) {
|
2019-05-31 16:30:11 +02:00
|
|
|
const videoIds = await VideoModel.getAllIdsFromChannel(videoChannel)
|
|
|
|
|
|
|
|
for (const videoId of videoIds) {
|
2022-06-28 14:57:51 +02:00
|
|
|
const video = await VideoModel.loadFull(videoId)
|
2019-05-31 16:30:11 +02:00
|
|
|
|
|
|
|
await federateVideoIfNeeded(video, false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 19:41:09 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2024-02-14 09:21:53 +01:00
|
|
|
createLocalVideoChannelWithoutKeys,
|
2019-05-31 16:30:11 +02:00
|
|
|
federateAllVideosOfChannel
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|