1
0
Fork 0
peertube/server/lib/activitypub/cache-file.ts

83 lines
2.8 KiB
TypeScript
Raw Normal View History

import { Transaction } from 'sequelize'
2020-06-18 08:45:25 +00:00
import { MActorId, MVideoRedundancy, MVideoWithAllFiles } from '@server/types/models'
2021-12-24 09:14:47 +00:00
import { CacheFileObject, VideoStreamingPlaylistType } from '@shared/models'
2021-06-03 12:30:09 +00:00
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
2018-09-11 14:27:07 +00:00
2021-06-03 12:30:09 +00:00
async function createOrUpdateCacheFile (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId, t: Transaction) {
const redundancyModel = await VideoRedundancyModel.loadByUrl(cacheFileObject.id, t)
2019-01-29 07:37:25 +00:00
2021-06-03 12:30:09 +00:00
if (redundancyModel) {
return updateCacheFile(cacheFileObject, redundancyModel, video, byActor, t)
2019-01-29 07:37:25 +00:00
}
2021-06-03 12:30:09 +00:00
return createCacheFile(cacheFileObject, video, byActor, t)
2018-09-11 14:27:07 +00:00
}
2021-06-03 12:30:09 +00:00
// ---------------------------------------------------------------------------
2018-10-02 12:39:35 +00:00
2021-06-03 12:30:09 +00:00
export {
createOrUpdateCacheFile
2018-10-02 12:39:35 +00:00
}
2021-06-03 12:30:09 +00:00
// ---------------------------------------------------------------------------
2019-08-15 09:53:26 +00:00
function createCacheFile (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId, t: Transaction) {
const attributes = cacheFileActivityObjectToDBAttributes(cacheFileObject, video, byActor)
2018-09-11 14:27:07 +00:00
return VideoRedundancyModel.create(attributes, { transaction: t })
2018-09-11 14:27:07 +00:00
}
function updateCacheFile (
cacheFileObject: CacheFileObject,
2019-08-15 09:53:26 +00:00
redundancyModel: MVideoRedundancy,
video: MVideoWithAllFiles,
byActor: MActorId,
t: Transaction
) {
2018-09-19 13:47:55 +00:00
if (redundancyModel.actorId !== byActor.id) {
throw new Error('Cannot update redundancy ' + redundancyModel.url + ' of another actor.')
}
const attributes = cacheFileActivityObjectToDBAttributes(cacheFileObject, video, byActor)
2018-09-11 14:27:07 +00:00
2019-04-18 09:28:17 +00:00
redundancyModel.expiresOn = attributes.expiresOn
redundancyModel.fileUrl = attributes.fileUrl
2018-09-11 14:27:07 +00:00
return redundancyModel.save({ transaction: t })
2018-09-11 14:27:07 +00:00
}
2021-06-03 12:30:09 +00:00
function cacheFileActivityObjectToDBAttributes (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId) {
if (cacheFileObject.url.mediaType === 'application/x-mpegURL') {
const url = cacheFileObject.url
const playlist = video.VideoStreamingPlaylists.find(t => t.type === VideoStreamingPlaylistType.HLS)
if (!playlist) throw new Error('Cannot find HLS playlist of video ' + video.url)
return {
expiresOn: cacheFileObject.expires ? new Date(cacheFileObject.expires) : null,
url: cacheFileObject.id,
fileUrl: url.href,
strategy: null,
videoStreamingPlaylistId: playlist.id,
actorId: byActor.id
}
}
const url = cacheFileObject.url
const videoFile = video.VideoFiles.find(f => {
return f.resolution === url.height && f.fps === url.fps
})
if (!videoFile) throw new Error(`Cannot find video file ${url.height} ${url.fps} of video ${video.url}`)
return {
expiresOn: cacheFileObject.expires ? new Date(cacheFileObject.expires) : null,
url: cacheFileObject.id,
fileUrl: url.href,
strategy: null,
videoFileId: videoFile.id,
actorId: byActor.id
}
2018-09-11 14:27:07 +00:00
}