2018-09-11 10:27:07 -04:00
|
|
|
import { ActivityCreate, CacheFileObject, VideoAbuseState, VideoTorrentObject } from '../../../../shared'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { DislikeObject, VideoAbuseObject, ViewObject } from '../../../../shared/models/activitypub/objects'
|
2017-12-22 03:14:50 -05:00
|
|
|
import { VideoCommentObject } from '../../../../shared/models/activitypub/objects/video-comment-object'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
|
|
|
import { logger } from '../../../helpers/logger'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoAbuseModel } from '../../../models/video/video-abuse'
|
2018-08-22 10:59:55 -04:00
|
|
|
import { addVideoComment, resolveThread } from '../video-comments'
|
2018-08-22 10:15:35 -04:00
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
2018-09-25 10:31:16 -04:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2018-08-29 10:26:25 -04:00
|
|
|
import { Redis } from '../../redis'
|
2018-10-02 08:39:35 -04:00
|
|
|
import { createOrUpdateCacheFile } from '../cache-file'
|
2018-11-15 10:18:12 -05:00
|
|
|
import { getVideoDislikeActivityPubUrl } from '../url'
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
async function processCreateActivity (activity: ActivityCreate, byActor: ActorModel) {
|
2017-11-09 11:51:58 -05:00
|
|
|
const activityObject = activity.object
|
|
|
|
const activityType = activityObject.type
|
|
|
|
|
2017-11-22 10:25:03 -05:00
|
|
|
if (activityType === 'View') {
|
2018-09-19 08:44:20 -04:00
|
|
|
return processCreateView(byActor, activity)
|
2017-11-23 08:19:55 -05:00
|
|
|
} else if (activityType === 'Dislike') {
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processCreateDislike, byActor, activity)
|
2017-12-14 11:38:41 -05:00
|
|
|
} else if (activityType === 'Video') {
|
2018-08-22 05:51:39 -04:00
|
|
|
return processCreateVideo(activity)
|
2017-11-15 09:12:23 -05:00
|
|
|
} else if (activityType === 'Flag') {
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processCreateVideoAbuse, byActor, activityObject as VideoAbuseObject)
|
2017-12-22 03:14:50 -05:00
|
|
|
} else if (activityType === 'Note') {
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processCreateVideoComment, byActor, activity)
|
2018-09-11 10:27:07 -04:00
|
|
|
} else if (activityType === 'CacheFile') {
|
2018-09-19 08:44:20 -04:00
|
|
|
return retryTransactionWrapper(processCacheFile, byActor, activity)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.warn('Unknown activity object type %s when creating activity.', activityType, { activity: activity.id })
|
2017-11-10 08:34:45 -05:00
|
|
|
return Promise.resolve(undefined)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processCreateActivity
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-08-22 05:51:39 -04:00
|
|
|
async function processCreateVideo (activity: ActivityCreate) {
|
2017-12-14 11:38:41 -05:00
|
|
|
const videoToCreateData = activity.object as VideoTorrentObject
|
|
|
|
|
2018-09-19 05:16:23 -04:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoToCreateData })
|
2017-12-14 11:38:41 -05:00
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
|
|
|
async function processCreateDislike (byActor: ActorModel, activity: ActivityCreate) {
|
2017-11-24 07:41:10 -05:00
|
|
|
const dislike = activity.object as DislikeObject
|
2017-12-14 11:38:41 -05:00
|
|
|
const byAccount = byActor.Account
|
|
|
|
|
|
|
|
if (!byAccount) throw new Error('Cannot create dislike with the non account actor ' + byActor.url)
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-09-19 05:16:23 -04:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: dislike.object })
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2018-01-10 11:18:12 -05:00
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2017-11-23 08:19:55 -05:00
|
|
|
const rate = {
|
|
|
|
type: 'dislike' as 'dislike',
|
|
|
|
videoId: video.id,
|
|
|
|
accountId: byAccount.id
|
|
|
|
}
|
2018-11-14 09:01:28 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const [ , created ] = await AccountVideoRateModel.findOrCreate({
|
2017-11-23 08:19:55 -05:00
|
|
|
where: rate,
|
2018-11-22 09:30:41 -05:00
|
|
|
defaults: Object.assign({}, rate, { url: getVideoDislikeActivityPubUrl(byActor, video) }),
|
2017-11-24 07:41:10 -05:00
|
|
|
transaction: t
|
2017-11-23 08:19:55 -05:00
|
|
|
})
|
2017-11-30 07:51:53 -05:00
|
|
|
if (created === true) await video.increment('dislikes', { transaction: t })
|
2017-11-23 08:19:55 -05:00
|
|
|
|
2017-11-24 07:41:10 -05:00
|
|
|
if (video.isOwned() && created === true) {
|
|
|
|
// Don't resend the activity to the sender
|
2017-12-14 11:38:41 -05:00
|
|
|
const exceptions = [ byActor ]
|
2018-05-31 04:23:56 -04:00
|
|
|
|
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, video)
|
2017-11-24 07:41:10 -05:00
|
|
|
}
|
2017-11-23 08:19:55 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-22 03:14:50 -05:00
|
|
|
async function processCreateView (byActor: ActorModel, activity: ActivityCreate) {
|
2017-11-24 07:41:10 -05:00
|
|
|
const view = activity.object as ViewObject
|
|
|
|
|
2018-12-03 03:14:56 -05:00
|
|
|
const options = {
|
|
|
|
videoObject: view.object,
|
|
|
|
fetchType: 'only-video' as 'only-video'
|
|
|
|
}
|
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel(options)
|
2017-11-22 10:25:03 -05:00
|
|
|
|
2018-08-29 10:26:25 -04:00
|
|
|
await Redis.Instance.addVideoView(video.id)
|
2018-12-03 03:14:56 -05:00
|
|
|
|
|
|
|
if (video.isOwned()) {
|
|
|
|
// Don't resend the activity to the sender
|
|
|
|
const exceptions = [ byActor ]
|
|
|
|
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
|
|
|
|
}
|
2017-11-22 10:25:03 -05:00
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
async function processCacheFile (byActor: ActorModel, activity: ActivityCreate) {
|
|
|
|
const cacheFile = activity.object as CacheFileObject
|
|
|
|
|
2018-09-19 05:16:23 -04:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: cacheFile.object })
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2018-10-02 08:39:35 -04:00
|
|
|
return createOrUpdateCacheFile(cacheFile, video, byActor, t)
|
2018-09-24 07:07:33 -04:00
|
|
|
})
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
if (video.isOwned()) {
|
|
|
|
// Don't resend the activity to the sender
|
|
|
|
const exceptions = [ byActor ]
|
2018-09-24 07:07:33 -04:00
|
|
|
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
async function processCreateVideoAbuse (byActor: ActorModel, videoAbuseToCreateData: VideoAbuseObject) {
|
2017-11-15 09:12:23 -05:00
|
|
|
logger.debug('Reporting remote abuse for video %s.', videoAbuseToCreateData.object)
|
|
|
|
|
2018-09-19 08:44:20 -04:00
|
|
|
const account = byActor.Account
|
|
|
|
if (!account) throw new Error('Cannot create dislike with the non account actor ' + byActor.url)
|
2017-12-14 11:38:41 -05:00
|
|
|
|
2018-09-19 05:16:23 -04:00
|
|
|
const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoAbuseToCreateData.object })
|
2017-11-15 09:12:23 -05:00
|
|
|
|
2018-01-10 11:18:12 -05:00
|
|
|
return sequelizeTypescript.transaction(async t => {
|
2017-11-15 09:12:23 -05:00
|
|
|
const videoAbuseData = {
|
|
|
|
reporterAccountId: account.id,
|
|
|
|
reason: videoAbuseToCreateData.content,
|
2018-08-10 10:54:01 -04:00
|
|
|
videoId: video.id,
|
|
|
|
state: VideoAbuseState.PENDING
|
2017-11-15 09:12:23 -05:00
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
await VideoAbuseModel.create(videoAbuseData, { transaction: t })
|
2017-11-15 09:12:23 -05:00
|
|
|
|
|
|
|
logger.info('Remote abuse for video uuid %s created', videoAbuseToCreateData.object)
|
|
|
|
})
|
|
|
|
}
|
2017-12-22 03:14:50 -05:00
|
|
|
|
2018-06-13 08:27:40 -04:00
|
|
|
async function processCreateVideoComment (byActor: ActorModel, activity: ActivityCreate) {
|
2018-08-22 10:59:55 -04:00
|
|
|
const commentObject = activity.object as VideoCommentObject
|
2017-12-22 03:14:50 -05:00
|
|
|
const byAccount = byActor.Account
|
|
|
|
|
|
|
|
if (!byAccount) throw new Error('Cannot create video comment with the non account actor ' + byActor.url)
|
|
|
|
|
2018-08-22 10:59:55 -04:00
|
|
|
const { video } = await resolveThread(commentObject.inReplyTo)
|
2018-01-10 11:18:12 -05:00
|
|
|
|
2018-08-22 10:59:55 -04:00
|
|
|
const { created } = await addVideoComment(video, commentObject.id)
|
2018-01-08 04:00:35 -05:00
|
|
|
|
2018-08-22 10:59:55 -04:00
|
|
|
if (video.isOwned() && created === true) {
|
|
|
|
// Don't resend the activity to the sender
|
|
|
|
const exceptions = [ byActor ]
|
2018-01-08 04:00:35 -05:00
|
|
|
|
2018-08-22 10:59:55 -04:00
|
|
|
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
|
|
|
|
}
|
2017-12-22 03:14:50 -05:00
|
|
|
}
|