2017-12-20 09:36:29 -05:00
|
|
|
import { ActivityAnnounce } from '../../../../shared/models/activitypub'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { retryTransactionWrapper } from '../../../helpers/database-utils'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { sequelizeTypescript } from '../../../initializers'
|
|
|
|
import { VideoShareModel } from '../../../models/video/video-share'
|
2018-05-31 04:23:56 -04:00
|
|
|
import { forwardVideoRelatedActivity } from '../send/utils'
|
2018-08-22 10:15:35 -04:00
|
|
|
import { getOrCreateVideoAndAccountAndChannel } from '../videos'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { Notifier } from '../../notifier'
|
2019-05-31 09:14:40 -04:00
|
|
|
import { logger } from '../../../helpers/logger'
|
2019-08-02 04:53:36 -04:00
|
|
|
import { APProcessorOptions } from '../../../typings/activitypub-processor.model'
|
2019-08-20 07:52:49 -04:00
|
|
|
import { MActorSignature, MVideoAccountLightBlacklistAllFiles } from '../../../typings/models'
|
2017-11-15 11:56:21 -05:00
|
|
|
|
2019-08-02 04:53:36 -04:00
|
|
|
async function processAnnounceActivity (options: APProcessorOptions<ActivityAnnounce>) {
|
|
|
|
const { activity, byActor: actorAnnouncer } = options
|
|
|
|
// Only notify if it is not from a fetcher job
|
|
|
|
const notify = options.fromFetch !== true
|
|
|
|
|
|
|
|
return retryTransactionWrapper(processVideoShare, actorAnnouncer, activity, notify)
|
2017-11-15 11:56:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processAnnounceActivity
|
|
|
|
}
|
2017-11-27 08:44:51 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function processVideoShare (actorAnnouncer: MActorSignature, activity: ActivityAnnounce, notify: boolean) {
|
2018-01-26 06:02:18 -05:00
|
|
|
const objectUri = typeof activity.object === 'string' ? activity.object : activity.object.id
|
2018-01-10 11:18:12 -05:00
|
|
|
|
2019-08-20 07:52:49 -04:00
|
|
|
let video: MVideoAccountLightBlacklistAllFiles
|
2019-05-31 09:14:40 -04:00
|
|
|
let videoCreated: boolean
|
|
|
|
|
|
|
|
try {
|
|
|
|
const result = await getOrCreateVideoAndAccountAndChannel({ videoObject: objectUri })
|
|
|
|
video = result.video
|
|
|
|
videoCreated = result.created
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot process share of %s. Maybe this is not a video object, so just skipping.', objectUri, { err })
|
|
|
|
return
|
|
|
|
}
|
2017-11-27 08:44:51 -05:00
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
await sequelizeTypescript.transaction(async t => {
|
2017-11-27 08:44:51 -05:00
|
|
|
// Add share entry
|
|
|
|
|
|
|
|
const share = {
|
2017-12-14 11:38:41 -05:00
|
|
|
actorId: actorAnnouncer.id,
|
2018-01-26 09:49:57 -05:00
|
|
|
videoId: video.id,
|
|
|
|
url: activity.id
|
2017-11-27 08:44:51 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const [ , created ] = await VideoShareModel.findOrCreate({
|
2018-01-26 09:49:57 -05:00
|
|
|
where: {
|
|
|
|
url: activity.id
|
|
|
|
},
|
2017-11-27 08:44:51 -05:00
|
|
|
defaults: share,
|
|
|
|
transaction: t
|
|
|
|
})
|
|
|
|
|
|
|
|
if (video.isOwned() && created === true) {
|
|
|
|
// Don't resend the activity to the sender
|
2017-12-14 11:38:41 -05:00
|
|
|
const exceptions = [ actorAnnouncer ]
|
2018-05-31 04:23:56 -04:00
|
|
|
|
|
|
|
await forwardVideoRelatedActivity(activity, t, exceptions, video)
|
2017-11-27 08:44:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
})
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2019-08-02 04:53:36 -04:00
|
|
|
if (videoCreated && notify) Notifier.Instance.notifyOnNewVideoIfNeeded(video)
|
2017-11-27 08:44:51 -05:00
|
|
|
}
|