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