aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
blob: ba4656b75cb268192175fc5bdb98c8d8a0cb75a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { getServerAccount } from '../server/helpers'
import { initDatabase } from '../server/initializers'
import { AccountFollowModel } from '../server/models/account/account-follow'
import { VideoModel } from '../server/models/video/video'

initDatabase(true)
  .then(() => {
    return getServerAccount()
  })
  .then(serverAccount => {
    return AccountFollowModel.listAcceptedFollowingUrlsForApi([ serverAccount.id ], undefined)
  })
  .then(res => {
    return res.total > 0
  })
  .then(hasFollowing => {
    if (hasFollowing === true) {
      console.log('Cannot update host because you follow other servers!')
      process.exit(-1)
    }

    console.log('Updating torrent files.')
    return VideoModel.list()
  })
  .then(videos => {
    const tasks: Promise<any>[] = []

    videos.forEach(video => {
      console.log('Updating video ' + video.uuid)

      video.VideoFiles.forEach(file => {
        tasks.push(video.createTorrentAndSetInfoHash(file))
      })
    })

    return Promise.all(tasks)
  })
  .then(() => {
    process.exit(0)
  })