2017-08-25 05:36:23 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import * as Promise from 'bluebird'
|
2018-08-27 07:28:49 -04:00
|
|
|
import { stat } from 'fs-extra'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from '../../models/video/video'
|
2017-08-25 05:36:23 -04:00
|
|
|
|
|
|
|
function up (utils: {
|
|
|
|
transaction: Sequelize.Transaction,
|
|
|
|
queryInterface: Sequelize.QueryInterface,
|
|
|
|
sequelize: Sequelize.Sequelize,
|
|
|
|
db: any
|
|
|
|
}): Promise<void> {
|
|
|
|
return utils.db.Video.listOwnedAndPopulateAuthorAndTags()
|
2017-12-12 11:53:50 -05:00
|
|
|
.then((videos: VideoModel[]) => {
|
2017-08-25 05:36:23 -04:00
|
|
|
const tasks: Promise<any>[] = []
|
|
|
|
|
|
|
|
videos.forEach(video => {
|
|
|
|
video.VideoFiles.forEach(videoFile => {
|
|
|
|
const p = new Promise((res, rej) => {
|
|
|
|
stat(video.getVideoFilePath(videoFile), (err, stats) => {
|
|
|
|
if (err) return rej(err)
|
|
|
|
|
|
|
|
videoFile.size = stats.size
|
|
|
|
videoFile.save().then(res).catch(rej)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
tasks.push(p)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return tasks
|
|
|
|
})
|
|
|
|
.then((tasks: Promise<any>[]) => {
|
|
|
|
return Promise.all(tasks)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function down (options) {
|
|
|
|
throw new Error('Not implemented.')
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
up,
|
|
|
|
down
|
|
|
|
}
|