2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 22:29:27 +01:00
|
|
|
const config = require('config')
|
|
|
|
const express = require('express')
|
2016-05-10 21:19:24 +02:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
2016-03-16 22:29:27 +01:00
|
|
|
const multer = require('multer')
|
|
|
|
|
2016-05-10 21:19:24 +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')
|
|
|
|
const oAuth2 = middlewares.oauth2
|
2016-05-13 18:10:46 +02:00
|
|
|
const pagination = middlewares.pagination
|
|
|
|
const reqValidator = middlewares.reqValidators
|
|
|
|
const reqValidatorPagination = reqValidator.pagination
|
|
|
|
const reqValidatorVideos = reqValidator.videos
|
2016-05-10 21:19:24 +02:00
|
|
|
const utils = require('../../../helpers/utils')
|
2016-03-16 22:29:27 +01:00
|
|
|
const Videos = require('../../../models/videos') // model
|
|
|
|
const videos = require('../../../lib/videos')
|
|
|
|
const webtorrent = require('../../../lib/webtorrent')
|
|
|
|
|
|
|
|
const router = express.Router()
|
|
|
|
const uploads = config.get('storage.uploads')
|
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) {
|
|
|
|
cb(null, uploads)
|
|
|
|
},
|
|
|
|
|
|
|
|
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 }])
|
2016-05-10 21:19:24 +02:00
|
|
|
const thumbnailsDir = path.join(__dirname, '..', '..', '..', '..', config.get('storage.thumbnails'))
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-13 18:10:46 +02:00
|
|
|
router.get('/',
|
|
|
|
reqValidatorPagination.pagination,
|
|
|
|
pagination.setPagination,
|
|
|
|
listVideos
|
|
|
|
)
|
|
|
|
router.post('/',
|
|
|
|
oAuth2.authenticate,
|
|
|
|
reqFiles,
|
|
|
|
reqValidatorVideos.videosAdd,
|
|
|
|
addVideo
|
|
|
|
)
|
|
|
|
router.get('/:id',
|
|
|
|
reqValidatorVideos.videosGet,
|
|
|
|
getVideos
|
|
|
|
)
|
|
|
|
router.delete('/:id',
|
|
|
|
oAuth2.authenticate,
|
|
|
|
reqValidatorVideos.videosRemove,
|
|
|
|
removeVideo
|
|
|
|
)
|
|
|
|
router.get('/search/:name',
|
|
|
|
reqValidatorVideos.videosSearch,
|
|
|
|
reqValidatorPagination.pagination,
|
|
|
|
pagination.setPagination,
|
|
|
|
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-05-11 21:19:34 +02:00
|
|
|
videos.seed(videoFile.path, function (err, torrent) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot seed this video.')
|
|
|
|
return next(err)
|
|
|
|
}
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
videos.getVideoDuration(videoFile.path, function (err, duration) {
|
2016-02-04 21:10:33 +01:00
|
|
|
if (err) {
|
2016-05-03 22:41:46 +02:00
|
|
|
// TODO: unseed the video
|
2016-05-10 21:19:24 +02:00
|
|
|
logger.error('Cannot retrieve metadata of the file.')
|
2016-02-04 21:10:33 +01:00
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
2016-05-13 20:45:53 +02:00
|
|
|
videos.createVideoThumbnail(videoFile.path, function (err, thumbnailName) {
|
2016-05-03 22:41:46 +02:00
|
|
|
if (err) {
|
2016-05-10 21:19:24 +02:00
|
|
|
// TODO: unseed the video
|
|
|
|
logger.error('Cannot make a thumbnail of the video file.')
|
2016-05-03 22:41:46 +02:00
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
const videoData = {
|
|
|
|
name: videoInfos.name,
|
|
|
|
namePath: videoFile.filename,
|
|
|
|
description: videoInfos.description,
|
2016-05-10 21:19:24 +02:00
|
|
|
magnetUri: torrent.magnetURI,
|
|
|
|
author: res.locals.oauth.token.user.username,
|
|
|
|
duration: duration,
|
2016-05-11 21:19:34 +02:00
|
|
|
thumbnail: thumbnailName
|
2016-05-10 21:19:24 +02:00
|
|
|
}
|
2016-05-03 22:41:46 +02:00
|
|
|
|
2016-05-13 20:42:11 +02:00
|
|
|
Videos.add(videoData, function (err, insertedVideo) {
|
2016-05-10 21:19:24 +02:00
|
|
|
if (err) {
|
|
|
|
// TODO unseed the video
|
|
|
|
logger.error('Cannot insert this video in the database.')
|
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
2016-05-13 20:42:11 +02:00
|
|
|
videoData.createdDate = insertedVideo.createdDate
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
fs.readFile(thumbnailsDir + thumbnailName, function (err, data) {
|
2016-05-10 21:19:24 +02:00
|
|
|
if (err) {
|
|
|
|
// TODO: remove video?
|
|
|
|
logger.error('Cannot read the thumbnail of the video')
|
|
|
|
return next(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the image in base64
|
2016-05-11 21:19:34 +02:00
|
|
|
videoData.thumbnailBase64 = new Buffer(data).toString('base64')
|
2016-05-10 21:19:24 +02:00
|
|
|
// Now we'll add the video's meta data to our friends
|
2016-05-11 21:19:34 +02:00
|
|
|
friends.addVideoToFriends(videoData)
|
2016-05-10 21:19:24 +02:00
|
|
|
|
|
|
|
// TODO : include Location of the new video -> 201
|
|
|
|
res.type('json').status(204).end()
|
|
|
|
})
|
|
|
|
})
|
2016-05-03 22:41:46 +02:00
|
|
|
})
|
2015-06-09 17:41:40 +02:00
|
|
|
})
|
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 getVideos (req, res, next) {
|
2016-05-11 21:19:34 +02:00
|
|
|
Videos.get(req.params.id, function (err, videoObj) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
const state = videos.getVideoState(videoObj)
|
2016-03-18 16:28:09 +01:00
|
|
|
if (state.exist === false) {
|
|
|
|
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-11 21:19:34 +02:00
|
|
|
res.json(getFormatedVideo(videoObj))
|
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-05-13 18:10:46 +02:00
|
|
|
Videos.list(req.query.start, req.query.count, function (err, videosList) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
res.json(getFormatedVideos(videosList))
|
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
|
|
|
|
Videos.get(videoId, 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-02-07 11:23:23 +01:00
|
|
|
removeTorrent(video.magnetUri, function () {
|
|
|
|
Videos.removeOwned(req.params.id, function (err) {
|
|
|
|
if (err) return next(err)
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-05-10 21:19:24 +02:00
|
|
|
videos.removeVideosDataFromDisk([ video ], function (err) {
|
|
|
|
if (err) logger.error('Cannot remove video data from disk.', { video: video })
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
name: video.name,
|
|
|
|
magnetUri: video.magnetUri
|
|
|
|
}
|
2016-02-04 21:10:33 +01:00
|
|
|
|
2016-05-10 21:19:24 +02:00
|
|
|
friends.removeVideoToFriends(params)
|
|
|
|
res.type('json').status(204).end()
|
|
|
|
})
|
2016-02-04 21:10:33 +01:00
|
|
|
})
|
2015-06-09 17:41:40 +02:00
|
|
|
})
|
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-05-13 18:10:46 +02:00
|
|
|
Videos.search(req.params.name, req.query.start, req.query.count, function (err, videosList) {
|
2016-02-07 11:23:23 +01:00
|
|
|
if (err) return next(err)
|
2015-06-09 17:41:40 +02:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
res.json(getFormatedVideos(videosList))
|
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-05-11 21:19:34 +02:00
|
|
|
function getFormatedVideo (videoObj) {
|
|
|
|
const formatedVideo = {
|
|
|
|
id: videoObj._id,
|
|
|
|
name: videoObj.name,
|
|
|
|
description: videoObj.description,
|
|
|
|
podUrl: videoObj.podUrl,
|
|
|
|
isLocal: videos.getVideoState(videoObj).owned,
|
|
|
|
magnetUri: videoObj.magnetUri,
|
|
|
|
author: videoObj.author,
|
|
|
|
duration: videoObj.duration,
|
2016-05-13 20:42:11 +02:00
|
|
|
thumbnailPath: constants.THUMBNAILS_STATIC_PATH + '/' + videoObj.thumbnail,
|
|
|
|
createdDate: videoObj.createdDate
|
2016-03-18 16:28:09 +01:00
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
return formatedVideo
|
2016-03-18 16:28:09 +01:00
|
|
|
}
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
function getFormatedVideos (videosObj) {
|
|
|
|
const formatedVideos = []
|
2016-03-18 16:28:09 +01:00
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
videosObj.forEach(function (videoObj) {
|
|
|
|
formatedVideos.push(getFormatedVideo(videoObj))
|
2016-03-18 16:28:09 +01:00
|
|
|
})
|
|
|
|
|
2016-05-11 21:19:34 +02:00
|
|
|
return formatedVideos
|
2016-03-18 16:28:09 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// Maybe the torrent is not seeded, but we catch the error to don't stop the removing process
|
|
|
|
function removeTorrent (magnetUri, callback) {
|
|
|
|
try {
|
|
|
|
webtorrent.remove(magnetUri, callback)
|
|
|
|
} catch (err) {
|
|
|
|
logger.warn('Cannot remove the torrent from WebTorrent', { err: err })
|
|
|
|
return callback(null)
|
2016-02-04 21:10:33 +01:00
|
|
|
}
|
2016-02-07 11:23:23 +01:00
|
|
|
}
|