2017-06-12 21:06:32 +02:00
|
|
|
import { readFileSync, writeFileSync } from 'fs'
|
2017-08-25 11:36:23 +02:00
|
|
|
import { join } from 'path'
|
2017-06-12 21:06:32 +02:00
|
|
|
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'
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
db.init(true)
|
|
|
|
.then(() => {
|
|
|
|
return hasFriends()
|
|
|
|
})
|
|
|
|
.then(itHasFriends => {
|
2017-06-12 21:06:32 +02:00
|
|
|
if (itHasFriends === true) {
|
|
|
|
console.log('Cannot update host because you have friends!')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Updating torrent files.')
|
2017-07-05 13:26:25 +02:00
|
|
|
return db.Video.list()
|
|
|
|
})
|
|
|
|
.then(videos => {
|
2017-08-25 11:36:23 +02:00
|
|
|
videos.forEach(video => {
|
|
|
|
video.VideoFiles.forEach(file => {
|
|
|
|
video.createTorrentAndSetInfoHash(file)
|
|
|
|
})
|
2017-06-12 21:06:32 +02:00
|
|
|
})
|
2017-07-05 13:26:25 +02:00
|
|
|
|
|
|
|
process.exit(0)
|
2017-06-12 21:06:32 +02:00
|
|
|
})
|