]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/v1/videos.js
Use async waterfall in videos controller for better readability
[github/Chocobozzz/PeerTube.git] / server / controllers / api / v1 / videos.js
CommitLineData
9f10b292
C
1'use strict'
2
807df9e6 3const async = require('async')
f0f5567b 4const config = require('config')
f0f5567b 5const express = require('express')
cbe2f7c3
C
6const fs = require('fs')
7const path = require('path')
f0f5567b
C
8const multer = require('multer')
9
cbe2f7c3 10const constants = require('../../../initializers/constants')
f0f5567b
C
11const logger = require('../../../helpers/logger')
12const friends = require('../../../lib/friends')
b3b92647
C
13const middlewares = require('../../../middlewares')
14const oAuth2 = middlewares.oauth2
fbf1134e
C
15const pagination = middlewares.pagination
16const reqValidator = middlewares.reqValidators
17const reqValidatorPagination = reqValidator.pagination
18const reqValidatorVideos = reqValidator.videos
cbe2f7c3 19const utils = require('../../../helpers/utils')
f0f5567b
C
20const Videos = require('../../../models/videos') // model
21const videos = require('../../../lib/videos')
22const webtorrent = require('../../../lib/webtorrent')
23
24const router = express.Router()
25const uploads = config.get('storage.uploads')
9f10b292
C
26
27// multer configuration
f0f5567b 28const storage = multer.diskStorage({
9f10b292
C
29 destination: function (req, file, cb) {
30 cb(null, uploads)
31 },
32
33 filename: function (req, file, cb) {
f0f5567b 34 let extension = ''
9f10b292
C
35 if (file.mimetype === 'video/webm') extension = 'webm'
36 else if (file.mimetype === 'video/mp4') extension = 'mp4'
37 else if (file.mimetype === 'video/ogg') extension = 'ogv'
bc503c2a
C
38 utils.generateRandomString(16, function (err, randomString) {
39 const fieldname = err ? undefined : randomString
9f10b292
C
40 cb(null, fieldname + '.' + extension)
41 })
42 }
43})
44
8c9c1942 45const reqFiles = multer({ storage: storage }).fields([{ name: 'videofile', maxCount: 1 }])
cbe2f7c3 46const thumbnailsDir = path.join(__dirname, '..', '..', '..', '..', config.get('storage.thumbnails'))
8c308c2b 47
fbf1134e
C
48router.get('/',
49 reqValidatorPagination.pagination,
50 pagination.setPagination,
51 listVideos
52)
53router.post('/',
54 oAuth2.authenticate,
55 reqFiles,
56 reqValidatorVideos.videosAdd,
57 addVideo
58)
59router.get('/:id',
60 reqValidatorVideos.videosGet,
61 getVideos
62)
63router.delete('/:id',
64 oAuth2.authenticate,
65 reqValidatorVideos.videosRemove,
66 removeVideo
67)
68router.get('/search/:name',
69 reqValidatorVideos.videosSearch,
70 reqValidatorPagination.pagination,
71 pagination.setPagination,
72 searchVideos
73)
8c308c2b 74
9f10b292 75// ---------------------------------------------------------------------------
c45f7f84 76
9f10b292 77module.exports = router
c45f7f84 78
9f10b292 79// ---------------------------------------------------------------------------
c45f7f84 80
9f10b292 81function addVideo (req, res, next) {
bc503c2a
C
82 const videoFile = req.files.videofile[0]
83 const videoInfos = req.body
9f10b292 84
807df9e6
C
85 async.waterfall([
86 function (callback) {
87 videos.seed(videoFile.path, callback)
88 },
8c308c2b 89
807df9e6
C
90 function seed (torrent, callback) {
91 videos.getVideoDuration(videoFile.path, function (err, duration) {
92 if (err) {
93 // TODO: unseed the video
94 logger.error('Cannot retrieve metadata of the file.')
95 return next(err)
96 }
97
98 callback(null, torrent, duration)
99 })
100 },
c173e565 101
807df9e6 102 function createThumbnail (torrent, duration, callback) {
57a56079 103 videos.createVideoThumbnail(videoFile.path, function (err, thumbnailName) {
3a8a8b51 104 if (err) {
cbe2f7c3
C
105 // TODO: unseed the video
106 logger.error('Cannot make a thumbnail of the video file.')
807df9e6 107 return callback(err)
3a8a8b51
C
108 }
109
807df9e6
C
110 callback(null, torrent, duration, thumbnailName)
111 })
112 },
113
114 function insertIntoDB (torrent, duration, thumbnailName, callback) {
115 const videoData = {
116 name: videoInfos.name,
117 namePath: videoFile.filename,
118 description: videoInfos.description,
119 magnetUri: torrent.magnetURI,
120 author: res.locals.oauth.token.user.username,
121 duration: duration,
122 thumbnail: thumbnailName
123 }
124
125 Videos.add(videoData, function (err, insertedVideo) {
126 if (err) {
127 // TODO unseed the video
128 // TODO remove thumbnail
129 logger.error('Cannot insert this video in the database.')
130 return callback(err)
cbe2f7c3 131 }
3a8a8b51 132
807df9e6 133 return callback(null, torrent, duration, thumbnailName, videoData, insertedVideo)
3a8a8b51 134 })
807df9e6
C
135 },
136
137 function getThumbnailBase64 (torrent, duration, thumbnailName, videoData, insertedVideo, callback) {
138 videoData.createdDate = insertedVideo.createdDate
139
140 fs.readFile(thumbnailsDir + thumbnailName, function (err, thumbnailData) {
141 if (err) {
142 // TODO unseed the video
143 // TODO remove thumbnail
144 // TODO: remove video
145 logger.error('Cannot read the thumbnail of the video')
146 return callback(err)
147 }
148
149 return callback(null, videoData, thumbnailData)
150 })
151 },
152
153 function sendToFriends (videoData, thumbnailData, callback) {
154 // Set the image in base64
155 videoData.thumbnailBase64 = new Buffer(thumbnailData).toString('base64')
156
157 // Now we'll add the video's meta data to our friends
158 friends.addVideoToFriends(videoData)
159
160 return callback(null)
161 }
162
163 ], function (err) {
164 if (err) {
165 logger.error('Cannot insert the video.')
166 return next(err)
167 }
168
169 // TODO : include Location of the new video -> 201
170 return res.type('json').status(204).end()
9f10b292
C
171 })
172}
8c308c2b 173
9f10b292 174function getVideos (req, res, next) {
bc503c2a 175 Videos.get(req.params.id, function (err, videoObj) {
9f10b292 176 if (err) return next(err)
8c308c2b 177
bc503c2a 178 const state = videos.getVideoState(videoObj)
2df82d42
C
179 if (state.exist === false) {
180 return res.type('json').status(204).end()
9f10b292 181 }
8c308c2b 182
bc503c2a 183 res.json(getFormatedVideo(videoObj))
9f10b292
C
184 })
185}
8c308c2b 186
9f10b292 187function listVideos (req, res, next) {
fbf1134e 188 Videos.list(req.query.start, req.query.count, function (err, videosList) {
9f10b292 189 if (err) return next(err)
c45f7f84 190
bc503c2a 191 res.json(getFormatedVideos(videosList))
9f10b292
C
192 })
193}
c45f7f84 194
9f10b292 195function removeVideo (req, res, next) {
bc503c2a 196 const videoId = req.params.id
8c308c2b 197
807df9e6
C
198 async.waterfall([
199 function getVideo (callback) {
200 Videos.get(videoId, callback)
201 },
202
203 function removeVideoTorrent (video, callback) {
204 removeTorrent(video.magnetUri, function () {
205 return callback(null, video)
206 })
207 },
208
209 function removeFromDB (video, callback) {
9f10b292 210 Videos.removeOwned(req.params.id, function (err) {
807df9e6 211 if (err) return callback(err)
c173e565 212
807df9e6
C
213 return callback(null, video)
214 })
215 },
cbe2f7c3 216
807df9e6
C
217 function removeVideoData (video, callback) {
218 videos.removeVideosDataFromDisk([ video ], function (err) {
219 if (err) logger.error('Cannot remove video data from disk.', { video: video })
c173e565 220
807df9e6 221 return callback(null, video)
c173e565 222 })
807df9e6
C
223 },
224
225 function sendInformationToFriends (video, callback) {
226 const params = {
227 name: video.name,
228 magnetUri: video.magnetUri
229 }
230
231 friends.removeVideoToFriends(params)
232
233 return callback(null)
234 }
235 ], function (err) {
236 if (err) {
237 logger.error('Errors when removed the video.', { error: err })
238 return next(err)
239 }
240
241 return res.type('json').status(204).end()
9f10b292
C
242 })
243}
8c308c2b 244
9f10b292 245function searchVideos (req, res, next) {
fbf1134e 246 Videos.search(req.params.name, req.query.start, req.query.count, function (err, videosList) {
9f10b292 247 if (err) return next(err)
8c308c2b 248
bc503c2a 249 res.json(getFormatedVideos(videosList))
9f10b292
C
250 })
251}
c173e565 252
9f10b292 253// ---------------------------------------------------------------------------
c173e565 254
bc503c2a
C
255function getFormatedVideo (videoObj) {
256 const formatedVideo = {
257 id: videoObj._id,
258 name: videoObj.name,
259 description: videoObj.description,
260 podUrl: videoObj.podUrl,
261 isLocal: videos.getVideoState(videoObj).owned,
262 magnetUri: videoObj.magnetUri,
263 author: videoObj.author,
264 duration: videoObj.duration,
bb10240e
C
265 thumbnailPath: constants.THUMBNAILS_STATIC_PATH + '/' + videoObj.thumbnail,
266 createdDate: videoObj.createdDate
2df82d42
C
267 }
268
bc503c2a 269 return formatedVideo
2df82d42
C
270}
271
bc503c2a
C
272function getFormatedVideos (videosObj) {
273 const formatedVideos = []
2df82d42 274
bc503c2a
C
275 videosObj.forEach(function (videoObj) {
276 formatedVideos.push(getFormatedVideo(videoObj))
2df82d42
C
277 })
278
bc503c2a 279 return formatedVideos
2df82d42
C
280}
281
9f10b292
C
282// Maybe the torrent is not seeded, but we catch the error to don't stop the removing process
283function removeTorrent (magnetUri, callback) {
284 try {
285 webtorrent.remove(magnetUri, callback)
286 } catch (err) {
287 logger.warn('Cannot remove the torrent from WebTorrent', { err: err })
288 return callback(null)
c173e565 289 }
9f10b292 290}