X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=server%2Flib%2Fredundancy.ts;h=da620b607aa98db1d31d4e598d5490205a5db3f6;hb=26d6bf6533023326fa017812cf31bbe20c752d36;hp=78d84e02e97d7d8648ff8f4bed3eac99ea7fc5ed;hpb=2ad9dcda240ee843c5e4a5b98cc94f7b2aab2c89;p=oweals%2Fpeertube.git diff --git a/server/lib/redundancy.ts b/server/lib/redundancy.ts index 78d84e02e..da620b607 100644 --- a/server/lib/redundancy.ts +++ b/server/lib/redundancy.ts @@ -1,8 +1,12 @@ import { VideoRedundancyModel } from '../models/redundancy/video-redundancy' import { sendUndoCacheFile } from './activitypub/send' import { Transaction } from 'sequelize' -import { getServerActor } from '../helpers/utils' -import { MVideoRedundancyVideo } from '@server/typings/models' +import { MActorSignature, MVideoRedundancyVideo } from '@server/types/models' +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' +import { getServerActor } from '@server/models/application/application' async function removeVideoRedundancy (videoRedundancy: MVideoRedundancyVideo, t?: Transaction) { const serverActor = await getServerActor() @@ -21,9 +25,30 @@ async function removeRedundanciesOfServer (serverId: number) { } } +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 +} + // --------------------------------------------------------------------------- export { + isRedundancyAccepted, removeRedundanciesOfServer, removeVideoRedundancy }