]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/live/live-segment-sha-store.ts
Live supports object storage
[github/Chocobozzz/PeerTube.git] / server / lib / live / live-segment-sha-store.ts
CommitLineData
cfd57d2c 1import { writeJson } from 'fs-extra'
8ebf2a5d 2import { basename } from 'path'
cfd57d2c 3import { mapToJSON } from '@server/helpers/core-utils'
8ebf2a5d 4import { logger, loggerTagsFactory } from '@server/helpers/logger'
cfd57d2c 5import { MStreamingPlaylistVideo } from '@server/types/models'
8ebf2a5d 6import { buildSha256Segment } from '../hls'
cfd57d2c 7import { storeHLSFileFromPath } from '../object-storage'
8ebf2a5d
C
8
9const lTags = loggerTagsFactory('live')
10
11class LiveSegmentShaStore {
12
cfd57d2c
C
13 private readonly segmentsSha256 = new Map<string, string>()
14
15 private readonly videoUUID: string
16 private readonly sha256Path: string
17 private readonly streamingPlaylist: MStreamingPlaylistVideo
18 private readonly sendToObjectStorage: boolean
19
20 constructor (options: {
21 videoUUID: string
22 sha256Path: string
23 streamingPlaylist: MStreamingPlaylistVideo
24 sendToObjectStorage: boolean
25 }) {
26 this.videoUUID = options.videoUUID
27 this.sha256Path = options.sha256Path
28 this.streamingPlaylist = options.streamingPlaylist
29 this.sendToObjectStorage = options.sendToObjectStorage
8ebf2a5d
C
30 }
31
cfd57d2c
C
32 async addSegmentSha (segmentPath: string) {
33 logger.debug('Adding live sha segment %s.', segmentPath, lTags(this.videoUUID))
8ebf2a5d
C
34
35 const shaResult = await buildSha256Segment(segmentPath)
36
cfd57d2c
C
37 const segmentName = basename(segmentPath)
38 this.segmentsSha256.set(segmentName, shaResult)
8ebf2a5d 39
cfd57d2c 40 await this.writeToDisk()
8ebf2a5d
C
41 }
42
cfd57d2c 43 async removeSegmentSha (segmentPath: string) {
8ebf2a5d
C
44 const segmentName = basename(segmentPath)
45
cfd57d2c 46 logger.debug('Removing live sha segment %s.', segmentPath, lTags(this.videoUUID))
8ebf2a5d 47
cfd57d2c
C
48 if (!this.segmentsSha256.has(segmentName)) {
49 logger.warn('Unknown segment in files map for video %s and segment %s.', this.videoUUID, segmentPath, lTags(this.videoUUID))
8ebf2a5d
C
50 return
51 }
52
cfd57d2c 53 this.segmentsSha256.delete(segmentName)
8ebf2a5d 54
cfd57d2c 55 await this.writeToDisk()
8ebf2a5d
C
56 }
57
cfd57d2c
C
58 private async writeToDisk () {
59 await writeJson(this.sha256Path, mapToJSON(this.segmentsSha256))
8ebf2a5d 60
cfd57d2c
C
61 if (this.sendToObjectStorage) {
62 const url = await storeHLSFileFromPath(this.streamingPlaylist, this.sha256Path)
63
64 if (this.streamingPlaylist.segmentsSha256Url !== url) {
65 this.streamingPlaylist.segmentsSha256Url = url
66 await this.streamingPlaylist.save()
67 }
68 }
8ebf2a5d 69 }
cfd57d2c 70
8ebf2a5d
C
71}
72
73export {
74 LiveSegmentShaStore
75}