123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import { move } from 'fs-extra/esm'
- import { join } from 'path'
- import { VideoPrivacy, VideoPrivacyType, FileStorage } from '@peertube/peertube-models'
- import { logger } from '@server/helpers/logger.js'
- import { DIRECTORIES } from '@server/initializers/constants.js'
- import { MVideo, MVideoFile, MVideoFullLight } from '@server/types/models/index.js'
- import { updateHLSFilesACL, updateWebVideoFileACL } from './object-storage/index.js'
- const validPrivacySet = new Set<VideoPrivacyType>([
- VideoPrivacy.PRIVATE,
- VideoPrivacy.INTERNAL,
- VideoPrivacy.PASSWORD_PROTECTED
- ])
- function setVideoPrivacy (video: MVideo, newPrivacy: VideoPrivacyType) {
- if (video.privacy === VideoPrivacy.PRIVATE && newPrivacy !== VideoPrivacy.PRIVATE) {
- video.publishedAt = new Date()
- }
- video.privacy = newPrivacy
- }
- function isVideoInPrivateDirectory (privacy: VideoPrivacyType) {
- return validPrivacySet.has(privacy)
- }
- function isVideoInPublicDirectory (privacy: VideoPrivacyType) {
- return !isVideoInPrivateDirectory(privacy)
- }
- async function moveFilesIfPrivacyChanged (video: MVideoFullLight, oldPrivacy: VideoPrivacyType) {
- // Now public, previously private
- if (isVideoInPublicDirectory(video.privacy) && isVideoInPrivateDirectory(oldPrivacy)) {
- await moveFiles({ type: 'private-to-public', video })
- return true
- }
- // Now private, previously public
- if (isVideoInPrivateDirectory(video.privacy) && isVideoInPublicDirectory(oldPrivacy)) {
- await moveFiles({ type: 'public-to-private', video })
- return true
- }
- return false
- }
- export {
- setVideoPrivacy,
- isVideoInPrivateDirectory,
- isVideoInPublicDirectory,
- moveFilesIfPrivacyChanged
- }
- // ---------------------------------------------------------------------------
- type MoveType = 'private-to-public' | 'public-to-private'
- async function moveFiles (options: {
- type: MoveType
- video: MVideoFullLight
- }) {
- const { type, video } = options
- for (const file of video.VideoFiles) {
- if (file.storage === FileStorage.FILE_SYSTEM) {
- await moveWebVideoFileOnFS(type, video, file)
- } else {
- await updateWebVideoFileACL(video, file)
- }
- }
- const hls = video.getHLSPlaylist()
- if (hls) {
- if (hls.storage === FileStorage.FILE_SYSTEM) {
- await moveHLSFilesOnFS(type, video)
- } else {
- await updateHLSFilesACL(hls)
- }
- }
- }
- async function moveWebVideoFileOnFS (type: MoveType, video: MVideo, file: MVideoFile) {
- const directories = getWebVideoDirectories(type)
- const source = join(directories.old, file.filename)
- const destination = join(directories.new, file.filename)
- try {
- logger.info('Moving web video files of %s after privacy change (%s -> %s).', video.uuid, source, destination)
- await move(source, destination)
- } catch (err) {
- logger.error('Cannot move web video file %s to %s after privacy change', source, destination, { err })
- }
- }
- function getWebVideoDirectories (moveType: MoveType) {
- if (moveType === 'private-to-public') {
- return { old: DIRECTORIES.VIDEOS.PRIVATE, new: DIRECTORIES.VIDEOS.PUBLIC }
- }
- return { old: DIRECTORIES.VIDEOS.PUBLIC, new: DIRECTORIES.VIDEOS.PRIVATE }
- }
- // ---------------------------------------------------------------------------
- async function moveHLSFilesOnFS (type: MoveType, video: MVideo) {
- const directories = getHLSDirectories(type)
- const source = join(directories.old, video.uuid)
- const destination = join(directories.new, video.uuid)
- try {
- logger.info('Moving HLS files of %s after privacy change (%s -> %s).', video.uuid, source, destination)
- await move(source, destination)
- } catch (err) {
- logger.error('Cannot move HLS file %s to %s after privacy change', source, destination, { err })
- }
- }
- function getHLSDirectories (moveType: MoveType) {
- if (moveType === 'private-to-public') {
- return { old: DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE, new: DIRECTORIES.HLS_STREAMING_PLAYLIST.PUBLIC }
- }
- return { old: DIRECTORIES.HLS_STREAMING_PLAYLIST.PUBLIC, new: DIRECTORIES.HLS_STREAMING_PLAYLIST.PRIVATE }
- }
|