]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/migrations/0075-video-resolutions.ts
Merge branch 'release/4.1.0' into develop
[github/Chocobozzz/PeerTube.git] / server / initializers / migrations / 0075-video-resolutions.ts
CommitLineData
c729caf6 1import { readdir, rename } from 'fs-extra'
ecb455b6 2import { join } from 'path'
c729caf6
C
3import * as Sequelize from 'sequelize'
4import { getVideoStreamDimensionsInfo } from '../../helpers/ffmpeg/ffprobe-utils'
6dd9de95 5import { CONFIG } from '../../initializers/config'
ecb455b6
C
6
7function up (utils: {
a1587156
C
8 transaction: Sequelize.Transaction
9 queryInterface: Sequelize.QueryInterface
10 sequelize: Sequelize.Sequelize
ecb455b6
C
11 db: any
12}): Promise<void> {
13 const torrentDir = CONFIG.STORAGE.TORRENTS_DIR
14 const videoFileDir = CONFIG.STORAGE.VIDEOS_DIR
15
62689b94 16 return readdir(videoFileDir)
ecb455b6
C
17 .then(videoFiles => {
18 const tasks: Promise<any>[] = []
19 for (const videoFile of videoFiles) {
20 const matches = /^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})\.([a-z0-9]+)/.exec(videoFile)
21 if (matches === null) {
22 console.log('Invalid video file name %s.', videoFile)
23 continue
24 }
25
14d3270f
C
26 const uuid = matches[1]
27 const ext = matches[2]
28
c729caf6 29 const p = getVideoStreamDimensionsInfo(join(videoFileDir, videoFile))
679c12e6 30 .then(async ({ resolution }) => {
14d3270f 31 const oldTorrentName = uuid + '.torrent'
679c12e6
C
32 const newTorrentName = uuid + '-' + resolution + '.torrent'
33 await rename(join(torrentDir, oldTorrentName), join(torrentDir, newTorrentName)).then(() => resolution)
34
35 const newVideoFileName = uuid + '-' + resolution + '.' + ext
36 await rename(join(videoFileDir, videoFile), join(videoFileDir, newVideoFileName)).then(() => resolution)
37
38 const query = 'UPDATE "VideoFiles" SET "resolution" = ' + resolution +
14d3270f
C
39 ' WHERE "videoId" = (SELECT "id" FROM "Videos" WHERE "uuid" = \'' + uuid + '\')'
40 return utils.sequelize.query(query)
41 })
42
ecb455b6
C
43 tasks.push(p)
44 }
45
46 return Promise.all(tasks).then(() => undefined)
47 })
48}
49
50function down (options) {
51 throw new Error('Not implemented.')
52}
53
54export {
55 up,
56 down
57}