2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
2020-09-17 09:20:52 +02:00
|
|
|
import { createReqFiles } from '@server/helpers/express-utils'
|
2021-06-28 17:30:59 +02:00
|
|
|
import { buildUUID, uuidToShort } from '@server/helpers/uuid'
|
2020-09-17 09:20:52 +02:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
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'
|
2020-10-26 16:44:23 +01:00
|
|
|
import { videoLiveAddValidator, videoLiveGetValidator, videoLiveUpdateValidator } from '@server/middlewares/validators/videos/video-live'
|
2020-09-17 09:20:52 +02:00
|
|
|
import { VideoLiveModel } from '@server/models/video/video-live'
|
|
|
|
import { MVideoDetails, MVideoFullLight } from '@server/types/models'
|
2020-10-26 16:44:23 +01:00
|
|
|
import { LiveVideoCreate, LiveVideoUpdate, VideoState } from '../../../../shared'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from '../../../../shared/models/http/http-error-codes'
|
2020-09-17 09:20:52 +02:00
|
|
|
import { logger } from '../../../helpers/logger'
|
|
|
|
import { sequelizeTypescript } from '../../../initializers/database'
|
2021-06-04 09:19:01 +02:00
|
|
|
import { updateVideoMiniatureFromExisting } from '../../../lib/thumbnail'
|
2020-09-17 09:20:52 +02:00
|
|
|
import { asyncMiddleware, asyncRetryTransactionMiddleware, authenticate } from '../../../middlewares'
|
|
|
|
import { VideoModel } from '../../../models/video/video'
|
|
|
|
|
|
|
|
const liveRouter = express.Router()
|
|
|
|
|
|
|
|
const reqVideoFileLive = createReqFiles(
|
|
|
|
[ 'thumbnailfile', 'previewfile' ],
|
|
|
|
MIMETYPES.IMAGE.MIMETYPE_EXT,
|
|
|
|
{
|
|
|
|
thumbnailfile: CONFIG.STORAGE.TMP_DIR,
|
|
|
|
previewfile: CONFIG.STORAGE.TMP_DIR
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
liveRouter.post('/live',
|
|
|
|
authenticate,
|
|
|
|
reqVideoFileLive,
|
|
|
|
asyncMiddleware(videoLiveAddValidator),
|
|
|
|
asyncRetryTransactionMiddleware(addLiveVideo)
|
|
|
|
)
|
|
|
|
|
|
|
|
liveRouter.get('/live/:videoId',
|
|
|
|
authenticate,
|
|
|
|
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)
|
2020-09-17 09:20:52 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
liveRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-08-25 16:14:11 +02:00
|
|
|
function getLiveVideo (req: express.Request, res: express.Response) {
|
2020-09-17 09:20:52 +02:00
|
|
|
const videoLive = res.locals.videoLive
|
|
|
|
|
|
|
|
return res.json(videoLive.toFormattedJSON())
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-10-26 16:44:23 +01:00
|
|
|
videoLive.saveReplay = body.saveReplay || false
|
2020-12-03 14:10:54 +01:00
|
|
|
videoLive.permanentLive = body.permanentLive || false
|
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
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
return res.status(HttpStatusCode.NO_CONTENT_204).end()
|
2020-10-26 16:44:23 +01:00
|
|
|
}
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
async function addLiveVideo (req: express.Request, res: express.Response) {
|
2020-10-26 16:44:23 +01:00
|
|
|
const videoInfo: LiveVideoCreate = req.body
|
2020-09-17 09:20:52 +02:00
|
|
|
|
|
|
|
// Prepare data so we don't block the transaction
|
2020-09-17 10:00:46 +02:00
|
|
|
const videoData = buildLocalVideoFromReq(videoInfo, res.locals.videoChannel.id)
|
2020-09-17 09:20:52 +02:00
|
|
|
videoData.isLive = true
|
2020-09-17 10:00:46 +02:00
|
|
|
videoData.state = VideoState.WAITING_FOR_LIVE
|
|
|
|
videoData.duration = 0
|
2020-09-17 09:20:52 +02:00
|
|
|
|
|
|
|
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 09:20:52 +02:00
|
|
|
|
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
|
2021-06-28 17:30:59 +02:00
|
|
|
videoLive.streamKey = buildUUID()
|
2020-09-17 09:20:52 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
})
|
2020-09-17 09:20:52 +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 09:20:52 +02:00
|
|
|
|
2020-09-17 10:00:46 +02:00
|
|
|
await setVideoTags({ video, tags: videoInfo.tags, transaction: t })
|
2020-09-17 09:20:52 +02:00
|
|
|
|
2020-11-02 15:43:44 +01:00
|
|
|
await federateVideoIfNeeded(videoCreated, true, t)
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
logger.info('Video live %s with uuid %s created.', videoInfo.name, videoCreated.uuid)
|
|
|
|
|
|
|
|
return { videoCreated }
|
|
|
|
})
|
|
|
|
|
2020-11-06 13:59:50 +01:00
|
|
|
Hooks.runAction('action:api.live-video.created', { video: videoCreated })
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
return res.json({
|
|
|
|
video: {
|
|
|
|
id: videoCreated.id,
|
2021-06-28 17:30:59 +02:00
|
|
|
shortUUID: uuidToShort(videoCreated.uuid),
|
2020-09-17 09:20:52 +02:00
|
|
|
uuid: videoCreated.uuid
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|