]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/videos.js
Server: try to have a better video integrity
[github/Chocobozzz/PeerTube.git] / server / controllers / api / videos.js
CommitLineData
9f10b292
C
1'use strict'
2
f0f5567b 3const express = require('express')
558d7c23 4const fs = require('fs')
f0f5567b 5const multer = require('multer')
558d7c23 6const path = require('path')
1a42c9e2 7const waterfall = require('async/waterfall')
f0f5567b 8
f253b1c1 9const constants = require('../../initializers/constants')
feb4bdfd 10const db = require('../../initializers/database')
f253b1c1
C
11const logger = require('../../helpers/logger')
12const friends = require('../../lib/friends')
13const middlewares = require('../../middlewares')
55fa55a9 14const admin = middlewares.admin
69b0a27c 15const oAuth = middlewares.oauth
fbf1134e 16const pagination = middlewares.pagination
fc51fde0
C
17const validators = middlewares.validators
18const validatorsPagination = validators.pagination
19const validatorsSort = validators.sort
20const validatorsVideos = validators.videos
46246b5f 21const search = middlewares.search
a877d5ac 22const sort = middlewares.sort
f253b1c1 23const utils = require('../../helpers/utils')
f0f5567b
C
24
25const router = express.Router()
9f10b292
C
26
27// multer configuration
f0f5567b 28const storage = multer.diskStorage({
9f10b292 29 destination: function (req, file, cb) {
b3d92510 30 cb(null, constants.CONFIG.STORAGE.VIDEOS_DIR)
9f10b292
C
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 }])
8c308c2b 46
55fa55a9
C
47router.get('/abuse',
48 oAuth.authenticate,
49 admin.ensureIsAdmin,
50 validatorsPagination.pagination,
51 validatorsSort.videoAbusesSort,
52 sort.setVideoAbusesSort,
53 pagination.setPagination,
54 listVideoAbuses
55)
56router.post('/:id/abuse',
57 oAuth.authenticate,
58 validatorsVideos.videoAbuseReport,
59 reportVideoAbuse
60)
61
fbf1134e 62router.get('/',
fc51fde0
C
63 validatorsPagination.pagination,
64 validatorsSort.videosSort,
a877d5ac 65 sort.setVideosSort,
fbf1134e
C
66 pagination.setPagination,
67 listVideos
68)
7b1f49de
C
69router.put('/:id',
70 oAuth.authenticate,
71 reqFiles,
72 validatorsVideos.videosUpdate,
ed04d94f 73 updateVideoRetryWrapper
7b1f49de 74)
fbf1134e 75router.post('/',
69b0a27c 76 oAuth.authenticate,
fbf1134e 77 reqFiles,
fc51fde0 78 validatorsVideos.videosAdd,
ed04d94f 79 addVideoRetryWrapper
fbf1134e
C
80)
81router.get('/:id',
fc51fde0 82 validatorsVideos.videosGet,
68ce3ae0 83 getVideo
fbf1134e
C
84)
85router.delete('/:id',
69b0a27c 86 oAuth.authenticate,
fc51fde0 87 validatorsVideos.videosRemove,
fbf1134e
C
88 removeVideo
89)
46246b5f 90router.get('/search/:value',
fc51fde0
C
91 validatorsVideos.videosSearch,
92 validatorsPagination.pagination,
93 validatorsSort.videosSort,
a877d5ac 94 sort.setVideosSort,
fbf1134e 95 pagination.setPagination,
46246b5f 96 search.setVideosSearch,
fbf1134e
C
97 searchVideos
98)
8c308c2b 99
9f10b292 100// ---------------------------------------------------------------------------
c45f7f84 101
9f10b292 102module.exports = router
c45f7f84 103
9f10b292 104// ---------------------------------------------------------------------------
c45f7f84 105
ed04d94f
C
106// Wrapper to video add that retry the function if there is a database error
107// We need this because we run the transaction in SERIALIZABLE isolation that can fail
108function addVideoRetryWrapper (req, res, next) {
109 utils.transactionRetryer(
110 function (callback) {
111 return addVideo(req, res, req.files.videofile[0], callback)
112 },
113 function (err) {
114 if (err) {
115 logger.error('Cannot insert the video with many retries.', { error: err })
116 return next(err)
117 }
118
119 // TODO : include Location of the new video -> 201
120 return res.type('json').status(204).end()
121 }
122 )
123}
124
125function addVideo (req, res, videoFile, callback) {
bc503c2a 126 const videoInfos = req.body
9f10b292 127
1a42c9e2 128 waterfall([
807df9e6 129
ed04d94f
C
130 function startTransaction (callbackWaterfall) {
131 db.sequelize.transaction({ isolationLevel: 'SERIALIZABLE' }).asCallback(function (err, t) {
132 return callbackWaterfall(err, t)
7920c273
C
133 })
134 },
135
ed04d94f 136 function findOrCreateAuthor (t, callbackWaterfall) {
4712081f 137 const user = res.locals.oauth.token.User
feb4bdfd 138
4ff0d862
C
139 const name = user.username
140 // null because it is OUR pod
141 const podId = null
142 const userId = user.id
4712081f 143
4ff0d862 144 db.Author.findOrCreateAuthor(name, podId, userId, t, function (err, authorInstance) {
ed04d94f 145 return callbackWaterfall(err, t, authorInstance)
7920c273
C
146 })
147 },
148
ed04d94f 149 function findOrCreateTags (t, author, callbackWaterfall) {
7920c273 150 const tags = videoInfos.tags
4ff0d862
C
151
152 db.Tag.findOrCreateTags(tags, t, function (err, tagInstances) {
ed04d94f 153 return callbackWaterfall(err, t, author, tagInstances)
feb4bdfd
C
154 })
155 },
156
ed04d94f 157 function createVideoObject (t, author, tagInstances, callbackWaterfall) {
807df9e6
C
158 const videoData = {
159 name: videoInfos.name,
558d7c23
C
160 remoteId: null,
161 extname: path.extname(videoFile.filename),
807df9e6 162 description: videoInfos.description,
67100f1f 163 duration: videoFile.duration,
feb4bdfd 164 authorId: author.id
807df9e6
C
165 }
166
feb4bdfd 167 const video = db.Video.build(videoData)
558d7c23 168
ed04d94f 169 return callbackWaterfall(null, t, author, tagInstances, video)
558d7c23
C
170 },
171
feb4bdfd 172 // Set the videoname the same as the id
ed04d94f 173 function renameVideoFile (t, author, tagInstances, video, callbackWaterfall) {
558d7c23
C
174 const videoDir = constants.CONFIG.STORAGE.VIDEOS_DIR
175 const source = path.join(videoDir, videoFile.filename)
f285faa0 176 const destination = path.join(videoDir, video.getVideoFilename())
558d7c23
C
177
178 fs.rename(source, destination, function (err) {
ed04d94f
C
179 if (err) return callbackWaterfall(err)
180
181 // This is important in case if there is another attempt
182 videoFile.filename = video.getVideoFilename()
183 return callbackWaterfall(null, t, author, tagInstances, video)
558d7c23
C
184 })
185 },
186
ed04d94f 187 function insertVideoIntoDB (t, author, tagInstances, video, callbackWaterfall) {
7920c273
C
188 const options = { transaction: t }
189
190 // Add tags association
191 video.save(options).asCallback(function (err, videoCreated) {
ed04d94f 192 if (err) return callbackWaterfall(err)
7920c273 193
feb4bdfd
C
194 // Do not forget to add Author informations to the created video
195 videoCreated.Author = author
196
ed04d94f 197 return callbackWaterfall(err, t, tagInstances, videoCreated)
3a8a8b51 198 })
807df9e6
C
199 },
200
ed04d94f 201 function associateTagsToVideo (t, tagInstances, video, callbackWaterfall) {
7920c273
C
202 const options = { transaction: t }
203
204 video.setTags(tagInstances, options).asCallback(function (err) {
205 video.Tags = tagInstances
206
ed04d94f 207 return callbackWaterfall(err, t, video)
7920c273
C
208 })
209 },
210
ed04d94f 211 function sendToFriends (t, video, callbackWaterfall) {
7b1f49de 212 video.toAddRemoteJSON(function (err, remoteVideo) {
ed04d94f 213 if (err) return callbackWaterfall(err)
807df9e6 214
528a9efa 215 // Now we'll add the video's meta data to our friends
ed04d94f
C
216 friends.addVideoToFriends(remoteVideo, t, function (err) {
217 return callbackWaterfall(err, t)
218 })
528a9efa 219 })
807df9e6
C
220 }
221
7b1f49de
C
222 ], function andFinally (err, t) {
223 if (err) {
ed04d94f
C
224 // This is just a debug because we will retry the insert
225 logger.debug('Cannot insert the video.', { error: err })
7b1f49de
C
226
227 // Abort transaction?
228 if (t) t.rollback()
229
ed04d94f 230 return callback(err)
7b1f49de
C
231 }
232
233 // Commit transaction
234 t.commit()
235
ed04d94f
C
236 logger.info('Video with name %s created.', videoInfos.name)
237
238 return callback(null)
7b1f49de
C
239 })
240}
241
ed04d94f
C
242function updateVideoRetryWrapper (req, res, next) {
243 utils.transactionRetryer(
244 function (callback) {
245 return updateVideo(req, res, callback)
246 },
247 function (err) {
248 if (err) {
249 logger.error('Cannot update the video with many retries.', { error: err })
250 return next(err)
251 }
252
253 // TODO : include Location of the new video -> 201
254 return res.type('json').status(204).end()
255 }
256 )
257}
258
259function updateVideo (req, res, finalCallback) {
818f7987 260 const videoInstance = res.locals.video
7b1f49de
C
261 const videoInfosToUpdate = req.body
262
263 waterfall([
264
265 function startTransaction (callback) {
266 db.sequelize.transaction().asCallback(function (err, t) {
267 return callback(err, t)
268 })
269 },
270
271 function findOrCreateTags (t, callback) {
272 if (videoInfosToUpdate.tags) {
273 db.Tag.findOrCreateTags(videoInfosToUpdate.tags, t, function (err, tagInstances) {
274 return callback(err, t, tagInstances)
275 })
276 } else {
277 return callback(null, t, null)
278 }
279 },
280
281 function updateVideoIntoDB (t, tagInstances, callback) {
282 const options = { transaction: t }
283
284 if (videoInfosToUpdate.name) videoInstance.set('name', videoInfosToUpdate.name)
285 if (videoInfosToUpdate.description) videoInstance.set('description', videoInfosToUpdate.description)
286
287 // Add tags association
288 videoInstance.save(options).asCallback(function (err) {
7b1f49de
C
289 return callback(err, t, tagInstances)
290 })
291 },
292
293 function associateTagsToVideo (t, tagInstances, callback) {
294 if (tagInstances) {
295 const options = { transaction: t }
296
297 videoInstance.setTags(tagInstances, options).asCallback(function (err) {
298 videoInstance.Tags = tagInstances
299
300 return callback(err, t)
301 })
302 } else {
303 return callback(null, t)
304 }
305 },
306
307 function sendToFriends (t, callback) {
308 const json = videoInstance.toUpdateRemoteJSON()
309
310 // Now we'll update the video's meta data to our friends
ed04d94f
C
311 friends.updateVideoToFriends(json, t, function (err) {
312 return callback(err, t)
313 })
7b1f49de
C
314 }
315
7920c273 316 ], function andFinally (err, t) {
807df9e6 317 if (err) {
ed04d94f 318 logger.debug('Cannot update the video.', { error: err })
7920c273
C
319
320 // Abort transaction?
321 if (t) t.rollback()
322
ed04d94f 323 return finalCallback(err)
807df9e6
C
324 }
325
7920c273
C
326 // Commit transaction
327 t.commit()
328
ed04d94f 329 return finalCallback(null)
9f10b292
C
330 })
331}
8c308c2b 332
68ce3ae0 333function getVideo (req, res, next) {
818f7987
C
334 const videoInstance = res.locals.video
335 res.json(videoInstance.toFormatedJSON())
9f10b292 336}
8c308c2b 337
9f10b292 338function listVideos (req, res, next) {
feb4bdfd 339 db.Video.listForApi(req.query.start, req.query.count, req.query.sort, function (err, videosList, videosTotal) {
9f10b292 340 if (err) return next(err)
c45f7f84 341
55fa55a9 342 res.json(utils.getFormatedObjects(videosList, videosTotal))
9f10b292
C
343 })
344}
c45f7f84 345
9f10b292 346function removeVideo (req, res, next) {
818f7987 347 const videoInstance = res.locals.video
8c308c2b 348
818f7987 349 videoInstance.destroy().asCallback(function (err) {
807df9e6
C
350 if (err) {
351 logger.error('Errors when removed the video.', { error: err })
352 return next(err)
353 }
354
355 return res.type('json').status(204).end()
9f10b292
C
356 })
357}
8c308c2b 358
9f10b292 359function searchVideos (req, res, next) {
7920c273
C
360 db.Video.searchAndPopulateAuthorAndPodAndTags(
361 req.params.value, req.query.field, req.query.start, req.query.count, req.query.sort,
362 function (err, videosList, videosTotal) {
363 if (err) return next(err)
8c308c2b 364
55fa55a9 365 res.json(utils.getFormatedObjects(videosList, videosTotal))
7920c273
C
366 }
367 )
9f10b292 368}
c173e565 369
55fa55a9
C
370function listVideoAbuses (req, res, next) {
371 db.VideoAbuse.listForApi(req.query.start, req.query.count, req.query.sort, function (err, abusesList, abusesTotal) {
372 if (err) return next(err)
2df82d42 373
55fa55a9 374 res.json(utils.getFormatedObjects(abusesList, abusesTotal))
2df82d42 375 })
55fa55a9 376}
2df82d42 377
55fa55a9
C
378function reportVideoAbuse (req, res, next) {
379 const videoInstance = res.locals.video
380 const reporterUsername = res.locals.oauth.token.User.username
381
382 const abuse = {
383 reporterUsername,
384 reason: req.body.reason,
385 videoId: videoInstance.id,
386 reporterPodId: null // This is our pod that reported this abuse
68ce3ae0 387 }
55fa55a9
C
388
389 db.VideoAbuse.create(abuse).asCallback(function (err) {
390 if (err) return next(err)
391
392 // We send the information to the destination pod
393 if (videoInstance.isOwned() === false) {
394 const reportData = {
395 reporterUsername,
396 reportReason: abuse.reason,
397 videoRemoteId: videoInstance.remoteId
398 }
399
400 friends.reportAbuseVideoToFriend(reportData, videoInstance)
401 }
402
403 return res.type('json').status(204).end()
404 })
2df82d42 405}
55fa55a9 406