2016-02-07 04:23:23 -06:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-16 16:29:27 -05:00
|
|
|
const express = require('express')
|
2016-11-11 06:47:50 -06:00
|
|
|
const fs = require('fs')
|
2016-03-16 16:29:27 -05:00
|
|
|
const multer = require('multer')
|
2016-11-11 06:47:50 -06:00
|
|
|
const path = require('path')
|
2016-07-18 10:17:52 -05:00
|
|
|
const waterfall = require('async/waterfall')
|
2016-03-16 16:29:27 -05:00
|
|
|
|
2016-10-21 05:16:28 -05:00
|
|
|
const constants = require('../../initializers/constants')
|
2016-12-11 14:50:51 -06:00
|
|
|
const db = require('../../initializers/database')
|
2016-10-21 05:16:28 -05:00
|
|
|
const logger = require('../../helpers/logger')
|
|
|
|
const friends = require('../../lib/friends')
|
|
|
|
const middlewares = require('../../middlewares')
|
2016-07-01 09:03:53 -05:00
|
|
|
const oAuth = middlewares.oauth
|
2016-05-13 11:10:46 -05:00
|
|
|
const pagination = middlewares.pagination
|
2016-07-01 09:16:40 -05:00
|
|
|
const validators = middlewares.validators
|
|
|
|
const validatorsPagination = validators.pagination
|
|
|
|
const validatorsSort = validators.sort
|
|
|
|
const validatorsVideos = validators.videos
|
2016-05-22 02:15:00 -05:00
|
|
|
const search = middlewares.search
|
2016-05-17 14:03:00 -05:00
|
|
|
const sort = middlewares.sort
|
2016-10-21 05:16:28 -05:00
|
|
|
const utils = require('../../helpers/utils')
|
2016-03-16 16:29:27 -05:00
|
|
|
|
|
|
|
const router = express.Router()
|
2016-02-07 04:23:23 -06:00
|
|
|
|
|
|
|
// multer configuration
|
2016-03-16 16:29:27 -05:00
|
|
|
const storage = multer.diskStorage({
|
2016-02-07 04:23:23 -06:00
|
|
|
destination: function (req, file, cb) {
|
2016-10-21 04:33:31 -05:00
|
|
|
cb(null, constants.CONFIG.STORAGE.VIDEOS_DIR)
|
2016-02-07 04:23:23 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
filename: function (req, file, cb) {
|
2016-03-16 16:29:27 -05:00
|
|
|
let extension = ''
|
2016-02-07 04:23:23 -06: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 14:19:34 -05:00
|
|
|
utils.generateRandomString(16, function (err, randomString) {
|
|
|
|
const fieldname = err ? undefined : randomString
|
2016-02-07 04:23:23 -06:00
|
|
|
cb(null, fieldname + '.' + extension)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-03-18 10:44:54 -05:00
|
|
|
const reqFiles = multer({ storage: storage }).fields([{ name: 'videofile', maxCount: 1 }])
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-05-13 11:10:46 -05:00
|
|
|
router.get('/',
|
2016-07-01 09:16:40 -05:00
|
|
|
validatorsPagination.pagination,
|
|
|
|
validatorsSort.videosSort,
|
2016-05-17 14:03:00 -05:00
|
|
|
sort.setVideosSort,
|
2016-05-13 11:10:46 -05:00
|
|
|
pagination.setPagination,
|
|
|
|
listVideos
|
|
|
|
)
|
|
|
|
router.post('/',
|
2016-07-01 09:03:53 -05:00
|
|
|
oAuth.authenticate,
|
2016-05-13 11:10:46 -05:00
|
|
|
reqFiles,
|
2016-07-01 09:16:40 -05:00
|
|
|
validatorsVideos.videosAdd,
|
2016-05-13 11:10:46 -05:00
|
|
|
addVideo
|
|
|
|
)
|
|
|
|
router.get('/:id',
|
2016-07-01 09:16:40 -05:00
|
|
|
validatorsVideos.videosGet,
|
2016-05-21 12:30:22 -05:00
|
|
|
getVideo
|
2016-05-13 11:10:46 -05:00
|
|
|
)
|
|
|
|
router.delete('/:id',
|
2016-07-01 09:03:53 -05:00
|
|
|
oAuth.authenticate,
|
2016-07-01 09:16:40 -05:00
|
|
|
validatorsVideos.videosRemove,
|
2016-05-13 11:10:46 -05:00
|
|
|
removeVideo
|
|
|
|
)
|
2016-05-22 02:15:00 -05:00
|
|
|
router.get('/search/:value',
|
2016-07-01 09:16:40 -05:00
|
|
|
validatorsVideos.videosSearch,
|
|
|
|
validatorsPagination.pagination,
|
|
|
|
validatorsSort.videosSort,
|
2016-05-17 14:03:00 -05:00
|
|
|
sort.setVideosSort,
|
2016-05-13 11:10:46 -05:00
|
|
|
pagination.setPagination,
|
2016-05-22 02:15:00 -05:00
|
|
|
search.setVideosSearch,
|
2016-05-13 11:10:46 -05:00
|
|
|
searchVideos
|
|
|
|
)
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
module.exports = router
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
function addVideo (req, res, next) {
|
2016-05-11 14:19:34 -05:00
|
|
|
const videoFile = req.files.videofile[0]
|
|
|
|
const videoInfos = req.body
|
2016-02-07 04:23:23 -06:00
|
|
|
|
2016-07-18 10:17:52 -05:00
|
|
|
waterfall([
|
2016-05-13 14:14:14 -05:00
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
function findOrCreateAuthor (callback) {
|
|
|
|
const username = res.locals.oauth.token.user.username
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
name: username,
|
|
|
|
podId: null
|
|
|
|
},
|
|
|
|
defaults: {
|
|
|
|
name: username,
|
|
|
|
podId: null // null because it is OUR pod
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
db.Author.findOrCreate(query).asCallback(function (err, result) {
|
|
|
|
// [ instance, wasCreated ]
|
|
|
|
return callback(err, result[0])
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
function createVideoObject (author, callback) {
|
2016-05-13 14:14:14 -05:00
|
|
|
const videoData = {
|
|
|
|
name: videoInfos.name,
|
2016-11-11 06:47:50 -06:00
|
|
|
remoteId: null,
|
|
|
|
extname: path.extname(videoFile.filename),
|
2016-05-13 14:14:14 -05:00
|
|
|
description: videoInfos.description,
|
2016-05-16 12:49:10 -05:00
|
|
|
duration: videoFile.duration,
|
2016-12-11 14:50:51 -06:00
|
|
|
tags: videoInfos.tags,
|
|
|
|
authorId: author.id
|
2016-05-13 14:14:14 -05:00
|
|
|
}
|
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
const video = db.Video.build(videoData)
|
2016-11-11 06:47:50 -06:00
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
return callback(null, author, video)
|
2016-11-11 06:47:50 -06:00
|
|
|
},
|
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
// Set the videoname the same as the id
|
|
|
|
function renameVideoFile (author, video, callback) {
|
2016-11-11 06:47:50 -06:00
|
|
|
const videoDir = constants.CONFIG.STORAGE.VIDEOS_DIR
|
|
|
|
const source = path.join(videoDir, videoFile.filename)
|
2016-11-11 08:20:03 -06:00
|
|
|
const destination = path.join(videoDir, video.getVideoFilename())
|
2016-11-11 06:47:50 -06:00
|
|
|
|
|
|
|
fs.rename(source, destination, function (err) {
|
2016-12-11 14:50:51 -06:00
|
|
|
return callback(err, author, video)
|
2016-11-11 06:47:50 -06:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
2016-12-11 14:50:51 -06:00
|
|
|
function insertIntoDB (author, video, callback) {
|
|
|
|
video.save().asCallback(function (err, videoCreated) {
|
|
|
|
// Do not forget to add Author informations to the created video
|
|
|
|
videoCreated.Author = author
|
|
|
|
|
|
|
|
return callback(err, videoCreated)
|
2016-05-03 15:41:46 -05:00
|
|
|
})
|
2016-05-13 14:14:14 -05:00
|
|
|
},
|
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
function sendToFriends (video, callback) {
|
|
|
|
video.toRemoteJSON(function (err, remoteVideo) {
|
|
|
|
if (err) return callback(err)
|
2016-05-13 14:14:14 -05:00
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
// Now we'll add the video's meta data to our friends
|
|
|
|
friends.addVideoToFriends(remoteVideo)
|
2016-05-13 14:14:14 -05:00
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
return callback(null)
|
|
|
|
})
|
2016-05-13 14:14:14 -05:00
|
|
|
}
|
|
|
|
|
2016-06-06 07:15:03 -05:00
|
|
|
], function andFinally (err) {
|
2016-05-13 14:14:14 -05:00
|
|
|
if (err) {
|
|
|
|
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 04:23:23 -06:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-05-21 12:30:22 -05:00
|
|
|
function getVideo (req, res, next) {
|
2016-12-11 14:50:51 -06:00
|
|
|
db.Video.loadAndPopulateAuthorAndPod(req.params.id, function (err, video) {
|
2016-02-07 04:23:23 -06:00
|
|
|
if (err) return next(err)
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
if (!video) {
|
2016-03-18 10:28:09 -05:00
|
|
|
return res.type('json').status(204).end()
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
res.json(video.toFormatedJSON())
|
2016-02-07 04:23:23 -06:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
function listVideos (req, res, next) {
|
2016-12-11 14:50:51 -06:00
|
|
|
db.Video.listForApi(req.query.start, req.query.count, req.query.sort, function (err, videosList, videosTotal) {
|
2016-02-07 04:23:23 -06:00
|
|
|
if (err) return next(err)
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
res.json(getFormatedVideos(videosList, videosTotal))
|
2016-02-07 04:23:23 -06:00
|
|
|
})
|
|
|
|
}
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
function removeVideo (req, res, next) {
|
2016-05-11 14:19:34 -05:00
|
|
|
const videoId = req.params.id
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-07-18 10:17:52 -05:00
|
|
|
waterfall([
|
2016-05-13 14:14:14 -05:00
|
|
|
function getVideo (callback) {
|
2016-12-11 14:50:51 -06:00
|
|
|
db.Video.load(videoId, callback)
|
2016-05-13 14:14:14 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
function removeFromDB (video, callback) {
|
2016-12-11 14:50:51 -06:00
|
|
|
video.destroy().asCallback(function (err) {
|
2016-05-13 14:14:14 -05:00
|
|
|
if (err) return callback(err)
|
2016-02-04 14:10:33 -06:00
|
|
|
|
2016-05-13 14:14:14 -05:00
|
|
|
return callback(null, video)
|
|
|
|
})
|
|
|
|
},
|
2016-05-10 14:19:24 -05:00
|
|
|
|
2016-05-13 14:14:14 -05:00
|
|
|
function sendInformationToFriends (video, callback) {
|
|
|
|
const params = {
|
|
|
|
name: video.name,
|
2016-12-11 14:50:51 -06:00
|
|
|
remoteId: video.id
|
2016-05-13 14:14:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
friends.removeVideoToFriends(params)
|
|
|
|
|
|
|
|
return callback(null)
|
|
|
|
}
|
2016-06-06 07:15:03 -05:00
|
|
|
], function andFinally (err) {
|
2016-05-13 14:14:14 -05: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 04:23:23 -06:00
|
|
|
})
|
|
|
|
}
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
function searchVideos (req, res, next) {
|
2016-12-11 14:50:51 -06:00
|
|
|
db.Video.searchAndPopulateAuthorAndPod(req.params.value, req.query.field, req.query.start, req.query.count, req.query.sort,
|
2016-06-24 10:42:51 -05:00
|
|
|
function (err, videosList, videosTotal) {
|
2016-02-07 04:23:23 -06:00
|
|
|
if (err) return next(err)
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
res.json(getFormatedVideos(videosList, videosTotal))
|
2016-02-07 04:23:23 -06:00
|
|
|
})
|
|
|
|
}
|
2016-02-04 14:10:33 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-04 14:10:33 -06:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
function getFormatedVideos (videos, videosTotal) {
|
2016-05-11 14:19:34 -05:00
|
|
|
const formatedVideos = []
|
2016-03-18 10:28:09 -05:00
|
|
|
|
2016-06-24 10:42:51 -05:00
|
|
|
videos.forEach(function (video) {
|
|
|
|
formatedVideos.push(video.toFormatedJSON())
|
2016-03-18 10:28:09 -05:00
|
|
|
})
|
|
|
|
|
2016-05-21 12:30:22 -05:00
|
|
|
return {
|
2016-06-24 10:42:51 -05:00
|
|
|
total: videosTotal,
|
2016-05-21 12:30:22 -05:00
|
|
|
data: formatedVideos
|
|
|
|
}
|
2016-03-18 10:28:09 -05:00
|
|
|
}
|