X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fvideo-channel.ts;h=d57e832fe95b6a150c7f4ab6fd733a77a22b8889;hb=8ee37c5f38b0f9b7e97239197d5590109c163250;hp=8928dda1289a540aa8d332974a9253859defb4e5;hpb=26d6bf6533023326fa017812cf31bbe20c752d36;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/video-channel.ts b/server/lib/video-channel.ts index 8928dda12..d57e832fe 100644 --- a/server/lib/video-channel.ts +++ b/server/lib/video-channel.ts @@ -1,23 +1,15 @@ import * as Sequelize from 'sequelize' -import { v4 as uuidv4 } from 'uuid' import { VideoChannelCreate } from '../../shared/models' +import { VideoModel } from '../models/video/video' import { VideoChannelModel } from '../models/video/video-channel' +import { MAccountId, MChannelId } from '../types/models' import { buildActorInstance } from './activitypub/actor' -import { VideoModel } from '../models/video/video' -import { MAccountId, MChannelDefault, MChannelId } from '../types/models' -import { getVideoChannelActivityPubUrl } from './activitypub/url' +import { getLocalVideoChannelActivityPubUrl } from './activitypub/url' import { federateVideoIfNeeded } from './activitypub/videos' -type CustomVideoChannelModelAccount = MChannelDefault & { Account?: T } - -async function createLocalVideoChannel ( - videoChannelInfo: VideoChannelCreate, - account: T, - t: Sequelize.Transaction -): Promise> { - const uuid = uuidv4() - const url = getVideoChannelActivityPubUrl(videoChannelInfo.name) - const actorInstance = buildActorInstance('Group', url, videoChannelInfo.name, uuid) +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 }) @@ -32,13 +24,11 @@ async function createLocalVideoChannel ( const videoChannel = new VideoChannelModel(videoChannelData) const options = { transaction: t } - const videoChannelCreated: CustomVideoChannelModelAccount = await videoChannel.save(options) as MChannelDefault + const videoChannelCreated = await videoChannel.save(options) - // Do not forget to add Account/Actor information to the created video channel - videoChannelCreated.Account = account videoChannelCreated.Actor = actorInstanceCreated - // No need to seed this empty video channel to followers + // No need to send this empty video channel to followers return videoChannelCreated }