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

133 lines
5.0 KiB
TypeScript
Raw Normal View History

2021-06-03 12:30:09 +00:00
import { isBlockedByServerOrAccount } from '@server/lib/blocklist'
import { isRedundancyAccepted } from '@server/lib/redundancy'
2020-09-17 11:59:02 +00:00
import { ActivityCreate, CacheFileObject, VideoObject } from '../../../../shared'
import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object'
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'
2020-05-07 12:58:24 +00:00
import { sequelizeTypescript } from '../../../initializers/database'
2020-06-18 08:45:25 +00:00
import { APProcessorOptions } from '../../../types/activitypub-processor.model'
import { MActorSignature, MCommentOwnerVideo, MVideoAccountLightBlacklistAllFiles } from '../../../types/models'
import { Notifier } from '../../notifier'
import { createOrUpdateCacheFile } from '../cache-file'
2021-06-03 12:30:09 +00:00
import { createOrUpdateVideoPlaylist } from '../playlists'
import { forwardVideoRelatedActivity } from '../send/utils'
import { resolveThread } from '../video-comments'
2021-06-02 13:47:05 +00:00
import { getOrCreateAPVideo } from '../videos'
2017-11-09 16:51:58 +00:00
2019-08-02 08:53:36 +00:00
async function processCreateActivity (options: APProcessorOptions<ActivityCreate>) {
const { activity, byActor } = options
// Only notify if it is not from a fetcher job
const notify = options.fromFetch !== true
2017-11-09 16:51:58 +00:00
const activityObject = activity.object
const activityType = activityObject.type
if (activityType === 'Video') {
2019-08-02 08:53:36 +00:00
return processCreateVideo(activity, notify)
}
if (activityType === 'Note') {
2019-08-02 08:53:36 +00:00
return retryTransactionWrapper(processCreateVideoComment, activity, byActor, notify)
}
if (activityType === 'CacheFile') {
2019-02-26 09:55:40 +00:00
return retryTransactionWrapper(processCreateCacheFile, activity, byActor)
}
if (activityType === 'Playlist') {
return retryTransactionWrapper(processCreatePlaylist, activity, byActor)
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
}
// ---------------------------------------------------------------------------
2019-08-02 08:53:36 +00:00
async function processCreateVideo (activity: ActivityCreate, notify: boolean) {
2020-09-17 11:59:02 +00:00
const videoToCreateData = activity.object as VideoObject
2017-12-14 16:38:41 +00:00
const syncParam = { likes: false, dislikes: false, shares: false, comments: false, thumbnail: true, refreshVideo: false }
2021-06-02 13:47:05 +00:00
const { video, created } = await getOrCreateAPVideo({ videoObject: videoToCreateData, syncParam })
2018-12-26 09:36:24 +00:00
2019-08-02 08:53:36 +00:00
if (created && notify) Notifier.Instance.notifyOnNewVideoIfNeeded(video)
2017-12-14 16:38:41 +00:00
return video
}
2019-08-15 09:53:26 +00:00
async function processCreateCacheFile (activity: ActivityCreate, byActor: MActorSignature) {
if (await isRedundancyAccepted(activity, byActor) !== true) return
2018-09-11 14:27:07 +00:00
const cacheFile = activity.object as CacheFileObject
2021-06-02 13:47:05 +00:00
const { video } = await getOrCreateAPVideo({ videoObject: cacheFile.object })
2018-09-11 14:27:07 +00:00
await sequelizeTypescript.transaction(async t => {
2018-10-02 12:39:35 +00:00
return createOrUpdateCacheFile(cacheFile, video, byActor, t)
})
2018-09-11 14:27:07 +00:00
if (video.isOwned()) {
// Don't resend the activity to the sender
const exceptions = [ byActor ]
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
2018-09-11 14:27:07 +00:00
}
}
2019-08-15 09:53:26 +00:00
async function processCreateVideoComment (activity: ActivityCreate, byActor: MActorSignature, notify: boolean) {
const commentObject = activity.object as VideoCommentObject
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot create video comment with the non account actor ' + byActor.url)
2019-08-20 11:52:49 +00:00
let video: MVideoAccountLightBlacklistAllFiles
2019-08-06 15:19:53 +00:00
let created: boolean
2019-08-15 09:53:26 +00:00
let comment: MCommentOwnerVideo
try {
2019-08-06 15:19:53 +00:00
const resolveThreadResult = await resolveThread({ url: commentObject.id, isVideo: false })
video = resolveThreadResult.video
2019-08-06 15:19:53 +00:00
created = resolveThreadResult.commentCreated
comment = resolveThreadResult.comment
} catch (err) {
logger.debug(
'Cannot process video comment because we could not resolve thread %s. Maybe it was not a video thread, so skip it.',
commentObject.inReplyTo,
{ err }
)
return
}
2018-01-10 16:18:12 +00:00
// Try to not forward unwanted commments on our videos
if (video.isOwned()) {
if (await isBlockedByServerOrAccount(comment.Account, video.VideoChannel.Account)) {
logger.info('Skip comment forward from blocked account or server %s.', comment.Account.Actor.url)
return
}
if (created === true) {
// Don't resend the activity to the sender
const exceptions = [ byActor ]
2018-01-08 09:00:35 +00:00
await forwardVideoRelatedActivity(activity, undefined, exceptions, video)
}
}
2018-12-26 09:36:24 +00:00
2019-08-02 08:53:36 +00:00
if (created && notify) Notifier.Instance.notifyOnNewComment(comment)
}
2019-02-26 09:55:40 +00:00
2019-08-15 09:53:26 +00:00
async function processCreatePlaylist (activity: ActivityCreate, byActor: MActorSignature) {
2019-02-26 09:55:40 +00:00
const playlistObject = activity.object as PlaylistObject
const byAccount = byActor.Account
if (!byAccount) throw new Error('Cannot create video playlist with the non account actor ' + byActor.url)
2021-06-17 14:02:38 +00:00
await createOrUpdateVideoPlaylist(playlistObject, activity.to)
2019-02-26 09:55:40 +00:00
}