mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import express from 'express'
 | |
| import { createAnyReqFiles } from '@server/helpers/express-utils'
 | |
| import { MIMETYPES } from '@server/initializers/constants'
 | |
| import { JobQueue } from '@server/lib/job-queue'
 | |
| import { buildTaskFileFieldname, getTaskFile } from '@server/lib/video-studio'
 | |
| import {
 | |
|   HttpStatusCode,
 | |
|   VideoState,
 | |
|   VideoStudioCreateEdition,
 | |
|   VideoStudioTask,
 | |
|   VideoStudioTaskCut,
 | |
|   VideoStudioTaskIntro,
 | |
|   VideoStudioTaskOutro,
 | |
|   VideoStudioTaskPayload,
 | |
|   VideoStudioTaskWatermark
 | |
| } from '@shared/models'
 | |
| import { asyncMiddleware, authenticate, videoStudioAddEditionValidator } from '../../../middlewares'
 | |
| 
 | |
| const studioRouter = express.Router()
 | |
| 
 | |
| const tasksFiles = createAnyReqFiles(
 | |
|   MIMETYPES.VIDEO.MIMETYPE_EXT,
 | |
|   (req: express.Request, file: Express.Multer.File, cb: (err: Error, result?: boolean) => void) => {
 | |
|     const body = req.body as VideoStudioCreateEdition
 | |
| 
 | |
|     // Fetch array element
 | |
|     const matches = file.fieldname.match(/tasks\[(\d+)\]/)
 | |
|     if (!matches) return cb(new Error('Cannot find array element indice for ' + file.fieldname))
 | |
| 
 | |
|     const indice = parseInt(matches[1])
 | |
|     const task = body.tasks[indice]
 | |
| 
 | |
|     if (!task) return cb(new Error('Cannot find array element of indice ' + indice + ' for ' + file.fieldname))
 | |
| 
 | |
|     if (
 | |
|       [ 'add-intro', 'add-outro', 'add-watermark' ].includes(task.name) &&
 | |
|       file.fieldname === buildTaskFileFieldname(indice)
 | |
|     ) {
 | |
|       return cb(null, true)
 | |
|     }
 | |
| 
 | |
|     return cb(null, false)
 | |
|   }
 | |
| )
 | |
| 
 | |
| studioRouter.post('/:videoId/studio/edit',
 | |
|   authenticate,
 | |
|   tasksFiles,
 | |
|   asyncMiddleware(videoStudioAddEditionValidator),
 | |
|   asyncMiddleware(createEditionTasks)
 | |
| )
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| export {
 | |
|   studioRouter
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| async function createEditionTasks (req: express.Request, res: express.Response) {
 | |
|   const files = req.files as Express.Multer.File[]
 | |
|   const body = req.body as VideoStudioCreateEdition
 | |
|   const video = res.locals.videoAll
 | |
| 
 | |
|   video.state = VideoState.TO_EDIT
 | |
|   await video.save()
 | |
| 
 | |
|   const payload = {
 | |
|     videoUUID: video.uuid,
 | |
|     tasks: body.tasks.map((t, i) => buildTaskPayload(t, i, files))
 | |
|   }
 | |
| 
 | |
|   JobQueue.Instance.createJob({ type: 'video-studio-edition', payload })
 | |
| 
 | |
|   return res.sendStatus(HttpStatusCode.NO_CONTENT_204)
 | |
| }
 | |
| 
 | |
| const taskPayloadBuilders: {
 | |
|   [id in VideoStudioTask['name']]: (task: VideoStudioTask, indice?: number, files?: Express.Multer.File[]) => VideoStudioTaskPayload
 | |
| } = {
 | |
|   'add-intro': buildIntroOutroTask,
 | |
|   'add-outro': buildIntroOutroTask,
 | |
|   'cut': buildCutTask,
 | |
|   'add-watermark': buildWatermarkTask
 | |
| }
 | |
| 
 | |
| function buildTaskPayload (task: VideoStudioTask, indice: number, files: Express.Multer.File[]): VideoStudioTaskPayload {
 | |
|   return taskPayloadBuilders[task.name](task, indice, files)
 | |
| }
 | |
| 
 | |
| function buildIntroOutroTask (task: VideoStudioTaskIntro | VideoStudioTaskOutro, indice: number, files: Express.Multer.File[]) {
 | |
|   return {
 | |
|     name: task.name,
 | |
|     options: {
 | |
|       file: getTaskFile(files, indice).path
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| function buildCutTask (task: VideoStudioTaskCut) {
 | |
|   return {
 | |
|     name: task.name,
 | |
|     options: {
 | |
|       start: task.options.start,
 | |
|       end: task.options.end
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| function buildWatermarkTask (task: VideoStudioTaskWatermark, indice: number, files: Express.Multer.File[]) {
 | |
|   return {
 | |
|     name: task.name,
 | |
|     options: {
 | |
|       file: getTaskFile(files, indice).path
 | |
|     }
 | |
|   }
 | |
| }
 |