1
0
Fork 0
peertube/server/lib/job-queue/handlers/activitypub-refresher.ts

61 lines
2 KiB
TypeScript
Raw Normal View History

2021-08-27 08:32:44 -04:00
import { Job } from 'bull'
2021-06-03 08:30:09 -04:00
import { refreshVideoPlaylistIfNeeded } from '@server/lib/activitypub/playlists'
2021-06-02 03:35:01 -04:00
import { refreshVideoIfNeeded } from '@server/lib/activitypub/videos'
import { loadVideoByUrl } from '@server/lib/model-loaders'
2021-05-11 05:15:29 -04:00
import { RefreshPayload } from '@shared/models'
import { logger } from '../../../helpers/logger'
2021-05-11 05:15:29 -04:00
import { ActorModel } from '../../../models/actor/actor'
import { VideoPlaylistModel } from '../../../models/video/video-playlist'
2021-06-03 10:02:29 -04:00
import { refreshActorIfNeeded } from '../../activitypub/actors'
2021-08-27 08:32:44 -04:00
async function refreshAPObject (job: Job) {
const payload = job.data as RefreshPayload
2018-12-04 09:12:54 -05:00
2019-01-14 05:30:15 -05:00
logger.info('Processing AP refresher in job %d for %s.', job.id, payload.url)
2019-01-14 05:30:15 -05:00
if (payload.type === 'video') return refreshVideo(payload.url)
2019-03-19 09:13:53 -04:00
if (payload.type === 'video-playlist') return refreshVideoPlaylist(payload.url)
2019-01-14 05:30:15 -05:00
if (payload.type === 'actor') return refreshActor(payload.url)
}
// ---------------------------------------------------------------------------
export {
refreshAPObject
}
// ---------------------------------------------------------------------------
2019-01-14 05:30:15 -05:00
async function refreshVideo (videoUrl: string) {
const fetchType = 'all' as 'all'
const syncParam = { rates: true, shares: true, comments: true, thumbnail: true }
const videoFromDatabase = await loadVideoByUrl(videoUrl, fetchType)
if (videoFromDatabase) {
const refreshOptions = {
video: videoFromDatabase,
fetchedType: fetchType,
syncParam
}
await refreshVideoIfNeeded(refreshOptions)
}
}
2019-01-14 05:30:15 -05:00
async function refreshActor (actorUrl: string) {
const fetchType = 'all' as 'all'
const actor = await ActorModel.loadByUrlAndPopulateAccountAndChannel(actorUrl)
if (actor) {
2021-06-09 07:34:40 -04:00
await refreshActorIfNeeded({ actor, fetchedType: fetchType })
2019-01-14 05:30:15 -05:00
}
2019-03-19 09:13:53 -04:00
}
async function refreshVideoPlaylist (playlistUrl: string) {
const playlist = await VideoPlaylistModel.loadByUrlAndPopulateAccount(playlistUrl)
2019-01-14 05:30:15 -05:00
2019-03-19 09:13:53 -04:00
if (playlist) {
await refreshVideoPlaylistIfNeeded(playlist)
}
2019-01-14 05:30:15 -05:00
}