1
0
Fork 0
peertube/server/lib/activitypub/process/process-create.ts

197 lines
6.6 KiB
TypeScript
Raw Normal View History

2017-12-14 16:38:41 +00:00
import { ActivityCreate, VideoTorrentObject } from '../../../../shared'
2017-12-12 16:53:50 +00:00
import { DislikeObject, VideoAbuseObject, ViewObject } from '../../../../shared/models/activitypub/objects'
import { VideoCommentObject } from '../../../../shared/models/activitypub/objects/video-comment-object'
2017-12-28 10:16:08 +00:00
import { retryTransactionWrapper } from '../../../helpers/database-utils'
import { logger } from '../../../helpers/logger'
2017-12-12 16:53:50 +00:00
import { sequelizeTypescript } from '../../../initializers'
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../../../models/activitypub/actor'
2017-12-12 16:53:50 +00:00
import { VideoAbuseModel } from '../../../models/video/video-abuse'
import { VideoCommentModel } from '../../../models/video/video-comment'
2017-12-14 16:38:41 +00:00
import { getOrCreateActorAndServerAndModel } from '../actor'
2018-01-26 11:02:18 +00:00
import { resolveThread } from '../video-comments'
import { getOrCreateAccountAndVideoAndChannel } from '../videos'
import { forwardActivity, forwardVideoRelatedActivity } from '../send/utils'
2017-11-09 16:51:58 +00:00
2017-11-10 13:34:45 +00:00
async function processCreateActivity (activity: ActivityCreate) {
2017-11-09 16:51:58 +00:00
const activityObject = activity.object
const activityType = activityObject.type
2017-12-14 16:38:41 +00:00
const actor = await getOrCreateActorAndServerAndModel(activity.actor)
2017-11-09 16:51:58 +00:00
2017-11-22 15:25:03 +00:00
if (activityType === 'View') {
2017-12-14 16:38:41 +00:00
return processCreateView(actor, activity)
2017-11-23 13:19:55 +00:00
} else if (activityType === 'Dislike') {
2017-12-14 16:38:41 +00:00
return processCreateDislike(actor, activity)
} else if (activityType === 'Video') {
return processCreateVideo(actor, activity)
2017-11-15 14:12:23 +00:00
} else if (activityType === 'Flag') {
2017-12-14 16:38:41 +00:00
return processCreateVideoAbuse(actor, activityObject as VideoAbuseObject)
} else if (activityType === 'Note') {
return processCreateVideoComment(actor, activity)
2017-11-09 16:51:58 +00:00
}
logger.warn('Unknown activity object type %s when creating activity.', activityType, { activity: activity.id })
2017-11-10 13:34:45 +00:00
return Promise.resolve(undefined)
2017-11-09 16:51:58 +00:00
}
// ---------------------------------------------------------------------------
export {
processCreateActivity
}
// ---------------------------------------------------------------------------
2017-12-14 16:38:41 +00:00
async function processCreateVideo (
actor: ActorModel,
activity: ActivityCreate
) {
const videoToCreateData = activity.object as VideoTorrentObject
2018-01-10 16:18:12 +00:00
const { video } = await getOrCreateAccountAndVideoAndChannel(videoToCreateData, actor)
2017-12-14 16:38:41 +00:00
return video
}
async function processCreateDislike (byActor: ActorModel, activity: ActivityCreate) {
2017-11-23 13:19:55 +00:00
const options = {
2017-12-14 16:38:41 +00:00
arguments: [ byActor, activity ],
2017-11-23 13:19:55 +00:00
errorMessage: 'Cannot dislike the video with many retries.'
}
return retryTransactionWrapper(createVideoDislike, options)
}
2018-01-10 16:18:12 +00:00
async function createVideoDislike (byActor: ActorModel, activity: ActivityCreate) {
const dislike = activity.object as DislikeObject
2017-12-14 16:38:41 +00:00
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot create dislike with the non account actor ' + byActor.url)
2017-11-23 13:19:55 +00:00
2018-01-10 16:18:12 +00:00
const { video } = await getOrCreateAccountAndVideoAndChannel(dislike.object)
2017-11-23 13:19:55 +00:00
2018-01-10 16:18:12 +00:00
return sequelizeTypescript.transaction(async t => {
2017-11-23 13:19:55 +00:00
const rate = {
type: 'dislike' as 'dislike',
videoId: video.id,
accountId: byAccount.id
}
2017-12-12 16:53:50 +00:00
const [ , created ] = await AccountVideoRateModel.findOrCreate({
2017-11-23 13:19:55 +00:00
where: rate,
defaults: rate,
transaction: t
2017-11-23 13:19:55 +00:00
})
2017-11-30 12:51:53 +00:00
if (created === true) await video.increment('dislikes', { transaction: t })
2017-11-23 13:19:55 +00:00
if (video.isOwned() && created === true) {
// Don't resend the activity to the sender
2017-12-14 16:38:41 +00:00
const exceptions = [ byActor ]
await forwardVideoRelatedActivity(activity, t, exceptions, video)
}
2017-11-23 13:19:55 +00:00
})
}
async function processCreateView (byActor: ActorModel, activity: ActivityCreate) {
const view = activity.object as ViewObject
2018-01-10 16:18:12 +00:00
const { video } = await getOrCreateAccountAndVideoAndChannel(view.object)
2017-11-22 15:25:03 +00:00
2018-01-11 10:40:18 +00:00
const actor = await ActorModel.loadByUrl(view.actor)
if (!actor) throw new Error('Unknown actor ' + view.actor)
2017-11-22 15:25:03 +00:00
await video.increment('views')
if (video.isOwned()) {
// Don't resend the activity to the sender
const exceptions = [ byActor ]
await forwardActivity(activity, undefined, exceptions)
}
2017-11-22 15:25:03 +00:00
}
2017-12-14 16:38:41 +00:00
function processCreateVideoAbuse (actor: ActorModel, videoAbuseToCreateData: VideoAbuseObject) {
2017-11-15 14:12:23 +00:00
const options = {
2017-12-14 16:38:41 +00:00
arguments: [ actor, videoAbuseToCreateData ],
2017-11-15 14:12:23 +00:00
errorMessage: 'Cannot insert the remote video abuse with many retries.'
}
return retryTransactionWrapper(addRemoteVideoAbuse, options)
}
2018-01-10 16:18:12 +00:00
async function addRemoteVideoAbuse (actor: ActorModel, videoAbuseToCreateData: VideoAbuseObject) {
2017-11-15 14:12:23 +00:00
logger.debug('Reporting remote abuse for video %s.', videoAbuseToCreateData.object)
2017-12-14 16:38:41 +00:00
const account = actor.Account
if (!account) throw new Error('Cannot create dislike with the non account actor ' + actor.url)
2018-01-10 16:18:12 +00:00
const { video } = await getOrCreateAccountAndVideoAndChannel(videoAbuseToCreateData.object)
2017-11-15 14:12:23 +00:00
2018-01-10 16:18:12 +00:00
return sequelizeTypescript.transaction(async t => {
2017-11-15 14:12:23 +00:00
const videoAbuseData = {
reporterAccountId: account.id,
reason: videoAbuseToCreateData.content,
videoId: video.id
}
2017-12-12 16:53:50 +00:00
await VideoAbuseModel.create(videoAbuseData)
2017-11-15 14:12:23 +00:00
logger.info('Remote abuse for video uuid %s created', videoAbuseToCreateData.object)
})
}
function processCreateVideoComment (byActor: ActorModel, activity: ActivityCreate) {
const options = {
arguments: [ byActor, activity ],
errorMessage: 'Cannot create video comment with many retries.'
}
return retryTransactionWrapper(createVideoComment, options)
}
2018-01-10 16:18:12 +00:00
async function createVideoComment (byActor: ActorModel, activity: ActivityCreate) {
const comment = activity.object as VideoCommentObject
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot create video comment with the non account actor ' + byActor.url)
2018-01-10 16:18:12 +00:00
const { video, parents } = await resolveThread(comment.inReplyTo)
return sequelizeTypescript.transaction(async t => {
2018-01-10 16:18:12 +00:00
let originCommentId = null
let inReplyToCommentId = null
if (parents.length !== 0) {
const parent = parents[0]
originCommentId = parent.getThreadId()
inReplyToCommentId = parent.id
}
// This is a new thread
2018-01-10 16:18:12 +00:00
const objectToCreate = {
url: comment.id,
text: comment.content,
originCommentId,
inReplyToCommentId,
videoId: video.id,
accountId: byAccount.id
}
2018-01-08 09:00:35 +00:00
const options = {
where: {
url: objectToCreate.url
},
defaults: objectToCreate,
transaction: t
}
const [ ,created ] = await VideoCommentModel.findOrCreate(options)
if (video.isOwned() && created === true) {
// Don't resend the activity to the sender
const exceptions = [ byActor ]
2018-01-08 09:00:35 +00:00
await forwardVideoRelatedActivity(activity, t, exceptions, video)
}
})
}