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'
|
2019-03-19 16:23:02 +01:00
|
|
|
import { AccountVideoRateModel } from '../../../models/account/account-video-rate'
|
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'
|
|
|
|
import { createRates } from '../../activitypub/video-rates'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function processActivityPubHttpFetcher (job: Job) {
|
2018-01-25 15:05:18 +01:00
|
|
|
logger.info('Processing ActivityPub fetcher in job %d.', job.id)
|
|
|
|
|
2018-08-22 11:51:39 +02:00
|
|
|
const payload = job.data as ActivitypubHttpFetcherPayload
|
|
|
|
|
2019-08-15 11:53:26 +02:00
|
|
|
let video: MVideoFullLight
|
2018-08-22 11:51:39 +02:00
|
|
|
if (payload.videoId) video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoId)
|
2017-11-22 10:29:55 +01:00
|
|
|
|
2018-08-22 11:51:39 +02: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 }),
|
2018-08-22 11:51:39 +02:00
|
|
|
'video-likes': items => createRates(items, video, 'like'),
|
|
|
|
'video-dislikes': items => createRates(items, video, 'dislike'),
|
|
|
|
'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
|
|
|
}
|
2018-08-22 11:51:39 +02: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-likes': crawlStartDate => AccountVideoRateModel.cleanOldRatesOf(video.id, 'like' as 'like', crawlStartDate),
|
|
|
|
'video-dislikes': crawlStartDate => AccountVideoRateModel.cleanOldRatesOf(video.id, 'dislike' as 'dislike', crawlStartDate),
|
|
|
|
'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 {
|
2018-01-25 15:05:18 +01:00
|
|
|
processActivityPubHttpFetcher
|
2017-11-22 10:29:55 +01:00
|
|
|
}
|