2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const express = require('express')
|
2016-06-24 17:42:51 +02:00
|
|
|
const mongoose = require('mongoose')
|
2016-03-16 22:29:27 +01:00
|
|
|
const multer = require('multer')
|
2016-07-18 17:17:52 +02:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
2016-08-19 21:34:51 +02:00
|
|
|
const constants = require('../../../initializers/constants')
|
2016-03-16 22:29:27 +01:00
|
|
|
const logger = require('../../../helpers/logger')
|
|
|
|
const friends = require('../../../lib/friends')
|
2016-05-13 16:31:14 +02:00
|
|
|
const middlewares = require('../../../middlewares')
|
2016-07-01 16:03:53 +02:00
|
|
|
const oAuth = middlewares.oauth
|
2016-05-13 18:10:46 +02:00
|
|
|
const pagination = middlewares.pagination
|
2016-07-01 16:16:40 +02:00
|
|
|
const validators = middlewares.validators
|
|
|
|
const validatorsPagination = validators.pagination
|
|
|
|
const validatorsSort = validators.sort
|
|
|
|
const validatorsVideos = validators.videos
|
2016-05-22 09:15:00 +02:00
|
|
|
const search = middlewares.search
|
2016-05-17 21:03:00 +02:00
|
|
|
const sort = middlewares.sort
|
2016-05-10 21:19:24 +02:00
|
|
|
const utils = require('../../../helpers/utils')
|
2016-03-16 22:29:27 +01:00
|
|
|
|
|
|
|
const router = express.Router()
|
2016-06-24 17:42:51 +02:00
|
|
|
const Video = mongoose.model('Video')
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
// multer configuration
|
2016-03-16 22:29:27 +01:00
|
|
|
const storage = multer.diskStorage({
|
2016-02-07 11:23:23 +01:00
|
|
|
destination: function (req, file, cb) {
|
2016-08-19 21:34:51 +02:00
|
|
|
cb(null, constants.CONFIG.STORAGE.UPLOAD_DIR)
|
2016-02-07 11:23:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
filename: function (req, file, cb) {
|
2016-03-16 22:29:27 +01:00
|
|
|
let extension = ''
|
2016-02-07 11:23:23 +01:00
|
|
|
if (file.mimetype === 'video/webm') extension = 'webm'
|
|
|
|
else if (file.mimetype === 'video/mp4') extension = 'mp4'
|
|
|
|
else if (file.mimetype === 'video/ogg') extension = 'ogv'
|
2016-05-11 21:19:34 +02:00
|
|
|
utils.generateRandomString(16, function (err, randomString) {
|
|
|
|
const fieldname = err ? undefined : randomString
|
2016-02-07 11:23:23 +01:00
|
|
|
cb(null, fieldname + '.' + extension)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-03-18 16:44:54 +01:00
|
|
|
const reqFiles = multer({ storage: storage }).fields([{ name: 'videofile', maxCount: 1 }])
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-13 18:10:46 +02:00
|
|
|
router.get('/',
|
2016-07-01 16:16:40 +02:00
|
|
|
validatorsPagination.pagination,
|
|
|
|
validatorsSort.videosSort,
|
2016-05-17 21:03:00 +02:00
|
|
|
sort.setVideosSort,
|
2016-05-13 18:10:46 +02:00
|
|
|
pagination.setPagination,
|
|
|
|
listVideos
|
|
|
|
)
|
|
|
|
router.post('/',
|
2016-07-01 16:03:53 +02:00
|
|
|
oAuth.authenticate,
|
2016-05-13 18:10:46 +02:00
|
|
|
reqFiles,
|
2016-07-01 16:16:40 +02:00
|
|
|
validatorsVideos.videosAdd,
|
2016-05-13 18:10:46 +02:00
|
|
|
addVideo
|
|
|
|
)
|
|
|
|
router.get('/:id',
|
2016-07-01 16:16:40 +02:00
|
|
|
validatorsVideos.videosGet,
|
2016-05-21 19:30:22 +02:00
|
|
|
getVideo
|
2016-05-13 18:10:46 +02:00
|
|
|
)
|
|
|
|
router.delete('/:id',
|
2016-07-01 16:03:53 +02:00
|
|
|
oAuth.authenticate,
|
2016-07-01 16:16:40 +02:00
|
|
|
validatorsVideos.videosRemove,
|
2016-05-13 18:10:46 +02:00
|
|
|
removeVideo
|
|
|
|
)
|
2016-05-22 09:15:00 +02:00
|
|
|
router.get('/search/:value',
|
2016-07-01 16:16:40 +02:00
|
|
|
validatorsVideos.videosSearch,
|
|
|
|
validatorsPagination.pagination,
|
|
|
|
validatorsSort.videosSort,
|
2016-05-17 21:03:00 +02:00
|
|
|
sort.setVideosSort,
|
2016-05-13 18:10:46 +02:00
|
|
|
pagination.setPagination,
|
2016-05-22 09:15:00 +02:00
|
|
|
search.setVideosSearch,
|
2016-05-13 18:10:46 +02:00
|
|
|
searchVideos
|
|
|
|
)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
module.exports = router
|
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-02-07 11:23:23 +01:00
|
|
|
function addVideo (req, res, next) {
|
2016-05-11 21:19:34 +02:00
|
|
|
const videoFile = req.files.videofile[0]
|
|
|
|
const videoInfos = req.body
|
2016-02-07 11:23:23 +01:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
waterfall([
|
2016-05-13 21:14:14 +02:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
function insertIntoDB (callback) {
|
2016-05-13 21:14:14 +02:00
|
|
|
const videoData = {
|
|
|
|
name: videoInfos.name,
|
2016-06-28 20:19:41 +02:00
|
|
|
filename: videoFile.filename,
|
2016-05-13 21:14:14 +02:00
|
|
|
description: videoInfos.description,
|
|
|
|
author: res.locals.oauth.token.user.username,
|
2016-05-16 19:49:10 +02:00
|
|
|
duration: videoFile.duration,
|
2016-06-06 14:15:03 +02:00
|
|
|
tags: videoInfos.tags
|
2016-05-13 21:14:14 +02:00
|
|
|
}
|
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
const video = new Video(videoData)
|
|
|
|
video.save(function (err, video) {
|
|
|
|
// Assert there are only one argument sent to the next function (video)
|
|
|
|
return callback(err, video)
|
2016-05-03 22:41:46 +02:00
|
|
|
})
|
2016-05-13 21:14:14 +02:00
|
|
|
},
|
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
function sendToFriends (video, callback) {
|
|
|
|
video.toRemoteJSON(function (err, remoteVideo) {
|
|
|
|
if (err) return callback(err)
|
2016-05-13 21:14:14 +02:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
// Now we'll add the video's meta data to our friends
|
|
|
|
friends.addVideoToFriends(remoteVideo)
|
2016-05-13 21:14:14 +02:00
|
|
|
|
2016-06-18 16:13:54 +02:00
|
|
|
return callback(null)
|
|
|
|
})
|
2016-05-13 21:14:14 +02:00
|
|
|
}
|
|
|
|
|
2016-06-06 14:15:03 +02:00
|
|
|
], function andFinally (err) {
|
2016-05-13 21:14:14 +02:00
|
|
|
if (err) {
|
2016-06-24 17:42:51 +02:00
|
|
|
// TODO unseed the video
|
|
|
|
// TODO remove thumbnail
|
|
|
|
// TODO delete from DB
|
2016-05-13 21:14:14 +02:00
|
|
|
logger.error('Cannot insert the video.')
|
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO : include Location of the new video -> 201
|
|
|
|
return res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-21 19:30:22 +02:00
|
|
|
function getVideo (req, res, next) {
|
2016-06-24 17:42:51 +02:00
|
|
|
Video.load(req.params.id, function (err, video) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
if (!video) {
|
2016-03-18 16:28:09 +01:00
|
|
|
return res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
res.json(video.toFormatedJSON())
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function listVideos (req, res, next) {
|
2016-08-16 21:51:04 +02:00
|
|
|
Video.listForApi(req.query.start, req.query.count, req.query.sort, function (err, videosList, videosTotal) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
res.json(getFormatedVideos(videosList, videosTotal))
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function removeVideo (req, res, next) {
|
2016-05-11 21:19:34 +02:00
|
|
|
const videoId = req.params.id
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-07-18 17:17:52 +02:00
|
|
|
waterfall([
|
2016-05-13 21:14:14 +02:00
|
|
|
function getVideo (callback) {
|
2016-06-24 17:42:51 +02:00
|
|
|
Video.load(videoId, callback)
|
2016-05-13 21:14:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
function removeFromDB (video, callback) {
|
2016-06-24 17:42:51 +02:00
|
|
|
video.remove(function (err) {
|
2016-05-13 21:14:14 +02:00
|
|
|
if (err) return callback(err)
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-05-13 21:14:14 +02:00
|
|
|
return callback(null, video)
|
|
|
|
})
|
|
|
|
},
|
2016-05-10 21:19:24 +02:00
|
|
|
|
2016-05-13 21:14:14 +02:00
|
|
|
function sendInformationToFriends (video, callback) {
|
|
|
|
const params = {
|
|
|
|
name: video.name,
|
|
|
|
magnetUri: video.magnetUri
|
|
|
|
}
|
|
|
|
|
|
|
|
friends.removeVideoToFriends(params)
|
|
|
|
|
|
|
|
return callback(null)
|
|
|
|
}
|
2016-06-06 14:15:03 +02:00
|
|
|
], function andFinally (err) {
|
2016-05-13 21:14:14 +02:00
|
|
|
if (err) {
|
|
|
|
logger.error('Errors when removed the video.', { error: err })
|
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
function searchVideos (req, res, next) {
|
2016-06-24 17:42:51 +02:00
|
|
|
Video.search(req.params.value, req.query.field, req.query.start, req.query.count, req.query.sort,
|
|
|
|
function (err, videosList, videosTotal) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
res.json(getFormatedVideos(videosList, videosTotal))
|
2016-02-07 11:23:23 +01:00
|
|
|
})
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
function getFormatedVideos (videos, videosTotal) {
|
2016-05-11 21:19:34 +02:00
|
|
|
const formatedVideos = []
|
2016-03-18 16:28:09 +01:00
|
|
|
|
2016-06-24 17:42:51 +02:00
|
|
|
videos.forEach(function (video) {
|
|
|
|
formatedVideos.push(video.toFormatedJSON())
|
2016-03-18 16:28:09 +01:00
|
|
|
})
|
|
|
|
|
2016-05-21 19:30:22 +02:00
|
|
|
return {
|
2016-06-24 17:42:51 +02:00
|
|
|
total: videosTotal,
|
2016-05-21 19:30:22 +02:00
|
|
|
data: formatedVideos
|
|
|
|
}
|
2016-03-18 16:28:09 +01:00
|
|
|
}
|