1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Add videos.getFiles plugin helper

This commit is contained in:
Chocobozzz 2021-12-16 16:49:43 +01:00
parent 2b6af10e9f
commit 2e9c7877eb
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 139 additions and 3 deletions

View file

@ -9,15 +9,16 @@ import { AccountBlocklistModel } from '@server/models/account/account-blocklist'
import { getServerActor } from '@server/models/application/application'
import { ServerModel } from '@server/models/server/server'
import { ServerBlocklistModel } from '@server/models/server/server-blocklist'
import { UserModel } from '@server/models/user/user'
import { VideoModel } from '@server/models/video/video'
import { VideoBlacklistModel } from '@server/models/video/video-blacklist'
import { MPlugin } from '@server/types/models'
import { PeerTubeHelpers } from '@server/types/plugins'
import { VideoBlacklistCreate } from '@shared/models'
import { VideoBlacklistCreate, VideoStorage } from '@shared/models'
import { addAccountInBlocklist, addServerInBlocklist, removeAccountFromBlocklist, removeServerFromBlocklist } from '../blocklist'
import { ServerConfigManager } from '../server-config-manager'
import { blacklistVideo, unblacklistVideo } from '../video-blacklist'
import { UserModel } from '@server/models/user/user'
import { VideoPathManager } from '../video-path-manager'
function buildPluginHelpers (pluginModel: MPlugin, npmName: string): PeerTubeHelpers {
const logger = buildPluginLogger(npmName)
@ -85,6 +86,56 @@ function buildVideosHelpers () {
await video.destroy({ transaction: t })
})
},
getFiles: async (id: number | string) => {
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(id)
if (!video) return undefined
const webtorrentVideoFiles = (video.VideoFiles || []).map(f => ({
path: f.storage === VideoStorage.FILE_SYSTEM
? VideoPathManager.Instance.getFSVideoFileOutputPath(video, f)
: null,
url: f.getFileUrl(video),
resolution: f.resolution,
size: f.size,
fps: f.fps
}))
const hls = video.getHLSPlaylist()
const hlsVideoFiles = hls
? (video.getHLSPlaylist().VideoFiles || []).map(f => {
return {
path: f.storage === VideoStorage.FILE_SYSTEM
? VideoPathManager.Instance.getFSVideoFileOutputPath(hls, f)
: null,
url: f.getFileUrl(video),
resolution: f.resolution,
size: f.size,
fps: f.fps
}
})
: []
const thumbnails = video.Thumbnails.map(t => ({
type: t.type,
url: t.getFileUrl(video),
path: t.getPath()
}))
return {
webtorrent: {
videoFiles: webtorrentVideoFiles
},
hls: {
videoFiles: hlsVideoFiles
},
thumbnails
}
}
}
}