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

158 lines
5.9 KiB
TypeScript
Raw Normal View History

2017-11-20 09:43:39 +01:00
import { ActivityCreate, VideoChannelObject } from '../../../../shared'
import { DislikeObject } from '../../../../shared/models/activitypub/objects/dislike-object'
2017-11-20 09:43:39 +01:00
import { VideoAbuseObject } from '../../../../shared/models/activitypub/objects/video-abuse-object'
2017-11-22 16:25:03 +01:00
import { ViewObject } from '../../../../shared/models/activitypub/objects/view-object'
2017-11-20 09:43:39 +01:00
import { logger, retryTransactionWrapper } from '../../../helpers'
import { database as db } from '../../../initializers'
import { AccountInstance } from '../../../models/account/account-interface'
2017-11-21 13:43:29 +01:00
import { getOrCreateAccountAndServer } from '../account'
import { forwardActivity } from '../send/misc'
import { getVideoChannelActivityPubUrl } from '../url'
import { addVideoChannelShares, videoChannelActivityObjectToDBAttributes } from './misc'
2017-11-09 17:51:58 +01:00
2017-11-10 14:34:45 +01:00
async function processCreateActivity (activity: ActivityCreate) {
2017-11-09 17:51:58 +01:00
const activityObject = activity.object
const activityType = activityObject.type
2017-11-21 13:43:29 +01:00
const account = await getOrCreateAccountAndServer(activity.actor)
2017-11-09 17:51:58 +01:00
2017-11-22 16:25:03 +01:00
if (activityType === 'View') {
return processCreateView(account, activity)
2017-11-23 14:19:55 +01:00
} else if (activityType === 'Dislike') {
return processCreateDislike(account, activity)
2017-11-22 16:25:03 +01:00
} else if (activityType === 'VideoChannel') {
2017-11-10 14:34:45 +01:00
return processCreateVideoChannel(account, activityObject as VideoChannelObject)
2017-11-15 15:12:23 +01:00
} else if (activityType === 'Flag') {
return processCreateVideoAbuse(account, activityObject as VideoAbuseObject)
2017-11-09 17:51:58 +01:00
}
logger.warn('Unknown activity object type %s when creating activity.', activityType, { activity: activity.id })
2017-11-10 14:34:45 +01:00
return Promise.resolve(undefined)
2017-11-09 17:51:58 +01:00
}
// ---------------------------------------------------------------------------
export {
processCreateActivity
}
// ---------------------------------------------------------------------------
async function processCreateDislike (byAccount: AccountInstance, activity: ActivityCreate) {
2017-11-23 14:19:55 +01:00
const options = {
arguments: [ byAccount, activity ],
2017-11-23 14:19:55 +01:00
errorMessage: 'Cannot dislike the video with many retries.'
}
return retryTransactionWrapper(createVideoDislike, options)
}
function createVideoDislike (byAccount: AccountInstance, activity: ActivityCreate) {
const dislike = activity.object as DislikeObject
2017-11-23 14:19:55 +01:00
return db.sequelize.transaction(async t => {
const video = await db.Video.loadByUrlAndPopulateAccount(dislike.object, t)
2017-11-23 14:19:55 +01:00
if (!video) throw new Error('Unknown video ' + dislike.object)
const rate = {
type: 'dislike' as 'dislike',
videoId: video.id,
accountId: byAccount.id
}
const [ , created ] = await db.AccountVideoRate.findOrCreate({
where: rate,
defaults: rate,
transaction: t
2017-11-23 14:19:55 +01:00
})
2017-11-30 13:51:53 +01:00
if (created === true) await video.increment('dislikes', { transaction: t })
2017-11-23 14:19:55 +01:00
if (video.isOwned() && created === true) {
// Don't resend the activity to the sender
const exceptions = [ byAccount ]
await forwardActivity(activity, t, exceptions)
}
2017-11-23 14:19:55 +01:00
})
}
async function processCreateView (byAccount: AccountInstance, activity: ActivityCreate) {
const view = activity.object as ViewObject
2017-11-22 16:25:03 +01:00
const video = await db.Video.loadByUrlAndPopulateAccount(view.object)
if (!video) throw new Error('Unknown video ' + view.object)
const account = await db.Account.loadByUrl(view.actor)
if (!account) throw new Error('Unknown account ' + view.actor)
await video.increment('views')
if (video.isOwned()) {
// Don't resend the activity to the sender
const exceptions = [ byAccount ]
await forwardActivity(activity, undefined, exceptions)
}
2017-11-22 16:25:03 +01:00
}
async function processCreateVideoChannel (account: AccountInstance, videoChannelToCreateData: VideoChannelObject) {
2017-11-09 17:51:58 +01:00
const options = {
2017-11-10 14:34:45 +01:00
arguments: [ account, videoChannelToCreateData ],
errorMessage: 'Cannot insert the remote video channel with many retries.'
2017-11-09 17:51:58 +01:00
}
const videoChannel = await retryTransactionWrapper(addRemoteVideoChannel, options)
if (videoChannelToCreateData.shares && Array.isArray(videoChannelToCreateData.shares.orderedItems)) {
await addVideoChannelShares(videoChannel, videoChannelToCreateData.shares.orderedItems)
}
return videoChannel
2017-11-09 17:51:58 +01:00
}
2017-11-16 15:22:39 +01:00
function addRemoteVideoChannel (account: AccountInstance, videoChannelToCreateData: VideoChannelObject) {
2017-11-10 14:34:45 +01:00
logger.debug('Adding remote video channel "%s".', videoChannelToCreateData.uuid)
2017-11-09 17:51:58 +01:00
2017-11-15 17:56:21 +01:00
return db.sequelize.transaction(async t => {
2017-11-10 14:34:45 +01:00
let videoChannel = await db.VideoChannel.loadByUUIDOrUrl(videoChannelToCreateData.uuid, videoChannelToCreateData.id, t)
if (videoChannel) return videoChannel
2017-11-10 14:34:45 +01:00
2017-11-16 15:22:39 +01:00
const videoChannelData = videoChannelActivityObjectToDBAttributes(videoChannelToCreateData, account)
2017-11-10 14:34:45 +01:00
videoChannel = db.VideoChannel.build(videoChannelData)
2017-11-20 09:43:39 +01:00
videoChannel.url = getVideoChannelActivityPubUrl(videoChannel)
2017-11-09 17:51:58 +01:00
2017-11-15 17:56:21 +01:00
videoChannel = await videoChannel.save({ transaction: t })
logger.info('Remote video channel with uuid %s inserted.', videoChannelToCreateData.uuid)
2017-11-09 17:51:58 +01:00
2017-11-15 17:56:21 +01:00
return videoChannel
})
2017-11-09 17:51:58 +01:00
}
2017-11-15 15:12:23 +01:00
function processCreateVideoAbuse (account: AccountInstance, videoAbuseToCreateData: VideoAbuseObject) {
const options = {
arguments: [ account, videoAbuseToCreateData ],
errorMessage: 'Cannot insert the remote video abuse with many retries.'
}
return retryTransactionWrapper(addRemoteVideoAbuse, options)
}
2017-11-16 15:22:39 +01:00
function addRemoteVideoAbuse (account: AccountInstance, videoAbuseToCreateData: VideoAbuseObject) {
2017-11-15 15:12:23 +01:00
logger.debug('Reporting remote abuse for video %s.', videoAbuseToCreateData.object)
return db.sequelize.transaction(async t => {
2017-11-16 15:55:01 +01:00
const video = await db.Video.loadByUrlAndPopulateAccount(videoAbuseToCreateData.object, t)
2017-11-15 15:12:23 +01:00
if (!video) {
logger.warn('Unknown video %s for remote video abuse.', videoAbuseToCreateData.object)
2017-11-17 15:52:26 +01:00
return undefined
2017-11-15 15:12:23 +01:00
}
const videoAbuseData = {
reporterAccountId: account.id,
reason: videoAbuseToCreateData.content,
videoId: video.id
}
await db.VideoAbuse.create(videoAbuseData)
logger.info('Remote abuse for video uuid %s created', videoAbuseToCreateData.object)
})
}