]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/lib/redundancy.ts
Cleanup models directory organization
[github/Chocobozzz/PeerTube.git] / server / lib / redundancy.ts
... / ...
CommitLineData
1import { Transaction } from 'sequelize'
2import { logger } from '@server/helpers/logger'
3import { CONFIG } from '@server/initializers/config'
4import { ActorFollowModel } from '@server/models/actor/actor-follow'
5import { getServerActor } from '@server/models/application/application'
6import { MActorSignature, MVideoRedundancyVideo } from '@server/types/models'
7import { Activity } from '@shared/models'
8import { VideoRedundancyModel } from '../models/redundancy/video-redundancy'
9import { sendUndoCacheFile } from './activitypub/send'
10
11async function removeVideoRedundancy (videoRedundancy: MVideoRedundancyVideo, t?: Transaction) {
12 const serverActor = await getServerActor()
13
14 // Local cache, send undo to remote instances
15 if (videoRedundancy.actorId === serverActor.id) await sendUndoCacheFile(serverActor, videoRedundancy, t)
16
17 await videoRedundancy.destroy({ transaction: t })
18}
19
20async function removeRedundanciesOfServer (serverId: number) {
21 const redundancies = await VideoRedundancyModel.listLocalOfServer(serverId)
22
23 for (const redundancy of redundancies) {
24 await removeVideoRedundancy(redundancy)
25 }
26}
27
28async function isRedundancyAccepted (activity: Activity, byActor: MActorSignature) {
29 const configAcceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM
30 if (configAcceptFrom === 'nobody') {
31 logger.info('Do not accept remote redundancy %s due instance accept policy.', activity.id)
32 return false
33 }
34
35 if (configAcceptFrom === 'followings') {
36 const serverActor = await getServerActor()
37 const allowed = await ActorFollowModel.isFollowedBy(byActor.id, serverActor.id)
38
39 if (allowed !== true) {
40 logger.info('Do not accept remote redundancy %s because actor %s is not followed by our instance.', activity.id, byActor.url)
41 return false
42 }
43 }
44
45 return true
46}
47
48// ---------------------------------------------------------------------------
49
50export {
51 isRedundancyAccepted,
52 removeRedundanciesOfServer,
53 removeVideoRedundancy
54}