2019-01-15 05:14:12 -05:00
|
|
|
import { ActivityCreate, CacheFileObject, VideoTorrentObject } from '../../../../shared'
|
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'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../../../models/activitypub/actor'
|
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-10-02 08:39:35 -04:00
|
|
|
import { createOrUpdateCacheFile } from '../cache-file'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { Notifier } from '../../notifier'
|
2019-01-15 05:14:12 -05:00
|
|
|
import { processViewActivity } from './process-view'
|
|
|
|
import { processDislikeActivity } from './process-dislike'
|
|
|
|
import { processFlagActivity } from './process-flag'
|
2019-02-26 04:55:40 -05:00
|
|
|
import { PlaylistObject } from '../../../../shared/models/activitypub/objects/playlist-object'
|
|
|
|
import { createOrUpdateVideoPlaylist } from '../playlist'
|
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') {
|
2019-01-15 05:14:12 -05:00
|
|
|
return processViewActivity(activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'Dislike') {
|
|
|
|
return retryTransactionWrapper(processDislikeActivity, activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'Flag') {
|
|
|
|
return retryTransactionWrapper(processFlagActivity, activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'Video') {
|
2018-08-22 05:51:39 -04:00
|
|
|
return processCreateVideo(activity)
|
2019-01-15 05:14:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'Note') {
|
|
|
|
return retryTransactionWrapper(processCreateVideoComment, activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'CacheFile') {
|
2019-02-26 04:55:40 -05:00
|
|
|
return retryTransactionWrapper(processCreateCacheFile, activity, byActor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (activityType === 'Playlist') {
|
|
|
|
return retryTransactionWrapper(processCreatePlaylist, activity, byActor)
|
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-12-26 04:36:24 -05:00
|
|
|
const { video, created } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoToCreateData })
|
|
|
|
|
|
|
|
if (created) Notifier.Instance.notifyOnNewVideo(video)
|
2017-12-14 11:38:41 -05:00
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
async function processCreateCacheFile (activity: ActivityCreate, byActor: ActorModel) {
|
2018-09-11 10:27:07 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 05:14:12 -05:00
|
|
|
async function processCreateVideoComment (activity: ActivityCreate, byActor: ActorModel) {
|
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-12-26 04:36:24 -05:00
|
|
|
const { comment, 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)
|
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
if (created === true) Notifier.Instance.notifyOnNewComment(comment)
|
2017-12-22 03:14:50 -05:00
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
async function processCreatePlaylist (activity: ActivityCreate, byActor: ActorModel) {
|
|
|
|
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)
|
|
|
|
|
|
|
|
await createOrUpdateVideoPlaylist(playlistObject, byAccount, activity.to)
|
|
|
|
}
|