]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/activitypub/process/process-flag.ts
1f8a80c140bb29758c718971d75a20ffda9696ad
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process / process-flag.ts
1 import { ActivityCreate, ActivityFlag, VideoAbuseState } from '../../../../shared'
2 import { VideoAbuseObject } from '../../../../shared/models/activitypub/objects'
3 import { retryTransactionWrapper } from '../../../helpers/database-utils'
4 import { logger } from '../../../helpers/logger'
5 import { sequelizeTypescript } from '../../../initializers'
6 import { VideoAbuseModel } from '../../../models/video/video-abuse'
7 import { getOrCreateVideoAndAccountAndChannel } from '../videos'
8 import { Notifier } from '../../notifier'
9 import { getAPId } from '../../../helpers/activitypub'
10 import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
11 import { SignatureActorModel } from '../../../typings/models'
12
13 async function processFlagActivity (options: APProcessorOptions<ActivityCreate | ActivityFlag>) {
14 const { activity, byActor } = options
15 return retryTransactionWrapper(processCreateVideoAbuse, activity, byActor)
16 }
17
18 // ---------------------------------------------------------------------------
19
20 export {
21 processFlagActivity
22 }
23
24 // ---------------------------------------------------------------------------
25
26 async function processCreateVideoAbuse (activity: ActivityCreate | ActivityFlag, byActor: SignatureActorModel) {
27 const flag = activity.type === 'Flag' ? activity : (activity.object as VideoAbuseObject)
28
29 logger.debug('Reporting remote abuse for video %s.', getAPId(flag.object))
30
31 const account = byActor.Account
32 if (!account) throw new Error('Cannot create video abuse with the non account actor ' + byActor.url)
33
34 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: flag.object })
35
36 const videoAbuse = await sequelizeTypescript.transaction(async t => {
37 const videoAbuseData = {
38 reporterAccountId: account.id,
39 reason: flag.content,
40 videoId: video.id,
41 state: VideoAbuseState.PENDING
42 }
43
44 const videoAbuseInstance = await VideoAbuseModel.create(videoAbuseData, { transaction: t })
45 videoAbuseInstance.Video = video
46
47 logger.info('Remote abuse for video uuid %s created', flag.object)
48
49 return videoAbuseInstance
50 })
51
52 Notifier.Instance.notifyOnNewVideoAbuse(videoAbuse)
53 }