X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fcontrollers%2Fapi%2Fvideos%2Fabuse.ts;h=29f901f605bb90d3b83d8a131bd790afc2fa71e9;hb=608624252466acf9f1d9ee1c1170bd4fe4d18d18;hp=c9313d5f5b680fb2b42326a266342930cc63c32b;hpb=0aef76c479bc7fc758e70e1cd478ade46761b51b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/api/videos/abuse.ts b/server/controllers/api/videos/abuse.ts index c9313d5f5..29f901f60 100644 --- a/server/controllers/api/videos/abuse.ts +++ b/server/controllers/api/videos/abuse.ts @@ -1,7 +1,6 @@ import * as express from 'express' import { database as db } from '../../../initializers/database' -import * as friends from '../../../lib/friends' import { logger, getFormattedObjects, @@ -9,31 +8,32 @@ import { } from '../../../helpers' import { authenticate, - ensureIsAdmin, + ensureUserHasRight, paginationValidator, videoAbuseReportValidator, videoAbusesSortValidator, setVideoAbusesSort, - setPagination + setPagination, + asyncMiddleware } from '../../../middlewares' import { VideoInstance } from '../../../models' -import { VideoAbuseCreate } from '../../../../shared' +import { VideoAbuseCreate, UserRight } from '../../../../shared' const abuseVideoRouter = express.Router() abuseVideoRouter.get('/abuse', authenticate, - ensureIsAdmin, + ensureUserHasRight(UserRight.MANAGE_VIDEO_ABUSES), paginationValidator, videoAbusesSortValidator, setVideoAbusesSort, setPagination, - listVideoAbuses + asyncMiddleware(listVideoAbuses) ) abuseVideoRouter.post('/:id/abuse', authenticate, videoAbuseReportValidator, - reportVideoAbuseRetryWrapper + asyncMiddleware(reportVideoAbuseRetryWrapper) ) // --------------------------------------------------------------------------- @@ -44,55 +44,49 @@ export { // --------------------------------------------------------------------------- -function listVideoAbuses (req: express.Request, res: express.Response, next: express.NextFunction) { - db.VideoAbuse.listForApi(req.query.start, req.query.count, req.query.sort) - .then(result => res.json(getFormattedObjects(result.data, result.total))) - .catch(err => next(err)) +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)) } -function reportVideoAbuseRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) { +async function reportVideoAbuseRetryWrapper (req: express.Request, res: express.Response, next: express.NextFunction) { const options = { arguments: [ req, res ], errorMessage: 'Cannot report abuse to the video with many retries.' } - retryTransactionWrapper(reportVideoAbuse, options) - .then(() => res.type('json').status(204).end()) - .catch(err => next(err)) + await retryTransactionWrapper(reportVideoAbuse, options) + + return res.type('json').status(204).end() } -function reportVideoAbuse (req: express.Request, res: express.Response) { +async function reportVideoAbuse (req: express.Request, res: express.Response) { const videoInstance = res.locals.video as VideoInstance const reporterUsername = res.locals.oauth.token.User.username const body: VideoAbuseCreate = req.body - const abuse = { + const abuseToCreate = { reporterUsername, reason: body.reason, videoId: videoInstance.id, - reporterPodId: null // This is our pod that reported this abuse + reporterServerId: null // This is our server that reported this abuse } - return db.sequelize.transaction(t => { - return db.VideoAbuse.create(abuse, { transaction: t }) - .then(abuse => { - // We send the information to the destination pod - if (videoInstance.isOwned() === false) { - const reportData = { - reporterUsername, - reportReason: abuse.reason, - videoUUID: videoInstance.uuid - } - - return friends.reportAbuseVideoToFriend(reportData, videoInstance, t).then(() => videoInstance) - } - - return videoInstance - }) - }) - .then((videoInstance: VideoInstance) => logger.info('Abuse report for video %s created.', videoInstance.name)) - .catch(err => { - logger.debug('Cannot update the video.', err) - throw err + await db.sequelize.transaction(async t => { + const abuse = await db.VideoAbuse.create(abuseToCreate, { transaction: t }) + // We send the information to the destination server + if (videoInstance.isOwned() === false) { + const reportData = { + reporterUsername, + reportReason: abuse.reason, + videoUUID: videoInstance.uuid + } + + // await friends.reportAbuseVideoToFriend(reportData, videoInstance, t) + // TODO: send abuse to origin server + } }) + + logger.info('Abuse report for video %s created.', videoInstance.name) }