X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fvideo-channel.ts;h=600316cda66019008e211cf4e8e41551901ae37c;hb=fd4484f19eae8b0a0c30d5d30e98880c8708516a;hp=a6dd4d061ba3c1a571e571b9a288e32a9de36a03;hpb=e4f97babf701481b55cc10fb3448feab5f97c867;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/video-channel.ts b/server/lib/video-channel.ts index a6dd4d061..600316cda 100644 --- a/server/lib/video-channel.ts +++ b/server/lib/video-channel.ts @@ -1,50 +1,41 @@ import * as Sequelize from 'sequelize' - -import { addVideoChannelToFriends } from './friends' -import { database as db } from '../initializers' -import { logger } from '../helpers' -import { AccountInstance } from '../models' +import * as uuidv4 from 'uuid/v4' import { VideoChannelCreate } from '../../shared/models' +import { AccountModel } from '../models/account/account' +import { VideoChannelModel } from '../models/video/video-channel' +import { buildActorInstance, getVideoChannelActivityPubUrl } from './activitypub' + +async function createVideoChannel (videoChannelInfo: VideoChannelCreate, account: AccountModel, t: Sequelize.Transaction) { + const uuid = uuidv4() + const url = getVideoChannelActivityPubUrl(uuid) + // We use the name as uuid + const actorInstance = buildActorInstance('Group', url, uuid, uuid) + + const actorInstanceCreated = await actorInstance.save({ transaction: t }) -async function createVideoChannel (videoChannelInfo: VideoChannelCreate, account: AccountInstance, t: Sequelize.Transaction) { const videoChannelData = { - name: videoChannelInfo.name, + name: videoChannelInfo.displayName, description: videoChannelInfo.description, - remote: false, - authorId: account.id + support: videoChannelInfo.support, + accountId: account.id, + actorId: actorInstanceCreated.id } - const videoChannel = db.VideoChannel.build(videoChannelData) - const options = { transaction: t } + const videoChannel = VideoChannelModel.build(videoChannelData) + const options = { transaction: t } const videoChannelCreated = await videoChannel.save(options) - // Do not forget to add Account information to the created video channel + // Do not forget to add Account/Actor information to the created video channel videoChannelCreated.Account = account + videoChannelCreated.Actor = actorInstanceCreated - const remoteVideoChannel = videoChannelCreated.toAddRemoteJSON() - - // Now we'll add the video channel's meta data to our friends - await addVideoChannelToFriends(remoteVideoChannel, t) - + // No need to seed this empty video channel to followers return videoChannelCreated } -async function fetchVideoChannelByHostAndUUID (podHost: string, uuid: string, t: Sequelize.Transaction) { - try { - const videoChannel = await db.VideoChannel.loadByHostAndUUID(podHost, uuid, t) - if (!videoChannel) throw new Error('Video channel not found') - - return videoChannel - } catch (err) { - logger.error('Cannot load video channel from host and uuid.', { error: err.stack, podHost, uuid }) - throw err - } -} - // --------------------------------------------------------------------------- export { - createVideoChannel, - fetchVideoChannelByHostAndUUID + createVideoChannel }