aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update-host.ts')
-rwxr-xr-xscripts/update-host.ts23
1 files changed, 10 insertions, 13 deletions
diff --git a/scripts/update-host.ts b/scripts/update-host.ts
index c6eb9d533..bb54290a4 100755
--- a/scripts/update-host.ts
+++ b/scripts/update-host.ts
@@ -1,10 +1,7 @@
1import { registerTSPaths } from '../server/helpers/register-ts-paths' 1import { updateTorrentMetadata } from '@server/helpers/webtorrent'
2registerTSPaths() 2import { getServerActor } from '@server/models/application/application'
3
4import { WEBSERVER } from '../server/initializers/constants' 3import { WEBSERVER } from '../server/initializers/constants'
5import { ActorFollowModel } from '../server/models/actor/actor-follow' 4import { initDatabaseModels } from '../server/initializers/database'
6import { VideoModel } from '../server/models/video/video'
7import { ActorModel } from '../server/models/actor/actor'
8import { 5import {
9 getLocalAccountActivityPubUrl, 6 getLocalAccountActivityPubUrl,
10 getLocalVideoActivityPubUrl, 7 getLocalVideoActivityPubUrl,
@@ -12,13 +9,13 @@ import {
12 getLocalVideoChannelActivityPubUrl, 9 getLocalVideoChannelActivityPubUrl,
13 getLocalVideoCommentActivityPubUrl 10 getLocalVideoCommentActivityPubUrl
14} from '../server/lib/activitypub/url' 11} from '../server/lib/activitypub/url'
15import { VideoShareModel } from '../server/models/video/video-share'
16import { VideoCommentModel } from '../server/models/video/video-comment'
17import { AccountModel } from '../server/models/account/account' 12import { AccountModel } from '../server/models/account/account'
13import { ActorModel } from '../server/models/actor/actor'
14import { ActorFollowModel } from '../server/models/actor/actor-follow'
15import { VideoModel } from '../server/models/video/video'
18import { VideoChannelModel } from '../server/models/video/video-channel' 16import { VideoChannelModel } from '../server/models/video/video-channel'
19import { initDatabaseModels } from '../server/initializers/database' 17import { VideoCommentModel } from '../server/models/video/video-comment'
20import { updateTorrentUrls } from '@server/helpers/webtorrent' 18import { VideoShareModel } from '../server/models/video/video-share'
21import { getServerActor } from '@server/models/application/application'
22 19
23run() 20run()
24 .then(() => process.exit(0)) 21 .then(() => process.exit(0))
@@ -126,7 +123,7 @@ async function run () {
126 123
127 for (const file of video.VideoFiles) { 124 for (const file of video.VideoFiles) {
128 console.log('Updating torrent file %s of video %s.', file.resolution, video.uuid) 125 console.log('Updating torrent file %s of video %s.', file.resolution, video.uuid)
129 await updateTorrentUrls(video, file) 126 await updateTorrentMetadata(video, file)
130 127
131 await file.save() 128 await file.save()
132 } 129 }
@@ -135,7 +132,7 @@ async function run () {
135 for (const file of (playlist?.VideoFiles || [])) { 132 for (const file of (playlist?.VideoFiles || [])) {
136 console.log('Updating fragmented torrent file %s of video %s.', file.resolution, video.uuid) 133 console.log('Updating fragmented torrent file %s of video %s.', file.resolution, video.uuid)
137 134
138 await updateTorrentUrls(video, file) 135 await updateTorrentMetadata(playlist, file)
139 136
140 await file.save() 137 await file.save()
141 } 138 }