PeerTube/server/controllers/api/videos/live.ts

186 lines
6.4 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express from 'express'
2022-03-04 13:40:02 +01:00
import { exists } from '@server/helpers/custom-validators/misc'
import { createReqFiles } from '@server/helpers/express-utils'
2022-05-03 11:38:07 +02:00
import { getFormattedObjects } from '@server/helpers/utils'
import { ASSETS_PATH, MIMETYPES } from '@server/initializers/constants'
2020-11-20 11:21:08 +01:00
import { getLocalVideoActivityPubUrl } from '@server/lib/activitypub/url'
2020-11-02 15:43:44 +01:00
import { federateVideoIfNeeded } from '@server/lib/activitypub/videos'
2020-11-06 13:59:50 +01:00
import { Hooks } from '@server/lib/plugins/hooks'
2020-09-17 10:00:46 +02:00
import { buildLocalVideoFromReq, buildVideoThumbnailsFromReq, setVideoTags } from '@server/lib/video'
2022-05-03 11:38:07 +02:00
import {
videoLiveAddValidator,
videoLiveFindReplaySessionValidator,
videoLiveGetValidator,
videoLiveListSessionsValidator,
videoLiveUpdateValidator
} from '@server/middlewares/validators/videos/video-live'
import { VideoLiveModel } from '@server/models/video/video-live'
2022-05-03 11:38:07 +02:00
import { VideoLiveSessionModel } from '@server/models/video/video-live-session'
import { MVideoDetails, MVideoFullLight } from '@server/types/models'
import { buildUUID, uuidToShort } from '@shared/extra-utils'
2022-04-22 09:50:20 +02:00
import { HttpStatusCode, LiveVideoCreate, LiveVideoLatencyMode, LiveVideoUpdate, UserRight, VideoState } from '@shared/models'
import { logger } from '../../../helpers/logger'
import { sequelizeTypescript } from '../../../initializers/database'
2021-06-04 09:19:01 +02:00
import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail'
2022-04-22 09:50:20 +02:00
import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate, optionalAuthenticate } from '../../../middlewares'
import { VideoModel } from '../../../models/video/video'
const liveRouter = express.Router()
const reqVideoFileLive = createReqFiles([ 'thumbnailfile', 'previewfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT)
liveRouter.post('/live',
authenticate,
reqVideoFileLive,
asyncMiddleware(videoLiveAddValidator),
asyncRetryTransactionMiddleware(addLiveVideo)
)
2022-05-03 11:38:07 +02:00
liveRouter.get('/live/:videoId/sessions',
authenticate,
asyncMiddleware(videoLiveGetValidator),
videoLiveListSessionsValidator,
asyncMiddleware(getLiveVideoSessions)
)
liveRouter.get('/live/:videoId',
2022-04-22 09:50:20 +02:00
optionalAuthenticate,
asyncMiddleware(videoLiveGetValidator),
2021-08-25 16:14:11 +02:00
getLiveVideo
2020-10-26 16:44:23 +01:00
)
liveRouter.put('/live/:videoId',
authenticate,
asyncMiddleware(videoLiveGetValidator),
videoLiveUpdateValidator,
asyncRetryTransactionMiddleware(updateLiveVideo)
)
2022-05-03 11:38:07 +02:00
liveRouter.get('/:videoId/live-session',
asyncMiddleware(videoLiveFindReplaySessionValidator),
getLiveReplaySession
)
// ---------------------------------------------------------------------------
export {
liveRouter
}
// ---------------------------------------------------------------------------
2021-08-25 16:14:11 +02:00
function getLiveVideo (req: express.Request, res: express.Response) {
const videoLive = res.locals.videoLive
2022-04-22 09:50:20 +02:00
return res.json(videoLive.toFormattedJSON(canSeePrivateLiveInformation(res)))
}
2022-05-03 11:38:07 +02:00
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
const data = await VideoLiveSessionModel.listSessionsOfLiveForAPI({ videoId: videoLive.videoId })
return res.json(getFormattedObjects(data, data.length))
}
2022-04-22 09:50:20 +02:00
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
}
2020-10-26 16:44:23 +01:00
async function updateLiveVideo (req: express.Request, res: express.Response) {
const body: LiveVideoUpdate = req.body
2020-11-02 15:43:44 +01:00
const video = res.locals.videoAll
2020-10-26 16:44:23 +01:00
const videoLive = res.locals.videoLive
2020-12-03 14:10:54 +01:00
2022-03-04 13:40:02 +01:00
if (exists(body.saveReplay)) videoLive.saveReplay = body.saveReplay
if (exists(body.permanentLive)) videoLive.permanentLive = body.permanentLive
if (exists(body.latencyMode)) videoLive.latencyMode = body.latencyMode
2020-10-26 16:44:23 +01:00
2020-11-02 15:43:44 +01:00
video.VideoLive = await videoLive.save()
await federateVideoIfNeeded(video, false)
2020-10-26 16:44:23 +01:00
return res.status(HttpStatusCode.NO_CONTENT_204).end()
2020-10-26 16:44:23 +01:00
}
async function addLiveVideo (req: express.Request, res: express.Response) {
2020-10-26 16:44:23 +01:00
const videoInfo: LiveVideoCreate = req.body
// Prepare data so we don't block the transaction
let videoData = buildLocalVideoFromReq(videoInfo, res.locals.videoChannel.id)
videoData = await Hooks.wrapObject(videoData, 'filter:api.video.live.video-attribute.result')
videoData.isLive = true
2020-09-17 10:00:46 +02:00
videoData.state = VideoState.WAITING_FOR_LIVE
videoData.duration = 0
const video = new VideoModel(videoData) as MVideoDetails
2020-11-20 11:21:08 +01:00
video.url = getLocalVideoActivityPubUrl(video) // We use the UUID, so set the URL after building the object
2020-09-17 10:00:46 +02:00
const videoLive = new VideoLiveModel()
2020-10-26 16:44:23 +01:00
videoLive.saveReplay = videoInfo.saveReplay || false
2020-12-03 14:10:54 +01:00
videoLive.permanentLive = videoInfo.permanentLive || false
2022-03-04 13:40:02 +01:00
videoLive.latencyMode = videoInfo.latencyMode || LiveVideoLatencyMode.DEFAULT
videoLive.streamKey = buildUUID()
2020-09-17 10:00:46 +02:00
const [ thumbnailModel, previewModel ] = await buildVideoThumbnailsFromReq({
video,
files: req.files,
fallback: type => {
2021-06-04 09:19:01 +02:00
return updateVideoMiniatureFromExisting({
2020-10-26 16:44:23 +01:00
inputPath: ASSETS_PATH.DEFAULT_LIVE_BACKGROUND,
video,
type,
automaticallyGenerated: true,
keepOriginal: true
})
2020-09-17 10:00:46 +02:00
}
})
const { videoCreated } = await sequelizeTypescript.transaction(async t => {
const sequelizeOptions = { transaction: t }
const videoCreated = await video.save(sequelizeOptions) as MVideoFullLight
if (thumbnailModel) await videoCreated.addAndSaveThumbnail(thumbnailModel, t)
if (previewModel) await videoCreated.addAndSaveThumbnail(previewModel, t)
// Do not forget to add video channel information to the created video
videoCreated.VideoChannel = res.locals.videoChannel
videoLive.videoId = videoCreated.id
2020-11-02 15:43:44 +01:00
videoCreated.VideoLive = await videoLive.save(sequelizeOptions)
2020-09-17 10:00:46 +02:00
await setVideoTags({ video, tags: videoInfo.tags, transaction: t })
2020-11-02 15:43:44 +01:00
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 })
2020-11-06 13:59:50 +01:00
return res.json({
video: {
id: videoCreated.id,
shortUUID: uuidToShort(videoCreated.uuid),
uuid: videoCreated.uuid
}
})
}