PeerTube/scripts/update-host.ts

31 lines
783 B
TypeScript
Raw Normal View History

2017-06-12 21:06:32 +02:00
import { readFileSync, writeFileSync } from 'fs'
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'
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.')
return db.Video.list()
})
.then(videos => {
videos.forEach(video => {
video.VideoFiles.forEach(file => {
video.createTorrentAndSetInfoHash(file)
})
2017-06-12 21:06:32 +02:00
})
process.exit(0)
2017-06-12 21:06:32 +02:00
})