mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
server/server -> server/core
This commit is contained in:
parent
114327d4ce
commit
5a3d0650c9
838 changed files with 111 additions and 111 deletions
50
server/core/lib/video-channel.ts
Normal file
50
server/core/lib/video-channel.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
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 createLocalVideoChannel (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 {
|
||||
createLocalVideoChannel,
|
||||
federateAllVideosOfChannel
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue