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

93 lines
2.7 KiB
TypeScript
Raw Normal View History

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,
retryTransactionWrapper
2017-05-15 22:22:03 +02:00
} from '../../../helpers'
import {
authenticate,
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'
import { VideoInstance } from '../../../models'
import { VideoAbuseCreate, UserRight } from '../../../../shared'
2017-05-15 22:22:03 +02:00
const abuseVideoRouter = express.Router()
abuseVideoRouter.get('/abuse',
authenticate,
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) {
const videoInstance = res.locals.video as VideoInstance
2017-05-05 16:53:35 +02:00
const reporterUsername = res.locals.oauth.token.User.username
const body: VideoAbuseCreate = req.body
2017-05-05 16:53:35 +02:00
2017-10-25 11:55:06 +02:00
const abuseToCreate = {
2017-05-05 16:53:35 +02:00
reporterUsername,
reason: body.reason,
2017-05-05 16:53:35 +02:00
videoId: videoInstance.id,
2017-11-15 11:00:25 +01:00
reporterServerId: null // This is our server that reported this abuse
2017-05-05 16:53:35 +02:00
}
2017-10-25 11:55:06 +02:00
await db.sequelize.transaction(async t => {
const abuse = await db.VideoAbuse.create(abuseToCreate, { transaction: t })
2017-11-15 11:00:25 +01:00
// We send the information to the destination server
2017-10-25 11:55:06 +02:00
if (videoInstance.isOwned() === false) {
const reportData = {
reporterUsername,
reportReason: abuse.reason,
videoUUID: videoInstance.uuid
}
2017-11-10 17:27:49 +01:00
// await friends.reportAbuseVideoToFriend(reportData, videoInstance, t)
2017-11-15 11:00:25 +01:00
// TODO: send abuse to origin server
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
}