'use strict'
const express = require('express')
-const pluck = require('lodash-node/compat/collection/pluck')
+const map = require('lodash-node/modern/collection/map')
const middleware = require('../../../middlewares')
const secureMiddleware = middleware.secure
function removeRemoteVideo (req, res, next) {
const url = req.body.signature.url
- const magnetUris = pluck(req.body.data, 'magnetUri')
+ const magnetUris = map(req.body.data, 'magnetUri')
videos.removeRemotesOfByMagnetUris(url, magnetUris, function (err) {
if (err) return next(err)
}
function videosAdd (req, res, next) {
- req.checkFiles('input_video[0].originalname', 'Should have an input video').notEmpty()
- req.checkFiles('input_video[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
+ req.checkFiles('videofile[0].originalname', 'Should have an input video').notEmpty()
+ req.checkFiles('videofile[0].mimetype', 'Should have a correct mime type').matches(/video\/(webm)|(mp4)|(ogg)/i)
req.checkBody('name', 'Should have a name').isLength(1, 50)
req.checkBody('description', 'Should have a description').isLength(1, 250)