aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
blob: 5e69e4172bd9629b537605abce809b8f602ee026 (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
import { readFileSync, writeFileSync } from 'fs'
import { join } from 'path'
import * as parseTorrent from 'parse-torrent'

import { CONFIG, STATIC_PATHS } from '../server/initializers/constants'
import { database as db } from '../server/initializers/database'
import { hasFriends } from '../server/lib/friends'

db.init(true)
  .then(() => {
    return hasFriends()
  })
  .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 => {
    videos.forEach(video => {
      video.VideoFiles.forEach(file => {
        video.createTorrentAndSetInfoHash(file)
      })
    })

    process.exit(0)
  })