2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const checkErrors = require('./utils').checkErrors
|
2016-05-16 19:49:10 +02:00
|
|
|
const constants = require('../../initializers/constants')
|
2016-07-31 20:58:43 +02:00
|
|
|
const customVideosValidators = require('../../helpers/custom-validators').videos
|
2016-12-11 21:50:51 +01:00
|
|
|
const db = require('../../initializers/database')
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../../helpers/logger')
|
2016-06-24 17:42:51 +02:00
|
|
|
|
2016-07-01 16:16:40 +02:00
|
|
|
const validatorsVideos = {
|
2016-10-02 12:19:02 +02:00
|
|
|
videosAdd,
|
2016-12-29 19:07:05 +01:00
|
|
|
videosUpdate,
|
2016-10-02 12:19:02 +02:00
|
|
|
videosGet,
|
|
|
|
videosRemove,
|
|
|
|
videosSearch
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function videosAdd (req, res, next) {
|
2016-03-18 16:34:50 +01:00
|
|
|
req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
|
2016-08-04 22:32:36 +02:00
|
|
|
// TODO: move to constants and function
|
2016-03-18 16:34:50 +01:00
|
|
|
req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
|
2016-06-06 14:15:03 +02:00
|
|
|
req.checkBody('name', 'Should have a valid name').isVideoNameValid()
|
|
|
|
req.checkBody('description', 'Should have a valid description').isVideoDescriptionValid()
|
|
|
|
req.checkBody('tags', 'Should have correct tags').isVideoTagsValid()
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
logger.debug('Checking videosAdd parameters', { parameters: req.body, files: req.files })
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-05-16 19:49:10 +02:00
|
|
|
checkErrors(req, res, function () {
|
|
|
|
const videoFile = req.files.videofile[0]
|
|
|
|
|
2016-12-11 21:50:51 +01:00
|
|
|
db.Video.getDurationFromFile(videoFile.path, function (err, duration) {
|
2016-05-16 19:49:10 +02:00
|
|
|
if (err) {
|
|
|
|
return res.status(400).send('Cannot retrieve metadata of the file.')
|
|
|
|
}
|
|
|
|
|
2016-07-31 20:58:43 +02:00
|
|
|
if (!customVideosValidators.isVideoDurationValid(duration)) {
|
|
|
|
return res.status(400).send('Duration of the video file is too big (max: ' + constants.CONSTRAINTS_FIELDS.VIDEOS.DURATION.max + 's).')
|
2016-05-16 19:49:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
videoFile.duration = duration
|
|
|
|
next()
|
|
|
|
})
|
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-12-29 19:07:05 +01:00
|
|
|
function videosUpdate (req, res, next) {
|
2016-12-11 21:50:51 +01:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
|
2016-12-29 19:07:05 +01:00
|
|
|
req.checkBody('name', 'Should have a valid name').optional().isVideoNameValid()
|
|
|
|
req.checkBody('description', 'Should have a valid description').optional().isVideoDescriptionValid()
|
|
|
|
req.checkBody('tags', 'Should have correct tags').optional().isVideoTagsValid()
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-12-29 19:07:05 +01:00
|
|
|
logger.debug('Checking videosUpdate parameters', { parameters: req.body })
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
checkErrors(req, res, function () {
|
2016-12-29 19:07:05 +01:00
|
|
|
checkVideoExists(req.params.id, res, next)
|
|
|
|
})
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-12-29 19:07:05 +01:00
|
|
|
function videosGet (req, res, next) {
|
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-12-29 19:07:05 +01:00
|
|
|
logger.debug('Checking videosGet parameters', { parameters: req.params })
|
|
|
|
|
|
|
|
checkErrors(req, res, function () {
|
|
|
|
checkVideoExists(req.params.id, res, next)
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function videosRemove (req, res, next) {
|
2016-12-11 21:50:51 +01:00
|
|
|
req.checkParams('id', 'Should have a valid id').notEmpty().isUUID(4)
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
logger.debug('Checking videosRemove parameters', { parameters: req.params })
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
checkErrors(req, res, function () {
|
2016-12-30 11:51:08 +01:00
|
|
|
checkVideoExists(req.params.id, res, function () {
|
|
|
|
// We need to make additional checks
|
|
|
|
|
|
|
|
if (res.locals.video.isOwned() === false) {
|
|
|
|
return res.status(403).send('Cannot remove video of another pod')
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-12-30 12:39:49 +01:00
|
|
|
if (res.locals.video.Author.userId !== res.locals.oauth.token.User.id) {
|
2016-12-30 11:51:08 +01:00
|
|
|
return res.status(403).send('Cannot remove video of another user')
|
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-03-18 16:28:09 +01:00
|
|
|
next()
|
2015-11-07 14:16:26 +01:00
|
|
|
})
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-11-07 14:16:26 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function videosSearch (req, res, next) {
|
2016-05-22 09:15:00 +02:00
|
|
|
const searchableColumns = constants.SEARCHABLE_COLUMNS.VIDEOS
|
2016-06-06 14:15:03 +02:00
|
|
|
req.checkParams('value', 'Should have a valid search').notEmpty()
|
2016-05-22 09:15:00 +02:00
|
|
|
req.checkQuery('field', 'Should have correct searchable column').optional().isIn(searchableColumns)
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
logger.debug('Checking videosSearch parameters', { parameters: req.params })
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
checkErrors(req, res, next)
|
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-07-01 16:16:40 +02:00
|
|
|
module.exports = validatorsVideos
|
2016-12-29 19:07:05 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function checkVideoExists (id, res, callback) {
|
|
|
|
db.Video.loadAndPopulateAuthorAndPodAndTags(id, function (err, video) {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Error in video request validator.', { error: err })
|
|
|
|
return res.sendStatus(500)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!video) return res.status(404).send('Video not found')
|
|
|
|
|
|
|
|
res.locals.video = video
|
|
|
|
callback()
|
|
|
|
})
|
|
|
|
}
|