]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/update-host.ts
Fix bug with tsconfig paths
[github/Chocobozzz/PeerTube.git] / scripts / update-host.ts
CommitLineData
74dc3bca 1import { WEBSERVER } from '../server/initializers/constants'
50d6de9c 2import { ActorFollowModel } from '../server/models/activitypub/actor-follow'
3fd3ab2d 3import { VideoModel } from '../server/models/video/video'
23687332
C
4import { ActorModel } from '../server/models/activitypub/actor'
5import {
6 getAccountActivityPubUrl,
74dc3bca 7 getVideoActivityPubUrl,
5c6d985f 8 getVideoAnnounceActivityPubUrl,
74dc3bca 9 getVideoChannelActivityPubUrl,
23687332
C
10 getVideoCommentActivityPubUrl
11} from '../server/lib/activitypub'
12import { VideoShareModel } from '../server/models/video/video-share'
13import { VideoCommentModel } from '../server/models/video/video-comment'
14import { getServerActor } from '../server/helpers/utils'
15import { AccountModel } from '../server/models/account/account'
16import { VideoChannelModel } from '../server/models/video/video-channel'
09209296 17import { VideoStreamingPlaylistModel } from '../server/models/video/video-streaming-playlist'
74dc3bca 18import { initDatabaseModels } from '../server/initializers'
75d612ce 19
23687332
C
20run()
21 .then(() => process.exit(0))
22 .catch(err => {
23 console.error(err)
24 process.exit(-1)
eb8b27c9 25 })
23687332
C
26
27async function run () {
28 await initDatabaseModels(true)
29
30 const serverAccount = await getServerActor()
31
32 {
33 const res = await ActorFollowModel.listAcceptedFollowingUrlsForApi([ serverAccount.id ], undefined)
34 const hasFollowing = res.total > 0
35
eb8b27c9 36 if (hasFollowing === true) {
23687332 37 throw new Error('Cannot update host because you follow other servers!')
75d612ce 38 }
23687332 39 }
75d612ce 40
23687332
C
41 console.log('Updating actors.')
42
43 const actors: ActorModel[] = await ActorModel.unscoped().findAll({
44 include: [
45 {
46 model: VideoChannelModel.unscoped(),
47 required: false
48 },
49 {
50 model: AccountModel.unscoped(),
51 required: false
c91de743 52 }
23687332
C
53 ]
54 })
55 for (const actor of actors) {
56 if (actor.isOwned() === false) continue
57
58 console.log('Updating actor ' + actor.url)
59
60 const newUrl = actor.Account
61 ? getAccountActivityPubUrl(actor.preferredUsername)
62 : getVideoChannelActivityPubUrl(actor.preferredUsername)
63
64 actor.url = newUrl
65 actor.inboxUrl = newUrl + '/inbox'
66 actor.outboxUrl = newUrl + '/outbox'
74dc3bca 67 actor.sharedInboxUrl = WEBSERVER.URL + '/inbox'
23687332
C
68 actor.followersUrl = newUrl + '/followers'
69 actor.followingUrl = newUrl + '/following'
70
71 await actor.save()
72 }
73
74 console.log('Updating video shares.')
75
76 const videoShares: VideoShareModel[] = await VideoShareModel.findAll({
77 include: [ VideoModel.unscoped(), ActorModel.unscoped() ]
fdbda9e3 78 })
23687332
C
79 for (const videoShare of videoShares) {
80 if (videoShare.Video.isOwned() === false) continue
81
82 console.log('Updating video share ' + videoShare.url)
83
5c6d985f 84 videoShare.url = getVideoAnnounceActivityPubUrl(videoShare.Actor, videoShare.Video)
23687332
C
85 await videoShare.save()
86 }
87
88 console.log('Updating video comments.')
89 const videoComments: VideoCommentModel[] = await VideoCommentModel.findAll({
90 include: [
91 {
92 model: VideoModel.unscoped()
93 },
94 {
95 model: AccountModel.unscoped(),
96 include: [
97 {
98 model: ActorModel.unscoped()
99 }
100 ]
101 }
102 ]
75d612ce 103 })
23687332
C
104 for (const comment of videoComments) {
105 if (comment.isOwned() === false) continue
106
107 console.log('Updating comment ' + comment.url)
108
109 comment.url = getVideoCommentActivityPubUrl(comment.Video, comment)
110 await comment.save()
111 }
112
113 console.log('Updating video and torrent files.')
114
09209296 115 const videos = await VideoModel.listLocal()
23687332 116 for (const video of videos) {
09209296 117 console.log('Updating video ' + video.uuid)
23687332
C
118
119 video.url = getVideoActivityPubUrl(video)
120 await video.save()
121
122 for (const file of video.VideoFiles) {
123 console.log('Updating torrent file %s of video %s.', file.resolution, video.uuid)
124 await video.createTorrentAndSetInfoHash(file)
125 }
09209296
C
126
127 for (const playlist of video.VideoStreamingPlaylists) {
74dc3bca
C
128 playlist.playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
129 playlist.segmentsSha256Url = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid)
09209296
C
130
131 await playlist.save()
132 }
23687332
C
133 }
134}