PeerTube/server/lib/activitypub/process/process-flag.ts

84 lines
3.3 KiB
TypeScript
Raw Normal View History

import {
ActivityCreate,
ActivityFlag,
VideoAbuseState,
videoAbusePredefinedReasonsMap
} from '../../../../shared'
import { VideoAbuseObject } from '../../../../shared/models/activitypub/objects'
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
2020-05-07 14:58:24 +02:00
import { sequelizeTypescript } from '../../../initializers/database'
import { VideoAbuseModel } from '../../../models/video/video-abuse'
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
import { Notifier } from '../../notifier'
import { getAPId } from '../../../helpers/activitypub'
2020-06-18 10:45:25 +02:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorSignature, MVideoAbuseAccountVideo } from '../../../types/models'
import { AccountModel } from '@server/models/account/account'
2019-08-02 10:53:36 +02:00
async function processFlagActivity (options: APProcessorOptions<ActivityCreate | ActivityFlag>) {
const { activity, byActor } = options
return retryTransactionWrapper(processCreateVideoAbuse, activity, byActor)
}
// ---------------------------------------------------------------------------
export {
processFlagActivity
}
// ---------------------------------------------------------------------------
2019-08-15 11:53:26 +02:00
async function processCreateVideoAbuse (activity: ActivityCreate | ActivityFlag, byActor: MActorSignature) {
const flag = activity.type === 'Flag' ? activity : (activity.object as VideoAbuseObject)
const account = byActor.Account
2019-07-02 11:21:14 +02:00
if (!account) throw new Error('Cannot create video abuse with the non account actor ' + byActor.url)
2019-08-30 09:40:21 +02:00
const objects = Array.isArray(flag.object) ? flag.object : [ flag.object ]
2019-08-30 09:40:21 +02:00
for (const object of objects) {
try {
logger.debug('Reporting remote abuse for video %s.', getAPId(object))
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: object })
const reporterAccount = await sequelizeTypescript.transaction(async t => AccountModel.load(account.id, t))
const tags = Array.isArray(flag.tag) ? flag.tag : []
const predefinedReasons = tags.map(tag => videoAbusePredefinedReasonsMap[tag.name])
.filter(v => !isNaN(v))
const startAt = flag.startAt
const endAt = flag.endAt
const videoAbuseInstance = await sequelizeTypescript.transaction(async t => {
2019-08-30 09:40:21 +02:00
const videoAbuseData = {
reporterAccountId: account.id,
reason: flag.content,
videoId: video.id,
state: VideoAbuseState.PENDING,
predefinedReasons,
startAt,
endAt
2019-08-30 09:40:21 +02:00
}
const videoAbuseInstance: MVideoAbuseAccountVideo = await VideoAbuseModel.create(videoAbuseData, { transaction: t })
2019-08-30 09:40:21 +02:00
videoAbuseInstance.Video = video
videoAbuseInstance.Account = reporterAccount
2019-07-29 11:59:29 +02:00
2019-08-30 09:40:21 +02:00
logger.info('Remote abuse for video uuid %s created', flag.object)
2019-07-29 11:59:29 +02:00
2019-08-30 09:40:21 +02:00
return videoAbuseInstance
})
const videoAbuseJSON = videoAbuseInstance.toFormattedJSON()
Notifier.Instance.notifyOnNewVideoAbuse({
videoAbuse: videoAbuseJSON,
videoAbuseInstance,
reporter: reporterAccount.Actor.getIdentifier()
})
2019-08-30 09:40:21 +02:00
} catch (err) {
logger.debug('Cannot process report of %s. (Maybe not a video abuse).', getAPId(object), { err })
}
}
}