]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/hls.ts
Refactor auth flow
[github/Chocobozzz/PeerTube.git] / server / lib / hls.ts
CommitLineData
4c280004 1import { close, ensureDir, move, open, outputJSON, pathExists, read, readFile, remove, writeFile } from 'fs-extra'
daf6e480
C
2import { flatten, uniq } from 'lodash'
3import { basename, dirname, join } from 'path'
4import { MVideoWithFile } from '@server/types/models'
09209296 5import { sha256 } from '../helpers/core-utils'
daf6e480 6import { getAudioStreamCodec, getVideoStreamCodec, getVideoStreamSize } from '../helpers/ffprobe-utils'
09209296 7import { logger } from '../helpers/logger'
4c280004
C
8import { doRequest, doRequestAndSaveToFile } from '../helpers/requests'
9import { generateRandomString } from '../helpers/utils'
6dd9de95 10import { CONFIG } from '../initializers/config'
daf6e480 11import { HLS_STREAMING_PLAYLIST_DIRECTORY, P2P_MEDIA_LOADER_PEER_VERSION } from '../initializers/constants'
74dc3bca 12import { sequelizeTypescript } from '../initializers/database'
daf6e480
C
13import { VideoFileModel } from '../models/video/video-file'
14import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
90a8bd30 15import { getVideoFilePath } from './video-paths'
ae9bbed4
C
16
17async function updateStreamingPlaylistsInfohashesIfNeeded () {
18 const playlistsToUpdate = await VideoStreamingPlaylistModel.listByIncorrectPeerVersion()
19
20 // Use separate SQL queries, because we could have many videos to update
21 for (const playlist of playlistsToUpdate) {
22 await sequelizeTypescript.transaction(async t => {
23 const videoFiles = await VideoFileModel.listByStreamingPlaylist(playlist.id, t)
24
594d0c6a 25 playlist.p2pMediaLoaderInfohashes = VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlist.playlistUrl, videoFiles)
0e9c48c2 26 playlist.p2pMediaLoaderPeerVersion = P2P_MEDIA_LOADER_PEER_VERSION
ae9bbed4
C
27 await playlist.save({ transaction: t })
28 })
29 }
30}
09209296 31
453e83ea 32async function updateMasterHLSPlaylist (video: MVideoWithFile) {
9c6ca37f 33 const directory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
09209296
C
34 const masterPlaylists: string[] = [ '#EXTM3U', '#EXT-X-VERSION:3' ]
35 const masterPlaylistPath = join(directory, VideoStreamingPlaylistModel.getMasterHlsPlaylistFilename())
d7a25329 36 const streamingPlaylist = video.getHLSPlaylist()
09209296 37
d7a25329 38 for (const file of streamingPlaylist.VideoFiles) {
09209296
C
39 // If we did not generated a playlist for this resolution, skip
40 const filePlaylistPath = join(directory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(file.resolution))
41 if (await pathExists(filePlaylistPath) === false) continue
42
d7a25329 43 const videoFilePath = getVideoFilePath(streamingPlaylist, file)
09209296 44
52201311 45 const size = await getVideoStreamSize(videoFilePath)
09209296
C
46
47 const bandwidth = 'BANDWIDTH=' + video.getBandwidthBits(file)
48 const resolution = `RESOLUTION=${size.width}x${size.height}`
49
50 let line = `#EXT-X-STREAM-INF:${bandwidth},${resolution}`
51 if (file.fps) line += ',FRAME-RATE=' + file.fps
52
49c3bf6f 53 const videoCodec = await getVideoStreamCodec(videoFilePath)
d7b1c7b4
C
54 line += `,CODECS="${videoCodec}`
55
56 const audioCodec = await getAudioStreamCodec(videoFilePath)
57 if (audioCodec) line += `,${audioCodec}`
58
59 line += '"'
52201311 60
09209296
C
61 masterPlaylists.push(line)
62 masterPlaylists.push(VideoStreamingPlaylistModel.getHlsPlaylistFilename(file.resolution))
63 }
64
65 await writeFile(masterPlaylistPath, masterPlaylists.join('\n') + '\n')
66}
67
c6c0fa6c 68async function updateSha256VODSegments (video: MVideoWithFile) {
4c280004
C
69 const json: { [filename: string]: { [range: string]: string } } = {}
70
9c6ca37f 71 const playlistDirectory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
d7a25329 72 const hlsPlaylist = video.getHLSPlaylist()
4c280004
C
73
74 // For all the resolutions available for this video
d7a25329 75 for (const file of hlsPlaylist.VideoFiles) {
4c280004
C
76 const rangeHashes: { [range: string]: string } = {}
77
d7a25329 78 const videoPath = getVideoFilePath(hlsPlaylist, file)
4c280004 79 const playlistPath = join(playlistDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(file.resolution))
09209296 80
4c280004
C
81 // Maybe the playlist is not generated for this resolution yet
82 if (!await pathExists(playlistPath)) continue
09209296 83
4c280004
C
84 const playlistContent = await readFile(playlistPath)
85 const ranges = getRangesFromPlaylist(playlistContent.toString())
09209296 86
4c280004
C
87 const fd = await open(videoPath, 'r')
88 for (const range of ranges) {
89 const buf = Buffer.alloc(range.length)
90 await read(fd, buf, 0, range.length, range.offset)
91
92 rangeHashes[`${range.offset}-${range.offset + range.length - 1}`] = sha256(buf)
93 }
94 await close(fd)
95
90a8bd30 96 const videoFilename = file.filename
4c280004 97 json[videoFilename] = rangeHashes
09209296
C
98 }
99
4c280004 100 const outputPath = join(playlistDirectory, VideoStreamingPlaylistModel.getHlsSha256SegmentsFilename())
09209296
C
101 await outputJSON(outputPath, json)
102}
103
c6c0fa6c
C
104async function buildSha256Segment (segmentPath: string) {
105 const buf = await readFile(segmentPath)
106 return sha256(buf)
107}
108
4c280004
C
109function downloadPlaylistSegments (playlistUrl: string, destinationDir: string, timeout: number) {
110 let timer
09209296 111
4c280004 112 logger.info('Importing HLS playlist %s', playlistUrl)
09209296 113
ba5a8d89 114 return new Promise<void>(async (res, rej) => {
4c280004 115 const tmpDirectory = join(CONFIG.STORAGE.TMP_DIR, await generateRandomString(10))
09209296 116
4c280004 117 await ensureDir(tmpDirectory)
09209296
C
118
119 timer = setTimeout(() => {
4c280004 120 deleteTmpDirectory(tmpDirectory)
09209296
C
121
122 return rej(new Error('HLS download timeout.'))
123 }, timeout)
124
4c280004
C
125 try {
126 // Fetch master playlist
127 const subPlaylistUrls = await fetchUniqUrls(playlistUrl)
128
129 const subRequests = subPlaylistUrls.map(u => fetchUniqUrls(u))
130 const fileUrls = uniq(flatten(await Promise.all(subRequests)))
131
132 logger.debug('Will download %d HLS files.', fileUrls.length, { fileUrls })
133
134 for (const fileUrl of fileUrls) {
135 const destPath = join(tmpDirectory, basename(fileUrl))
136
bfe2ef6b 137 const bodyKBLimit = 10 * 1000 * 1000 // 10GB
db4b15f2 138 await doRequestAndSaveToFile(fileUrl, destPath, { bodyKBLimit })
4c280004
C
139 }
140
141 clearTimeout(timer)
142
143 await move(tmpDirectory, destinationDir, { overwrite: true })
144
145 return res()
146 } catch (err) {
147 deleteTmpDirectory(tmpDirectory)
148
149 return rej(err)
09209296
C
150 }
151 })
4c280004
C
152
153 function deleteTmpDirectory (directory: string) {
154 remove(directory)
155 .catch(err => logger.error('Cannot delete path on HLS download error.', { err }))
156 }
157
158 async function fetchUniqUrls (playlistUrl: string) {
db4b15f2 159 const { body } = await doRequest(playlistUrl)
4c280004
C
160
161 if (!body) return []
162
163 const urls = body.split('\n')
164 .filter(line => line.endsWith('.m3u8') || line.endsWith('.mp4'))
165 .map(url => {
166 if (url.startsWith('http://') || url.startsWith('https://')) return url
167
168 return `${dirname(playlistUrl)}/${url}`
169 })
170
171 return uniq(urls)
172 }
09209296
C
173}
174
175// ---------------------------------------------------------------------------
176
177export {
178 updateMasterHLSPlaylist,
c6c0fa6c
C
179 updateSha256VODSegments,
180 buildSha256Segment,
ae9bbed4
C
181 downloadPlaylistSegments,
182 updateStreamingPlaylistsInfohashesIfNeeded
09209296
C
183}
184
185// ---------------------------------------------------------------------------
b5b68755
C
186
187function getRangesFromPlaylist (playlistContent: string) {
188 const ranges: { offset: number, length: number }[] = []
189 const lines = playlistContent.split('\n')
190 const regex = /^#EXT-X-BYTERANGE:(\d+)@(\d+)$/
191
192 for (const line of lines) {
193 const captured = regex.exec(line)
194
195 if (captured) {
196 ranges.push({ length: parseInt(captured[1], 10), offset: parseInt(captured[2], 10) })
197 }
198 }
199
200 return ranges
201}