2017-06-10 16:15:25 -04:00
|
|
|
import 'express-validator'
|
|
|
|
import * as express from 'express'
|
2017-07-11 10:01:56 -04:00
|
|
|
import * as Promise from 'bluebird'
|
|
|
|
import * as validator from 'validator'
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
import { database as db } from '../../initializers/database'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { checkErrors } from './utils'
|
|
|
|
import { CONSTRAINTS_FIELDS, SEARCHABLE_COLUMNS } from '../../initializers'
|
|
|
|
import { logger, isVideoDurationValid } from '../../helpers'
|
2017-07-11 10:01:56 -04:00
|
|
|
import { VideoInstance } from '../../models'
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosAddValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-06-11 05:02:35 -04:00
|
|
|
// FIXME: Don't write an error message, it seems there is a bug with express-validator
|
|
|
|
// 'Should have a valid file'
|
|
|
|
req.checkBody('videofile').isVideoFile(req.files)
|
2016-06-06 08:15:03 -04:00
|
|
|
req.checkBody('name', 'Should have a valid name').isVideoNameValid()
|
2017-03-22 16:15:55 -04:00
|
|
|
req.checkBody('category', 'Should have a valid category').isVideoCategoryValid()
|
2017-03-27 14:53:11 -04:00
|
|
|
req.checkBody('licence', 'Should have a valid licence').isVideoLicenceValid()
|
2017-04-07 06:13:37 -04:00
|
|
|
req.checkBody('language', 'Should have a valid language').optional().isVideoLanguageValid()
|
2017-03-28 15:19:46 -04:00
|
|
|
req.checkBody('nsfw', 'Should have a valid NSFW attribute').isVideoNSFWValid()
|
2016-06-06 08:15:03 -04:00
|
|
|
req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid()
|
2017-03-22 16:47:05 -04:00
|
|
|
req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
2017-09-04 14:07:54 -04:00
|
|
|
const videoFile: Express.Multer.File = req.files['videofile'][0]
|
|
|
|
const user = res.locals.oauth.token.User
|
2016-05-16 13:49:10 -04:00
|
|
|
|
2017-09-04 14:07:54 -04:00
|
|
|
user.isAbleToUploadVideo(videoFile)
|
|
|
|
.then(isAble => {
|
|
|
|
if (isAble === false) {
|
2017-09-14 11:06:31 -04:00
|
|
|
res.status(403)
|
|
|
|
.json({ error: 'The user video quota is exceeded with this video.' })
|
|
|
|
.end()
|
2017-09-04 14:07:54 -04:00
|
|
|
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.Video.getDurationFromFile(videoFile.path)
|
2017-09-06 10:35:40 -04:00
|
|
|
.catch(err => {
|
|
|
|
logger.error('Invalid input file in videosAddValidator.', err)
|
2017-09-14 11:06:31 -04:00
|
|
|
res.status(400)
|
|
|
|
.json({ error: 'Invalid input file.' })
|
|
|
|
.end()
|
2017-09-06 10:35:40 -04:00
|
|
|
|
|
|
|
return undefined
|
|
|
|
})
|
2017-09-04 14:07:54 -04:00
|
|
|
})
|
2017-07-05 07:26:25 -04:00
|
|
|
.then(duration => {
|
2017-09-04 14:07:54 -04:00
|
|
|
// Previous test failed, abort
|
2017-09-14 11:06:31 -04:00
|
|
|
if (duration === undefined) return
|
2017-09-04 14:07:54 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
if (!isVideoDurationValid('' + duration)) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(400)
|
|
|
|
.json({
|
|
|
|
error: 'Duration of the video file is too big (max: ' + CONSTRAINTS_FIELDS.VIDEOS.DURATION.max + 's).'
|
|
|
|
})
|
|
|
|
.end()
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2016-05-16 13:49:10 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
videoFile['duration'] = duration
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-09-05 16:09:16 -04:00
|
|
|
logger.error('Error in video add validator', err)
|
|
|
|
res.sendStatus(500)
|
2017-09-06 10:35:40 -04:00
|
|
|
|
|
|
|
return undefined
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
2017-09-06 10:35:40 -04:00
|
|
|
|
2016-05-16 13:49:10 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosUpdateValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2016-12-29 13:07:05 -05:00
|
|
|
req.checkBody('name', 'Should have a valid name').optional().isVideoNameValid()
|
2017-03-22 16:15:55 -04:00
|
|
|
req.checkBody('category', 'Should have a valid category').optional().isVideoCategoryValid()
|
2017-03-27 14:53:11 -04:00
|
|
|
req.checkBody('licence', 'Should have a valid licence').optional().isVideoLicenceValid()
|
2017-04-07 06:13:37 -04:00
|
|
|
req.checkBody('language', 'Should have a valid language').optional().isVideoLanguageValid()
|
2017-03-28 15:19:46 -04:00
|
|
|
req.checkBody('nsfw', 'Should have a valid NSFW attribute').optional().isVideoNSFWValid()
|
2016-12-29 13:07:05 -05:00
|
|
|
req.checkBody('description', 'Should have a valid description').optional().isVideoDescriptionValid()
|
|
|
|
req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-12-29 13:07:05 -05:00
|
|
|
logger.debug('Checking videosUpdate parameters', { parameters: req.body })
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
|
|
|
checkVideoExists(req.params.id, res, () => {
|
2017-01-11 13:15:23 -05:00
|
|
|
// We need to make additional checks
|
|
|
|
if (res.locals.video.isOwned() === false) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(403)
|
|
|
|
.json({ error: 'Cannot update video of another pod' })
|
|
|
|
.end()
|
2017-01-11 13:15:23 -05:00
|
|
|
}
|
2017-01-11 12:41:09 -05:00
|
|
|
|
2017-01-11 13:15:23 -05:00
|
|
|
if (res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(403)
|
|
|
|
.json({ error: 'Cannot update video of another user' })
|
|
|
|
.end()
|
2017-01-11 13:15:23 -05:00
|
|
|
}
|
2017-01-11 12:41:09 -05:00
|
|
|
|
2017-01-11 13:15:23 -05:00
|
|
|
next()
|
|
|
|
})
|
2016-12-29 13:07:05 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-04 15:10:33 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosGetValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-12-29 13:07:05 -05:00
|
|
|
logger.debug('Checking videosGet parameters', { parameters: req.params })
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
2016-12-29 13:07:05 -05:00
|
|
|
checkVideoExists(req.params.id, res, next)
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosRemoveValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
logger.debug('Checking videosRemove parameters', { parameters: req.params })
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
|
|
|
checkVideoExists(req.params.id, res, () => {
|
2017-04-26 15:22:10 -04:00
|
|
|
// Check if the user who did the request is able to delete the video
|
2017-07-11 11:04:57 -04:00
|
|
|
checkUserCanDeleteVideo(res.locals.oauth.token.User.id, res, () => {
|
2017-04-26 15:22:10 -04:00
|
|
|
next()
|
|
|
|
})
|
2015-11-07 08:16:26 -05:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
})
|
|
|
|
}
|
2015-11-07 08:16:26 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosSearchValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const searchableColumns = SEARCHABLE_COLUMNS.VIDEOS
|
2016-06-06 08:15:03 -04:00
|
|
|
req.checkParams('value', 'Should have a valid search').notEmpty()
|
2016-05-22 03:15:00 -04:00
|
|
|
req.checkQuery('field', 'Should have correct searchable column').optional().isIn(searchableColumns)
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
logger.debug('Checking videosSearch parameters', { parameters: req.params })
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videoAbuseReportValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2017-01-04 14:59:23 -05:00
|
|
|
req.checkBody('reason', 'Should have a valid reason').isVideoAbuseReasonValid()
|
|
|
|
|
|
|
|
logger.debug('Checking videoAbuseReport parameters', { parameters: req.body })
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
2017-01-04 14:59:23 -05:00
|
|
|
checkVideoExists(req.params.id, res, next)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videoRateValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2017-03-08 15:35:43 -05:00
|
|
|
req.checkBody('rating', 'Should have a valid rate type').isVideoRatingTypeValid()
|
|
|
|
|
|
|
|
logger.debug('Checking videoRate parameters', { parameters: req.body })
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
2017-03-08 15:35:43 -05:00
|
|
|
checkVideoExists(req.params.id, res, next)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function videosBlacklistValidator (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-07-11 10:01:56 -04:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isVideoIdOrUUIDValid()
|
2017-04-26 15:42:36 -04:00
|
|
|
|
|
|
|
logger.debug('Checking videosBlacklist parameters', { parameters: req.params })
|
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
checkErrors(req, res, () => {
|
|
|
|
checkVideoExists(req.params.id, res, () => {
|
2017-04-26 15:42:36 -04:00
|
|
|
checkVideoIsBlacklistable(req, res, next)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
videosAddValidator,
|
|
|
|
videosUpdateValidator,
|
|
|
|
videosGetValidator,
|
|
|
|
videosRemoveValidator,
|
|
|
|
videosSearchValidator,
|
|
|
|
|
|
|
|
videoAbuseReportValidator,
|
|
|
|
|
|
|
|
videoRateValidator,
|
|
|
|
|
|
|
|
videosBlacklistValidator
|
|
|
|
}
|
2016-12-29 13:07:05 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function checkVideoExists (id: string, res: express.Response, callback: () => void) {
|
2017-07-11 10:01:56 -04:00
|
|
|
let promise: Promise<VideoInstance>
|
|
|
|
if (validator.isInt(id)) {
|
|
|
|
promise = db.Video.loadAndPopulateAuthorAndPodAndTags(+id)
|
|
|
|
} else { // UUID
|
|
|
|
promise = db.Video.loadByUUIDAndPopulateAuthorAndPodAndTags(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
promise.then(video => {
|
2017-09-14 11:06:31 -04:00
|
|
|
if (!video) {
|
|
|
|
return res.status(404)
|
|
|
|
.json({ error: 'Video not found' })
|
|
|
|
.end()
|
|
|
|
}
|
2016-12-29 13:07:05 -05:00
|
|
|
|
|
|
|
res.locals.video = video
|
|
|
|
callback()
|
|
|
|
})
|
2017-07-05 07:26:25 -04:00
|
|
|
.catch(err => {
|
2017-07-07 12:26:12 -04:00
|
|
|
logger.error('Error in video request validator.', err)
|
2017-07-05 07:26:25 -04:00
|
|
|
return res.sendStatus(500)
|
|
|
|
})
|
2016-12-29 13:07:05 -05:00
|
|
|
}
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function checkUserCanDeleteVideo (userId: number, res: express.Response, callback: () => void) {
|
2017-04-26 15:22:10 -04:00
|
|
|
// Retrieve the user who did the request
|
2017-07-05 07:26:25 -04:00
|
|
|
db.User.loadById(userId)
|
|
|
|
.then(user => {
|
2017-09-12 06:53:55 -04:00
|
|
|
if (res.locals.video.isOwned() === false) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(403)
|
|
|
|
.json({ error: 'Cannot remove video of another pod, blacklist it' })
|
|
|
|
.end()
|
2017-09-12 06:53:55 -04:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
// Check if the user can delete the video
|
|
|
|
// The user can delete it if s/he is an admin
|
|
|
|
// Or if s/he is the video's author
|
2017-09-12 06:53:55 -04:00
|
|
|
if (user.isAdmin() === false && res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(403)
|
|
|
|
.json({ error: 'Cannot remove video of another user' })
|
|
|
|
.end()
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
// If we reach this comment, we can delete the video
|
|
|
|
callback()
|
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-07 12:26:12 -04:00
|
|
|
logger.error('Error in video request validator.', err)
|
2017-07-05 07:26:25 -04:00
|
|
|
return res.sendStatus(500)
|
|
|
|
})
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function checkVideoIsBlacklistable (req: express.Request, res: express.Response, callback: () => void) {
|
2017-04-26 15:22:10 -04:00
|
|
|
if (res.locals.video.isOwned() === true) {
|
2017-09-14 11:06:31 -04:00
|
|
|
return res.status(403)
|
|
|
|
.json({ error: 'Cannot blacklist a local video' })
|
|
|
|
.end()
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
callback()
|
|
|
|
}
|