PeerTube/server/lib/redundancy.ts

30 lines
1021 B
TypeScript
Raw Normal View History

2018-09-11 16:27:07 +02:00
import { VideoRedundancyModel } from '../models/redundancy/video-redundancy'
import { sendUndoCacheFile } from './activitypub/send'
import { Transaction } from 'sequelize'
import { getServerActor } from '../helpers/utils'
2019-08-15 11:53:26 +02:00
import { MVideoRedundancyVideo } from '@server/typings/models'
2018-09-11 16:27:07 +02:00
2019-08-15 11:53:26 +02:00
async function removeVideoRedundancy (videoRedundancy: MVideoRedundancyVideo, t?: Transaction) {
2018-09-11 16:27:07 +02:00
const serverActor = await getServerActor()
// Local cache, send undo to remote instances
if (videoRedundancy.actorId === serverActor.id) await sendUndoCacheFile(serverActor, videoRedundancy, t)
2018-09-11 16:27:07 +02:00
await videoRedundancy.destroy({ transaction: t })
}
2020-01-10 10:11:28 +01:00
async function removeRedundanciesOfServer (serverId: number) {
const redundancies = await VideoRedundancyModel.listLocalOfServer(serverId)
2020-01-10 10:11:28 +01:00
for (const redundancy of redundancies) {
await removeVideoRedundancy(redundancy)
}
}
2018-09-11 16:27:07 +02:00
// ---------------------------------------------------------------------------
export {
2020-01-10 10:11:28 +01:00
removeRedundanciesOfServer,
2018-09-11 16:27:07 +02:00
removeVideoRedundancy
}