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'
|
2021-06-03 12:10:56 -04:00
|
|
|
import { loadVideoByUrl } from '@server/lib/model-loaders'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { RefreshPayload } from '@shared/models'
|
2018-11-20 04:05:51 -05:00
|
|
|
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'
|
2018-11-20 04:05:51 -05:00
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
async function refreshAPObject (job: Job) {
|
2018-11-20 04:05:51 -05:00
|
|
|
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)
|
2018-11-20 04:05:51 -05:00
|
|
|
|
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)
|
2018-11-20 04:05:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
refreshAPObject
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2019-01-14 05:30:15 -05:00
|
|
|
async function refreshVideo (videoUrl: string) {
|
2018-11-20 04:05:51 -05:00
|
|
|
const fetchType = 'all' as 'all'
|
2022-03-18 06:17:35 -04:00
|
|
|
const syncParam = { rates: true, shares: true, comments: true, thumbnail: true }
|
2018-11-20 04:05:51 -05:00
|
|
|
|
2021-06-03 12:10:56 -04:00
|
|
|
const videoFromDatabase = await loadVideoByUrl(videoUrl, fetchType)
|
2018-11-20 04:05:51 -05:00
|
|
|
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
|
|
|
}
|