aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/migrations/0450-streaming-playlist-files.ts
blob: 4e177bef8dde817563e78a6348f3f14be5f63ba8 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import * as Sequelize from 'sequelize'
import { join } from 'path'
import { HLS_STREAMING_PLAYLIST_DIRECTORY, WEBSERVER } from '@server/initializers/constants'
import { CONFIG } from '@server/initializers/config'
import { pathExists, stat, writeFile } from 'fs-extra'
import * as parseTorrent from 'parse-torrent'
import { createTorrentPromise } from '@server/helpers/webtorrent'

async function up (utils: {
  transaction: Sequelize.Transaction,
  queryInterface: Sequelize.QueryInterface,
  sequelize: Sequelize.Sequelize,
  db: any
}): Promise<void> {
  {
    const data = {
      type: Sequelize.INTEGER,
      allowNull: true,
      references: {
        model: 'videoStreamingPlaylist',
        key: 'id'
      },
      onDelete: 'CASCADE'
    }

    await utils.queryInterface.addColumn('videoFile', 'videoStreamingPlaylistId', data)
  }

  {
    const data = {
      type: Sequelize.INTEGER,
      allowNull: true
    }

    await utils.queryInterface.changeColumn('videoFile', 'videoId', data)
  }

  {
    await utils.queryInterface.removeIndex('videoFile', 'video_file_video_id_resolution_fps')
  }

  {
    const query = 'insert into "videoFile" ' +
      '(resolution, size, "infoHash", "videoId", "createdAt", "updatedAt", fps, extname, "videoStreamingPlaylistId")' +
      '(SELECT "videoFile".resolution, "videoFile".size, \'fake\', NULL, "videoFile"."createdAt", "videoFile"."updatedAt", "videoFile"."fps", ' +
      '"videoFile".extname, "videoStreamingPlaylist".id FROM "videoStreamingPlaylist" ' +
      'inner join video ON video.id = "videoStreamingPlaylist"."videoId" inner join "videoFile" ON "videoFile"."videoId" = video.id)'

    await utils.sequelize.query(query, { transaction: utils.transaction })
  }

  {
    const query = 'select "videoFile".id as id, "videoFile".resolution as resolution, "video".uuid as uuid from "videoFile" ' +
      'inner join "videoStreamingPlaylist" ON "videoStreamingPlaylist".id = "videoFile"."videoStreamingPlaylistId" ' +
      'inner join video ON video.id = "videoStreamingPlaylist"."videoId" ' +
      'WHERE video.remote IS FALSE'
    const options = {
      type: Sequelize.QueryTypes.SELECT,
      transaction: utils.transaction
    }
    const res = await utils.sequelize.query(query, options)

    for (const row of res) {
      const videoFilename = `${row['uuid']}-${row['resolution']}-fragmented.mp4`
      const videoFilePath = join(HLS_STREAMING_PLAYLIST_DIRECTORY, row['uuid'], videoFilename)

      if (!await pathExists(videoFilePath)) {
        console.warn('Cannot generate torrent of %s: file does not exist.', videoFilePath)
        continue
      }

      const createTorrentOptions = {
        // Keep the extname, it's used by the client to stream the file inside a web browser
        name: `video ${row['uuid']}`,
        createdBy: 'PeerTube',
        announceList: [
          [ WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket' ],
          [ WEBSERVER.URL + '/tracker/announce' ]
        ],
        urlList: [ WEBSERVER.URL + join(HLS_STREAMING_PLAYLIST_DIRECTORY, row['uuid'], videoFilename) ]
      }
      const torrent = await createTorrentPromise(videoFilePath, createTorrentOptions)

      const torrentName = `${row['uuid']}-${row['resolution']}-hls.torrent`
      const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, torrentName)

      await writeFile(filePath, torrent)

      const parsedTorrent = parseTorrent(torrent)
      const infoHash = parsedTorrent.infoHash

      const stats = await stat(videoFilePath)
      const size = stats.size

      const queryUpdate = 'UPDATE "videoFile" SET "infoHash" = ?, "size" = ? WHERE id = ?'

      const options = {
        type: Sequelize.QueryTypes.UPDATE,
        replacements: [ infoHash, size, row['id'] ],
        transaction: utils.transaction
      }
      await utils.sequelize.query(queryUpdate, options)

    }
  }
}

function down (options) {
  throw new Error('Not implemented.')
}

export {
  up,
  down
}