2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../models/redundancy/video-redundancy'
|
|
|
|
import { sendUndoCacheFile } from './activitypub/send'
|
|
|
|
import { Transaction } from 'sequelize'
|
2020-06-18 04:45:25 -04:00
|
|
|
import { MActorSignature, MVideoRedundancyVideo } from '@server/types/models'
|
2020-04-07 09:27:41 -04:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
import { logger } from '@server/helpers/logger'
|
|
|
|
import { ActorFollowModel } from '@server/models/activitypub/actor-follow'
|
|
|
|
import { Activity } from '@shared/models'
|
2020-04-23 03:32:53 -04:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
async function removeVideoRedundancy (videoRedundancy: MVideoRedundancyVideo, t?: Transaction) {
|
2018-09-11 10:27:07 -04:00
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
// Local cache, send undo to remote instances
|
|
|
|
if (videoRedundancy.actorId === serverActor.id) await sendUndoCacheFile(serverActor, videoRedundancy, t)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
await videoRedundancy.destroy({ transaction: t })
|
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
async function removeRedundanciesOfServer (serverId: number) {
|
|
|
|
const redundancies = await VideoRedundancyModel.listLocalOfServer(serverId)
|
2018-09-28 04:07:05 -04:00
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
for (const redundancy of redundancies) {
|
2018-09-28 04:07:05 -04:00
|
|
|
await removeVideoRedundancy(redundancy)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:27:41 -04:00
|
|
|
async function isRedundancyAccepted (activity: Activity, byActor: MActorSignature) {
|
|
|
|
const configAcceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM
|
|
|
|
if (configAcceptFrom === 'nobody') {
|
|
|
|
logger.info('Do not accept remote redundancy %s due instance accept policy.', activity.id)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (configAcceptFrom === 'followings') {
|
|
|
|
const serverActor = await getServerActor()
|
|
|
|
const allowed = await ActorFollowModel.isFollowedBy(byActor.id, serverActor.id)
|
|
|
|
|
|
|
|
if (allowed !== true) {
|
|
|
|
logger.info('Do not accept remote redundancy %s because actor %s is not followed by our instance.', activity.id, byActor.url)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-04-07 09:27:41 -04:00
|
|
|
isRedundancyAccepted,
|
2020-01-10 04:11:28 -05:00
|
|
|
removeRedundanciesOfServer,
|
2018-09-11 10:27:07 -04:00
|
|
|
removeVideoRedundancy
|
|
|
|
}
|