]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/activitypub/process-add.ts
Federate video abuses
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / process-add.ts
CommitLineData
d7d5611c 1import * as Bluebird from 'bluebird'
0d0e8dd0
C
2import { VideoTorrentObject } from '../../../shared'
3import { ActivityAdd } from '../../../shared/models/activitypub/activity'
d7d5611c
C
4import { generateThumbnailFromUrl, getOrCreateAccount, logger, retryTransactionWrapper } from '../../helpers'
5import { getOrCreateVideoChannel } from '../../helpers/activitypub'
0d0e8dd0
C
6import { database as db } from '../../initializers'
7import { AccountInstance } from '../../models/account/account-interface'
20494f12 8import { VideoChannelInstance } from '../../models/video/video-channel-interface'
d7d5611c 9import { videoActivityObjectToDBAttributes, videoFileActivityUrlToDBAttributes } from './misc'
0d0e8dd0
C
10
11async function processAddActivity (activity: ActivityAdd) {
12 const activityObject = activity.object
13 const activityType = activityObject.type
14 const account = await getOrCreateAccount(activity.actor)
15
16 if (activityType === 'Video') {
20494f12
C
17 const videoChannelUrl = activity.target
18 const videoChannel = await getOrCreateVideoChannel(account, videoChannelUrl)
19
20 return processAddVideo(account, videoChannel, activityObject as VideoTorrentObject)
0d0e8dd0
C
21 }
22
23 logger.warn('Unknown activity object type %s when creating activity.', activityType, { activity: activity.id })
24 return Promise.resolve(undefined)
25}
26
27// ---------------------------------------------------------------------------
28
29export {
30 processAddActivity
31}
32
33// ---------------------------------------------------------------------------
34
20494f12 35function processAddVideo (account: AccountInstance, videoChannel: VideoChannelInstance, video: VideoTorrentObject) {
0d0e8dd0 36 const options = {
20494f12 37 arguments: [ account, videoChannel, video ],
0d0e8dd0
C
38 errorMessage: 'Cannot insert the remote video with many retries.'
39 }
40
41 return retryTransactionWrapper(addRemoteVideo, options)
42}
43
20494f12 44function addRemoteVideo (account: AccountInstance, videoChannel: VideoChannelInstance, videoToCreateData: VideoTorrentObject) {
0d0e8dd0
C
45 logger.debug('Adding remote video %s.', videoToCreateData.url)
46
d8465018 47 return db.sequelize.transaction(async t => {
0d0e8dd0
C
48 const sequelizeOptions = {
49 transaction: t
50 }
51
0d0e8dd0
C
52 if (videoChannel.Account.id !== account.id) throw new Error('Video channel is not owned by this account.')
53
d7d5611c
C
54 const videoFromDatabase = await db.Video.loadByUUIDOrURL(videoToCreateData.uuid, videoToCreateData.id, t)
55 if (videoFromDatabase) throw new Error('Video with this UUID/Url already exists.')
56
57 const videoData = await videoActivityObjectToDBAttributes(videoChannel, videoToCreateData)
0d0e8dd0
C
58 const video = db.Video.build(videoData)
59
60 // Don't block on request
61 generateThumbnailFromUrl(video, videoToCreateData.icon)
350e31d6 62 .catch(err => logger.warn('Cannot generate thumbnail of %s.', videoToCreateData.id, err))
0d0e8dd0
C
63
64 const videoCreated = await video.save(sequelizeOptions)
65
66 const videoFileAttributes = await videoFileActivityUrlToDBAttributes(videoCreated, videoToCreateData)
20494f12
C
67 if (videoFileAttributes.length === 0) {
68 throw new Error('Cannot find valid files for video %s ' + videoToCreateData.url)
69 }
0d0e8dd0 70
20494f12 71 const tasks: Bluebird<any>[] = videoFileAttributes.map(f => db.VideoFile.create(f, { transaction: t }))
0d0e8dd0
C
72 await Promise.all(tasks)
73
74 const tags = videoToCreateData.tag.map(t => t.name)
75 const tagInstances = await db.Tag.findOrCreateTags(tags, t)
76 await videoCreated.setTags(tagInstances, sequelizeOptions)
d8465018
C
77
78 logger.info('Remote video with uuid %s inserted.', videoToCreateData.uuid)
79
80 return videoCreated
0d0e8dd0 81 })
0d0e8dd0 82}