PeerTube/server/controllers/api/videos/abuse.ts

118 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-05-15 22:22:03 +02:00
import express = require('express')
import { waterfall } from 'async'
2017-05-05 16:53:35 +02:00
2017-05-22 20:58:25 +02:00
import { database as db } from '../../../initializers/database'
2017-05-15 22:22:03 +02:00
import friends = require('../../../lib/friends')
import {
logger,
getFormatedObjects,
retryTransactionWrapper,
startSerializableTransaction,
commitTransaction,
rollbackTransaction
} from '../../../helpers'
import {
authenticate,
ensureIsAdmin,
paginationValidator,
videoAbuseReportValidator,
videoAbusesSortValidator,
setVideoAbusesSort,
setPagination
} from '../../../middlewares'
const abuseVideoRouter = express.Router()
abuseVideoRouter.get('/abuse',
authenticate,
ensureIsAdmin,
paginationValidator,
videoAbusesSortValidator,
setVideoAbusesSort,
setPagination,
2017-05-05 16:53:35 +02:00
listVideoAbuses
)
2017-05-15 22:22:03 +02:00
abuseVideoRouter.post('/:id/abuse',
authenticate,
videoAbuseReportValidator,
2017-05-05 16:53:35 +02:00
reportVideoAbuseRetryWrapper
)
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
abuseVideoRouter
}
2017-05-05 16:53:35 +02:00
// ---------------------------------------------------------------------------
function listVideoAbuses (req, res, next) {
db.VideoAbuse.listForApi(req.query.start, req.query.count, req.query.sort, function (err, abusesList, abusesTotal) {
if (err) return next(err)
2017-05-15 22:22:03 +02:00
res.json(getFormatedObjects(abusesList, abusesTotal))
2017-05-05 16:53:35 +02:00
})
}
function reportVideoAbuseRetryWrapper (req, res, next) {
const options = {
arguments: [ req, res ],
errorMessage: 'Cannot report abuse to the video with many retries.'
}
2017-05-15 22:22:03 +02:00
retryTransactionWrapper(reportVideoAbuse, options, function (err) {
2017-05-05 16:53:35 +02:00
if (err) return next(err)
return res.type('json').status(204).end()
})
}
function reportVideoAbuse (req, res, finalCallback) {
const videoInstance = res.locals.video
const reporterUsername = res.locals.oauth.token.User.username
const abuse = {
reporterUsername,
reason: req.body.reason,
videoId: videoInstance.id,
reporterPodId: null // This is our pod that reported this abuse
}
waterfall([
2017-05-15 22:22:03 +02:00
startSerializableTransaction,
2017-05-05 16:53:35 +02:00
function createAbuse (t, callback) {
db.VideoAbuse.create(abuse).asCallback(function (err, abuse) {
return callback(err, t, abuse)
})
},
function sendToFriendsIfNeeded (t, abuse, callback) {
// We send the information to the destination pod
if (videoInstance.isOwned() === false) {
const reportData = {
reporterUsername,
reportReason: abuse.reason,
videoRemoteId: videoInstance.remoteId
}
friends.reportAbuseVideoToFriend(reportData, videoInstance)
}
return callback(null, t)
},
2017-05-15 22:22:03 +02:00
commitTransaction
2017-05-05 16:53:35 +02:00
], function andFinally (err, t) {
if (err) {
logger.debug('Cannot update the video.', { error: err })
2017-05-15 22:22:03 +02:00
return rollbackTransaction(err, t, finalCallback)
2017-05-05 16:53:35 +02:00
}
logger.info('Abuse report for video %s created.', videoInstance.name)
return finalCallback(null)
})
}