PeerTube/server/lib/job-queue/handlers/activitypub-http-fetcher.ts

42 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import { Job } from 'bull'
2020-12-08 14:30:29 +01:00
import { ActivitypubHttpFetcherPayload, FetchType } from '@shared/models'
2017-12-28 11:16:08 +01:00
import { logger } from '../../../helpers/logger'
2020-12-08 14:30:29 +01:00
import { VideoModel } from '../../../models/video/video'
2019-03-19 16:23:02 +01:00
import { VideoCommentModel } from '../../../models/video/video-comment'
2020-12-08 14:30:29 +01:00
import { VideoShareModel } from '../../../models/video/video-share'
2021-06-17 16:02:38 +02:00
import { MVideoFullLight } from '../../../types/models'
2020-12-08 14:30:29 +01:00
import { crawlCollectionPage } from '../../activitypub/crawl'
2021-06-03 14:30:09 +02:00
import { createAccountPlaylists } from '../../activitypub/playlists'
2020-12-08 14:30:29 +01:00
import { processActivities } from '../../activitypub/process'
import { addVideoShares } from '../../activitypub/share'
import { addVideoComments } from '../../activitypub/video-comments'
2021-08-27 14:32:44 +02:00
async function processActivityPubHttpFetcher (job: Job) {
logger.info('Processing ActivityPub fetcher in job %d.', job.id)
const payload = job.data as ActivitypubHttpFetcherPayload
2019-08-15 11:53:26 +02:00
let video: MVideoFullLight
2022-06-28 14:57:51 +02:00
if (payload.videoId) video = await VideoModel.loadFull(payload.videoId)
2017-11-22 10:29:55 +01:00
const fetcherType: { [ id in FetchType ]: (items: any[]) => Promise<any> } = {
2019-08-02 10:53:36 +02:00
'activity': items => processActivities(items, { outboxUrl: payload.uri, fromFetch: true }),
'video-shares': items => addVideoShares(items, video),
2019-08-06 17:19:53 +02:00
'video-comments': items => addVideoComments(items),
2021-06-17 16:02:38 +02:00
'account-playlists': items => createAccountPlaylists(items)
2017-11-22 10:29:55 +01:00
}
2020-12-08 14:30:29 +01:00
const cleanerType: { [ id in FetchType ]?: (crawlStartDate: Date) => Promise<any> } = {
2019-03-19 16:23:02 +01:00
'video-shares': crawlStartDate => VideoShareModel.cleanOldSharesOf(video.id, crawlStartDate),
'video-comments': crawlStartDate => VideoCommentModel.cleanOldCommentsOf(video.id, crawlStartDate)
}
return crawlCollectionPage(payload.uri, fetcherType[payload.type], cleanerType[payload.type])
2017-11-22 10:29:55 +01:00
}
// ---------------------------------------------------------------------------
export {
processActivityPubHttpFetcher
2017-11-22 10:29:55 +01:00
}