2021-08-17 02:26:20 -04:00
|
|
|
import { CONFIG } from '@server/initializers/config'
|
2022-10-19 04:43:53 -04:00
|
|
|
import { OBJECT_STORAGE_PROXY_PATHS, WEBSERVER } from '@server/initializers/constants'
|
|
|
|
import { MVideoUUID } from '@server/types/models'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { BucketInfo, buildKey, getEndpointParsed } from './shared'
|
|
|
|
|
2022-10-19 04:43:53 -04:00
|
|
|
function getInternalUrl (config: BucketInfo, keyWithoutPrefix: string) {
|
2021-08-17 02:26:20 -04:00
|
|
|
return getBaseUrl(config) + buildKey(keyWithoutPrefix, config)
|
|
|
|
}
|
|
|
|
|
2022-10-19 04:43:53 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
function getWebTorrentPublicFileUrl (fileUrl: string) {
|
|
|
|
const baseUrl = CONFIG.OBJECT_STORAGE.VIDEOS.BASE_URL
|
|
|
|
if (!baseUrl) return fileUrl
|
|
|
|
|
|
|
|
return replaceByBaseUrl(fileUrl, baseUrl)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getHLSPublicFileUrl (fileUrl: string) {
|
|
|
|
const baseUrl = CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BASE_URL
|
|
|
|
if (!baseUrl) return fileUrl
|
|
|
|
|
|
|
|
return replaceByBaseUrl(fileUrl, baseUrl)
|
|
|
|
}
|
|
|
|
|
2022-10-19 04:43:53 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getHLSPrivateFileUrl (video: MVideoUUID, filename: string) {
|
|
|
|
return WEBSERVER.URL + OBJECT_STORAGE_PROXY_PATHS.STREAMING_PLAYLISTS.PRIVATE_HLS + video.uuid + `/${filename}`
|
|
|
|
}
|
|
|
|
|
|
|
|
function getWebTorrentPrivateFileUrl (filename: string) {
|
|
|
|
return WEBSERVER.URL + OBJECT_STORAGE_PROXY_PATHS.PRIVATE_WEBSEED + filename
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
export {
|
2022-10-19 04:43:53 -04:00
|
|
|
getInternalUrl,
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
getWebTorrentPublicFileUrl,
|
2022-10-19 04:43:53 -04:00
|
|
|
getHLSPublicFileUrl,
|
|
|
|
|
|
|
|
getHLSPrivateFileUrl,
|
|
|
|
getWebTorrentPrivateFileUrl,
|
|
|
|
|
|
|
|
replaceByBaseUrl
|
2021-08-17 02:26:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function getBaseUrl (bucketInfo: BucketInfo, baseUrl?: string) {
|
|
|
|
if (baseUrl) return baseUrl
|
|
|
|
|
|
|
|
return `${getEndpointParsed().protocol}//${bucketInfo.BUCKET_NAME}.${getEndpointParsed().host}/`
|
|
|
|
}
|
|
|
|
|
|
|
|
const regex = new RegExp('https?://[^/]+')
|
|
|
|
function replaceByBaseUrl (fileUrl: string, baseUrl: string) {
|
|
|
|
return fileUrl.replace(regex, baseUrl)
|
|
|
|
}
|