2017-06-05 21:53:49 +02:00
|
|
|
import * as express from 'express'
|
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 {
|
|
|
|
logger,
|
2017-08-25 11:45:31 +02:00
|
|
|
getFormattedObjects,
|
2017-07-05 13:26:25 +02:00
|
|
|
retryTransactionWrapper
|
2017-05-15 22:22:03 +02:00
|
|
|
} from '../../../helpers'
|
|
|
|
import {
|
|
|
|
authenticate,
|
2017-10-27 16:55:03 +02:00
|
|
|
ensureUserHasRight,
|
2017-05-15 22:22:03 +02:00
|
|
|
paginationValidator,
|
|
|
|
videoAbuseReportValidator,
|
|
|
|
videoAbusesSortValidator,
|
|
|
|
setVideoAbusesSort,
|
2017-10-25 11:55:06 +02:00
|
|
|
setPagination,
|
|
|
|
asyncMiddleware
|
2017-05-15 22:22:03 +02:00
|
|
|
} from '../../../middlewares'
|
2017-07-05 13:26:25 +02:00
|
|
|
import { VideoInstance } from '../../../models'
|
2017-10-27 16:55:03 +02:00
|
|
|
import { VideoAbuseCreate, UserRight } from '../../../../shared'
|
2017-11-15 15:12:23 +01:00
|
|
|
import { sendVideoAbuse } from '../../../lib/index'
|
2017-05-15 22:22:03 +02:00
|
|
|
|
|
|
|
const abuseVideoRouter = express.Router()
|
|
|
|
|
|
|
|
abuseVideoRouter.get('/abuse',
|
|
|
|
authenticate,
|
2017-10-27 16:55:03 +02:00
|
|
|
ensureUserHasRight(UserRight.MANAGE_VIDEO_ABUSES),
|
2017-05-15 22:22:03 +02:00
|
|
|
paginationValidator,
|
|
|
|
videoAbusesSortValidator,
|
|
|
|
setVideoAbusesSort,
|
|
|
|
setPagination,
|
2017-10-25 11:55:06 +02:00
|
|
|
asyncMiddleware(listVideoAbuses)
|
2017-05-05 16:53:35 +02:00
|
|
|
)
|
2017-05-15 22:22:03 +02:00
|
|
|
abuseVideoRouter.post('/:id/abuse',
|
|
|
|
authenticate,
|
|
|
|
videoAbuseReportValidator,
|
2017-10-25 11:55:06 +02:00
|
|
|
asyncMiddleware(reportVideoAbuseRetryWrapper)
|
2017-05-05 16:53:35 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
abuseVideoRouter
|
|
|
|
}
|
2017-05-05 16:53:35 +02:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
async function listVideoAbuses (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const resultList = await db.VideoAbuse.listForApi(req.query.start, req.query.count, req.query.sort)
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
2017-05-05 16:53:35 +02:00
|
|
|
}
|
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
async function reportVideoAbuseRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-05-05 16:53:35 +02:00
|
|
|
const options = {
|
|
|
|
arguments: [ req, res ],
|
|
|
|
errorMessage: 'Cannot report abuse to the video with many retries.'
|
|
|
|
}
|
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
await retryTransactionWrapper(reportVideoAbuse, options)
|
|
|
|
|
|
|
|
return res.type('json').status(204).end()
|
2017-05-05 16:53:35 +02:00
|
|
|
}
|
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
async function reportVideoAbuse (req: express.Request, res: express.Response) {
|
2017-07-11 16:01:56 +02:00
|
|
|
const videoInstance = res.locals.video as VideoInstance
|
2017-11-15 15:12:23 +01:00
|
|
|
const reporterAccount = res.locals.oauth.token.User.Account
|
2017-07-10 19:43:21 +02:00
|
|
|
const body: VideoAbuseCreate = req.body
|
2017-05-05 16:53:35 +02:00
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
const abuseToCreate = {
|
2017-11-15 15:12:23 +01:00
|
|
|
reporterAccountId: reporterAccount.id,
|
2017-07-10 19:43:21 +02:00
|
|
|
reason: body.reason,
|
2017-11-15 15:12:23 +01:00
|
|
|
videoId: videoInstance.id
|
2017-05-05 16:53:35 +02:00
|
|
|
}
|
|
|
|
|
2017-10-25 11:55:06 +02:00
|
|
|
await db.sequelize.transaction(async t => {
|
2017-11-15 15:12:23 +01:00
|
|
|
const videoAbuseInstance = await db.VideoAbuse.create(abuseToCreate, { transaction: t })
|
|
|
|
|
|
|
|
// We send the video abuse to the origin server
|
2017-10-25 11:55:06 +02:00
|
|
|
if (videoInstance.isOwned() === false) {
|
2017-11-15 15:12:23 +01:00
|
|
|
await sendVideoAbuse(reporterAccount, videoAbuseInstance, videoInstance, t)
|
2017-10-25 11:55:06 +02:00
|
|
|
}
|
2017-05-05 16:53:35 +02:00
|
|
|
})
|
2017-10-25 11:55:06 +02:00
|
|
|
|
|
|
|
logger.info('Abuse report for video %s created.', videoInstance.name)
|
2017-05-05 16:53:35 +02:00
|
|
|
}
|