]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/activitypub/cache-file.ts
Add ability to list redundancies
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / cache-file.ts
1 import { CacheFileObject } from '../../../shared/index'
2 import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
3 import { Transaction } from 'sequelize'
4 import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
5 import { MActorId, MVideoRedundancy, MVideoWithAllFiles } from '@server/typings/models'
6
7 function cacheFileActivityObjectToDBAttributes (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId) {
8
9 if (cacheFileObject.url.mediaType === 'application/x-mpegURL') {
10 const url = cacheFileObject.url
11
12 const playlist = video.VideoStreamingPlaylists.find(t => t.type === VideoStreamingPlaylistType.HLS)
13 if (!playlist) throw new Error('Cannot find HLS playlist of video ' + video.url)
14
15 return {
16 expiresOn: cacheFileObject.expires ? new Date(cacheFileObject.expires) : null,
17 url: cacheFileObject.id,
18 fileUrl: url.href,
19 strategy: null,
20 videoStreamingPlaylistId: playlist.id,
21 actorId: byActor.id
22 }
23 }
24
25 const url = cacheFileObject.url
26 const videoFile = video.VideoFiles.find(f => {
27 return f.resolution === url.height && f.fps === url.fps
28 })
29
30 if (!videoFile) throw new Error(`Cannot find video file ${url.height} ${url.fps} of video ${video.url}`)
31
32 return {
33 expiresOn: cacheFileObject.expires ? new Date(cacheFileObject.expires) : null,
34 url: cacheFileObject.id,
35 fileUrl: url.href,
36 strategy: null,
37 videoFileId: videoFile.id,
38 actorId: byActor.id
39 }
40 }
41
42 async function createOrUpdateCacheFile (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId, t: Transaction) {
43 const redundancyModel = await VideoRedundancyModel.loadByUrl(cacheFileObject.id, t)
44
45 if (!redundancyModel) {
46 await createCacheFile(cacheFileObject, video, byActor, t)
47 } else {
48 await updateCacheFile(cacheFileObject, redundancyModel, video, byActor, t)
49 }
50 }
51
52 function createCacheFile (cacheFileObject: CacheFileObject, video: MVideoWithAllFiles, byActor: MActorId, t: Transaction) {
53 const attributes = cacheFileActivityObjectToDBAttributes(cacheFileObject, video, byActor)
54
55 return VideoRedundancyModel.create(attributes, { transaction: t })
56 }
57
58 function updateCacheFile (
59 cacheFileObject: CacheFileObject,
60 redundancyModel: MVideoRedundancy,
61 video: MVideoWithAllFiles,
62 byActor: MActorId,
63 t: Transaction
64 ) {
65 if (redundancyModel.actorId !== byActor.id) {
66 throw new Error('Cannot update redundancy ' + redundancyModel.url + ' of another actor.')
67 }
68
69 const attributes = cacheFileActivityObjectToDBAttributes(cacheFileObject, video, byActor)
70
71 redundancyModel.expiresOn = attributes.expiresOn
72 redundancyModel.fileUrl = attributes.fileUrl
73
74 return redundancyModel.save({ transaction: t })
75 }
76
77 export {
78 createOrUpdateCacheFile,
79 createCacheFile,
80 updateCacheFile,
81 cacheFileActivityObjectToDBAttributes
82 }