aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-16 16:25:53 +0100
committerChocobozzz <chocobozzz@cpy.re>2021-02-18 13:38:09 +0100
commit90a8bd305de4153ec21137a73ff482dcc2e3e19b (patch)
tree2e35b5504ec11bc51579c92a70c77ed3d5ace816 /scripts/update-host.ts
parent684cdacbbd775b5f404dd7b373e02dd21baf5ff0 (diff)
downloadPeerTube-90a8bd305de4153ec21137a73ff482dcc2e3e19b.tar.gz
PeerTube-90a8bd305de4153ec21137a73ff482dcc2e3e19b.tar.zst
PeerTube-90a8bd305de4153ec21137a73ff482dcc2e3e19b.zip
Dissociate video file names and video uuid
Diffstat (limited to 'scripts/update-host.ts')
-rwxr-xr-xscripts/update-host.ts8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/update-host.ts b/scripts/update-host.ts
index b030b21c3..d0a1b03cc 100755
--- a/scripts/update-host.ts
+++ b/scripts/update-host.ts
@@ -116,8 +116,10 @@ async function run () {
116 116
117 console.log('Updating video and torrent files.') 117 console.log('Updating video and torrent files.')
118 118
119 const videos = await VideoModel.listLocal() 119 const localVideos = await VideoModel.listLocal()
120 for (const video of videos) { 120 for (const localVideo of localVideos) {
121 const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(localVideo.id)
122
121 console.log('Updating video ' + video.uuid) 123 console.log('Updating video ' + video.uuid)
122 124
123 video.url = getLocalVideoActivityPubUrl(video) 125 video.url = getLocalVideoActivityPubUrl(video)
@@ -125,7 +127,7 @@ async function run () {
125 127
126 for (const file of video.VideoFiles) { 128 for (const file of video.VideoFiles) {
127 console.log('Updating torrent file %s of video %s.', file.resolution, video.uuid) 129 console.log('Updating torrent file %s of video %s.', file.resolution, video.uuid)
128 await createTorrentAndSetInfoHash(video, file) 130 await createTorrentAndSetInfoHash(video, video, file)
129 } 131 }
130 132
131 for (const playlist of video.VideoStreamingPlaylists) { 133 for (const playlist of video.VideoStreamingPlaylists) {