PeerTube/server/lib/redundancy.ts

29 lines
949 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'
async function removeVideoRedundancy (videoRedundancy: VideoRedundancyModel, t?: Transaction) {
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 })
}
async function removeRedundancyOf (serverId: number) {
const videosRedundancy = await VideoRedundancyModel.listLocalOfServer(serverId)
for (const redundancy of videosRedundancy) {
await removeVideoRedundancy(redundancy)
}
}
2018-09-11 16:27:07 +02:00
// ---------------------------------------------------------------------------
export {
removeRedundancyOf,
2018-09-11 16:27:07 +02:00
removeVideoRedundancy
}