X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fapi%2Fvideos%2Flive.ts;h=de047d4ec3c803658aacc2a326cb6d557433b832;hb=05a60d85997c108d39bcfb14f1ffd4c74f8b1e93;hp=97b135f96b00d6f19d25ea4c4a447ab44d91c6e4;hpb=1ef65f4c034cc53ab5d55417e52d60e1f7fc1ddb;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/api/videos/live.ts b/server/controllers/api/videos/live.ts index 97b135f96..de047d4ec 100644 --- a/server/controllers/api/videos/live.ts +++ b/server/controllers/api/videos/live.ts @@ -1,30 +1,34 @@ -import * as express from 'express' -import { v4 as uuidv4 } from 'uuid' +import express from 'express' +import { exists } from '@server/helpers/custom-validators/misc' import { createReqFiles } from '@server/helpers/express-utils' -import { CONFIG } from '@server/initializers/config' +import { getFormattedObjects } from '@server/helpers/utils' import { ASSETS_PATH, MIMETYPES } from '@server/initializers/constants' -import { getVideoActivityPubUrl } from '@server/lib/activitypub/url' +import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url' +import { federateVideoIfNeeded } from '@server/lib/activitypub/videos' +import { Hooks } from '@server/lib/plugins/hooks' import { buildLocalVideoFromReq, buildVideoThumbnailsFromReq, setVideoTags } from '@server/lib/video' -import { videoLiveAddValidator, videoLiveGetValidator } from '@server/middlewares/validators/videos/video-live' +import { + videoLiveAddValidator, + videoLiveFindReplaySessionValidator, + videoLiveGetValidator, + videoLiveListSessionsValidator, + videoLiveUpdateValidator +} from '@server/middlewares/validators/videos/video-live' import { VideoLiveModel } from '@server/models/video/video-live' -import { MVideoDetails, MVideoFullLight } from '@server/types/models' -import { VideoCreate, VideoState } from '../../../../shared' +import { VideoLiveSessionModel } from '@server/models/video/video-live-session' +import { MVideoDetails, MVideoFullLight, MVideoLive } from '@server/types/models' +import { buildUUID, uuidToShort } from '@shared/extra-utils' +import { HttpStatusCode, LiveVideoCreate, LiveVideoLatencyMode, LiveVideoUpdate, UserRight, VideoState } from '@shared/models' import { logger } from '../../../helpers/logger' import { sequelizeTypescript } from '../../../initializers/database' -import { createVideoMiniatureFromExisting } from '../../../lib/thumbnail' -import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate } from '../../../middlewares' +import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail' +import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, optionalAuthenticate } from '../../../middlewares' import { VideoModel } from '../../../models/video/video' +import { VideoLiveReplaySettingModel } from '@server/models/video/video-live-replay-setting' const liveRouter = express.Router() -const reqVideoFileLive = createReqFiles( - [ 'thumbnailfile', 'previewfile' ], - MIMETYPES.IMAGE.MIMETYPE_EXT, - { - thumbnailfile: CONFIG.STORAGE.TMP_DIR, - previewfile: CONFIG.STORAGE.TMP_DIR - } -) +const reqVideoFileLive = createReqFiles([ 'thumbnailfile', 'previewfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT) liveRouter.post('/live', authenticate, @@ -33,10 +37,29 @@ liveRouter.post('/live', asyncRetryTransactionMiddleware(addLiveVideo) ) +liveRouter.get('/live/:videoId/sessions', + authenticate, + asyncMiddleware(videoLiveGetValidator), + videoLiveListSessionsValidator, + asyncMiddleware(getLiveVideoSessions) +) + liveRouter.get('/live/:videoId', + optionalAuthenticate, + asyncMiddleware(videoLiveGetValidator), + getLiveVideo +) + +liveRouter.put('/live/:videoId', authenticate, asyncMiddleware(videoLiveGetValidator), - asyncRetryTransactionMiddleware(getVideoLive) + videoLiveUpdateValidator, + asyncRetryTransactionMiddleware(updateLiveVideo) +) + +liveRouter.get('/:videoId/live-session', + asyncMiddleware(videoLiveFindReplaySessionValidator), + getLiveReplaySession ) // --------------------------------------------------------------------------- @@ -47,32 +70,108 @@ export { // --------------------------------------------------------------------------- -async function getVideoLive (req: express.Request, res: express.Response) { +function getLiveVideo (req: express.Request, res: express.Response) { + const videoLive = res.locals.videoLive + + return res.json(videoLive.toFormattedJSON(canSeePrivateLiveInformation(res))) +} + +function getLiveReplaySession (req: express.Request, res: express.Response) { + const session = res.locals.videoLiveSession + + return res.json(session.toFormattedJSON()) +} + +async function getLiveVideoSessions (req: express.Request, res: express.Response) { const videoLive = res.locals.videoLive - return res.json(videoLive.toFormattedJSON()) + const data = await VideoLiveSessionModel.listSessionsOfLiveForAPI({ videoId: videoLive.videoId }) + + return res.json(getFormattedObjects(data, data.length)) +} + +function canSeePrivateLiveInformation (res: express.Response) { + const user = res.locals.oauth?.token.User + if (!user) return false + + if (user.hasRight(UserRight.GET_ANY_LIVE)) return true + + const video = res.locals.videoAll + return video.VideoChannel.Account.userId === user.id +} + +async function updateLiveVideo (req: express.Request, res: express.Response) { + const body: LiveVideoUpdate = req.body + + const video = res.locals.videoAll + const videoLive = res.locals.videoLive + + const newReplaySettingModel = await updateReplaySettings(videoLive, body) + if (newReplaySettingModel) videoLive.replaySettingId = newReplaySettingModel.id + else videoLive.replaySettingId = null + + if (exists(body.permanentLive)) videoLive.permanentLive = body.permanentLive + if (exists(body.latencyMode)) videoLive.latencyMode = body.latencyMode + + video.VideoLive = await videoLive.save() + + await federateVideoIfNeeded(video, false) + + return res.status(HttpStatusCode.NO_CONTENT_204).end() +} + +async function updateReplaySettings (videoLive: MVideoLive, body: LiveVideoUpdate) { + if (exists(body.saveReplay)) videoLive.saveReplay = body.saveReplay + + // The live replay is not saved anymore, destroy the old model if it existed + if (!videoLive.saveReplay) { + if (videoLive.replaySettingId) { + await VideoLiveReplaySettingModel.removeSettings(videoLive.replaySettingId) + } + + return undefined + } + + const settingModel = videoLive.replaySettingId + ? await VideoLiveReplaySettingModel.load(videoLive.replaySettingId) + : new VideoLiveReplaySettingModel() + + if (exists(body.replaySettings.privacy)) settingModel.privacy = body.replaySettings.privacy + + return settingModel.save() } async function addLiveVideo (req: express.Request, res: express.Response) { - const videoInfo: VideoCreate = req.body + const videoInfo: LiveVideoCreate = req.body // Prepare data so we don't block the transaction - const videoData = buildLocalVideoFromReq(videoInfo, res.locals.videoChannel.id) + let videoData = buildLocalVideoFromReq(videoInfo, res.locals.videoChannel.id) + videoData = await Hooks.wrapObject(videoData, 'filter:api.video.live.video-attribute.result') + videoData.isLive = true videoData.state = VideoState.WAITING_FOR_LIVE videoData.duration = 0 const video = new VideoModel(videoData) as MVideoDetails - video.url = getVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object + video.url = getLocalVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object const videoLive = new VideoLiveModel() - videoLive.streamKey = uuidv4() + videoLive.saveReplay = videoInfo.saveReplay || false + videoLive.permanentLive = videoInfo.permanentLive || false + videoLive.latencyMode = videoInfo.latencyMode || LiveVideoLatencyMode.DEFAULT + videoLive.streamKey = buildUUID() const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({ video, files: req.files, fallback: type => { - return createVideoMiniatureFromExisting({ inputPath: ASSETS_PATH.DEFAULT_LIVE_BACKGROUND, video, type, automaticallyGenerated: true }) + return updateVideoMiniatureFromExisting({ + inputPath: ASSETS_PATH.DEFAULT_LIVE_BACKGROUND, + video, + type, + automaticallyGenerated: true, + keepOriginal: true + }) } }) @@ -87,19 +186,33 @@ async function addLiveVideo (req: express.Request, res: express.Response) { // Do not forget to add video channel information to the created video videoCreated.VideoChannel = res.locals.videoChannel + if (videoLive.saveReplay) { + const replaySettings = new VideoLiveReplaySettingModel({ + privacy: videoInfo.replaySettings.privacy + }) + await replaySettings.save(sequelizeOptions) + + videoLive.replaySettingId = replaySettings.id + } + videoLive.videoId = videoCreated.id - await videoLive.save(sequelizeOptions) + videoCreated.VideoLive = await videoLive.save(sequelizeOptions) await setVideoTags({ video, tags: videoInfo.tags, transaction: t }) + await federateVideoIfNeeded(videoCreated, true, t) + logger.info('Video live %s with uuid %s created.', videoInfo.name, videoCreated.uuid) return { videoCreated } }) + Hooks.runAction('action:api.live-video.created', { video: videoCreated, req, res }) + return res.json({ video: { id: videoCreated.id, + shortUUID: uuidToShort(videoCreated.uuid), uuid: videoCreated.uuid } })