aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
blob: 05f0ef96d5e67003eef1106d639f71ed7719e6da (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
import { database as db } from '../server/initializers/database'
// import { hasFriends } from '../server/lib/friends'

db.init(true)
  .then(() => {
    // FIXME: check if has following
    // return hasFriends()
    return true
  })
  .then(itHasFriends => {
    if (itHasFriends === true) {
      console.log('Cannot update host because you have friends!')
      process.exit(-1)
    }

    console.log('Updating torrent files.')
    return db.Video.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)
  })