PeerTube/server/lib/activitypub/cache-file.ts

83 lines
2.8 KiB
TypeScript
Raw Normal View History

2019-02-26 10:55:40 +01:00
import { CacheFileObject } from '../../../shared/index'
2018-09-11 16:27:07 +02:00
import { VideoModel } from '../../models/video/video'
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
import { Transaction } from 'sequelize'
2019-01-29 08:37:25 +01:00
import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
2018-09-11 16:27:07 +02:00
function cacheFileActivityObjectToDBAttributes (cacheFileObject: CacheFileObject, video: VideoModel, byActor: { id?: number }) {
2018-09-11 16:27:07 +02:00
2019-01-29 08:37:25 +01:00
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: new Date(cacheFileObject.expires),
url: cacheFileObject.id,
fileUrl: url.href,
strategy: null,
videoStreamingPlaylistId: playlist.id,
actorId: byActor.id
}
}
const url = cacheFileObject.url
2018-09-11 16:27:07 +02:00
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: new Date(cacheFileObject.expires),
url: cacheFileObject.id,
2019-01-29 08:37:25 +01:00
fileUrl: url.href,
2018-09-11 16:27:07 +02:00
strategy: null,
videoFileId: videoFile.id,
actorId: byActor.id
}
}
2018-10-02 14:39:35 +02:00
async function createOrUpdateCacheFile (cacheFileObject: CacheFileObject, video: VideoModel, byActor: { id?: number }, t: Transaction) {
const redundancyModel = await VideoRedundancyModel.loadByUrl(cacheFileObject.id, t)
if (!redundancyModel) {
await createCacheFile(cacheFileObject, video, byActor, t)
} else {
await updateCacheFile(cacheFileObject, redundancyModel, video, byActor, t)
}
}
function createCacheFile (cacheFileObject: CacheFileObject, video: VideoModel, byActor: { id?: number }, t: Transaction) {
const attributes = cacheFileActivityObjectToDBAttributes(cacheFileObject, video, byActor)
2018-09-11 16:27:07 +02:00
return VideoRedundancyModel.create(attributes, { transaction: t })
2018-09-11 16:27:07 +02:00
}
function updateCacheFile (
cacheFileObject: CacheFileObject,
redundancyModel: VideoRedundancyModel,
video: VideoModel,
byActor: { id?: number },
t: Transaction
) {
2018-09-19 15:47:55 +02: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 16:27:07 +02:00
2019-04-18 11:28:17 +02:00
redundancyModel.expiresOn = attributes.expiresOn
redundancyModel.fileUrl = attributes.fileUrl
2018-09-11 16:27:07 +02:00
return redundancyModel.save({ transaction: t })
2018-09-11 16:27:07 +02:00
}
export {
2018-10-02 14:39:35 +02:00
createOrUpdateCacheFile,
2018-09-11 16:27:07 +02:00
createCacheFile,
updateCacheFile,
cacheFileActivityObjectToDBAttributes
}