PeerTube/server/models/video/video-file.ts

251 lines
6.1 KiB
TypeScript
Raw Normal View History

2018-09-11 16:27:07 +02:00
import {
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
Default,
ForeignKey,
HasMany,
Is,
Model,
Table,
UpdatedAt
} from 'sequelize-typescript'
import {
2018-12-11 14:52:50 +01:00
isVideoFileExtnameValid,
isVideoFileInfoHashValid,
isVideoFileResolutionValid,
isVideoFileSizeValid,
isVideoFPSResolutionValid
} from '../../helpers/custom-validators/videos'
2019-04-23 09:50:57 +02:00
import { parseAggregateResult, throwIfNotValid } from '../utils'
2017-12-12 17:53:50 +01:00
import { VideoModel } from './video'
2018-09-11 16:27:07 +02:00
import { VideoRedundancyModel } from '../redundancy/video-redundancy'
2019-04-08 11:13:49 +02:00
import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
import { FindOptions, Op, QueryTypes, Transaction } from 'sequelize'
2019-05-16 16:55:34 +02:00
import { MIMETYPES } from '../../initializers/constants'
import { MVideoFile, MVideoFileStreamingPlaylistVideo, MVideoFileVideo } from '../../typings/models/video/video-file'
import { MStreamingPlaylist, MStreamingPlaylistVideo, MVideo } from '@server/typings/models'
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'videoFile',
indexes: [
{
fields: [ 'videoId' ],
where: {
videoId: {
[Op.ne]: null
}
}
},
{
fields: [ 'videoStreamingPlaylistId' ],
where: {
videoStreamingPlaylistId: {
[Op.ne]: null
}
}
},
{
2017-12-12 17:53:50 +01:00
fields: [ 'infoHash' ]
2018-07-23 20:13:30 +02:00
},
2018-07-23 20:13:30 +02:00
{
fields: [ 'videoId', 'resolution', 'fps' ],
unique: true,
where: {
videoId: {
[Op.ne]: null
}
}
},
{
fields: [ 'videoStreamingPlaylistId', 'resolution', 'fps' ],
unique: true,
where: {
videoStreamingPlaylistId: {
[Op.ne]: null
}
}
}
]
2017-12-12 17:53:50 +01:00
})
export class VideoFileModel extends Model<VideoFileModel> {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@AllowNull(false)
@Is('VideoFileResolution', value => throwIfNotValid(value, isVideoFileResolutionValid, 'resolution'))
@Column
resolution: number
@AllowNull(false)
@Is('VideoFileSize', value => throwIfNotValid(value, isVideoFileSizeValid, 'size'))
@Column(DataType.BIGINT)
size: number
@AllowNull(false)
2018-12-11 14:52:50 +01:00
@Is('VideoFileExtname', value => throwIfNotValid(value, isVideoFileExtnameValid, 'extname'))
@Column
2017-12-12 17:53:50 +01:00
extname: string
@AllowNull(false)
2019-01-29 08:37:25 +01:00
@Is('VideoFileInfohash', value => throwIfNotValid(value, isVideoFileInfoHashValid, 'info hash'))
2017-12-12 17:53:50 +01:00
@Column
infoHash: string
@AllowNull(false)
@Default(-1)
@Is('VideoFileFPS', value => throwIfNotValid(value, isVideoFPSResolutionValid, 'fps'))
@Column
fps: number
2017-12-12 17:53:50 +01:00
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
foreignKey: {
allowNull: true
},
onDelete: 'CASCADE'
})
2017-12-12 17:53:50 +01:00
Video: VideoModel
2018-08-14 11:00:03 +02:00
@ForeignKey(() => VideoStreamingPlaylistModel)
@Column
videoStreamingPlaylistId: number
@BelongsTo(() => VideoStreamingPlaylistModel, {
foreignKey: {
allowNull: true
},
onDelete: 'CASCADE'
})
VideoStreamingPlaylist: VideoStreamingPlaylistModel
2018-09-11 16:27:07 +02:00
@HasMany(() => VideoRedundancyModel, {
foreignKey: {
2019-01-29 08:37:25 +01:00
allowNull: true
2018-09-11 16:27:07 +02:00
},
onDelete: 'CASCADE',
hooks: true
})
RedundancyVideos: VideoRedundancyModel[]
2019-01-29 08:37:25 +01:00
static doesInfohashExist (infoHash: string) {
2018-08-14 11:00:03 +02:00
const query = 'SELECT 1 FROM "videoFile" WHERE "infoHash" = $infoHash LIMIT 1'
const options = {
2019-10-21 14:50:55 +02:00
type: QueryTypes.SELECT as QueryTypes.SELECT,
2018-08-14 11:00:03 +02:00
bind: { infoHash },
raw: true
}
return VideoModel.sequelize.query(query, options)
2019-04-23 09:50:57 +02:00
.then(results => results.length === 1)
2018-08-14 11:00:03 +02:00
}
2018-10-03 16:43:57 +02:00
static loadWithVideo (id: number) {
const options = {
include: [
{
model: VideoModel.unscoped(),
required: true
}
]
}
2019-02-21 14:28:06 +01:00
return VideoFileModel.findByPk(id, options)
2018-10-03 16:43:57 +02:00
}
2019-04-23 09:50:57 +02:00
static listByStreamingPlaylist (streamingPlaylistId: number, transaction: Transaction) {
2019-04-08 11:13:49 +02:00
const query = {
include: [
{
model: VideoModel.unscoped(),
required: true,
include: [
{
model: VideoStreamingPlaylistModel.unscoped(),
required: true,
where: {
id: streamingPlaylistId
}
}
]
}
],
transaction
}
return VideoFileModel.findAll(query)
}
2019-04-23 09:50:57 +02:00
static getStats () {
const query: FindOptions = {
2019-01-15 09:45:54 +01:00
include: [
{
attributes: [],
model: VideoModel.unscoped(),
where: {
remote: false
}
}
]
}
2019-04-23 09:50:57 +02:00
return VideoFileModel.aggregate('size', 'SUM', query)
.then(result => ({
totalLocalVideoFilesSize: parseAggregateResult(result)
}))
2019-01-15 09:45:54 +01:00
}
// Redefine upsert because sequelize does not use an appropriate where clause in the update query with 2 unique indexes
static async customUpsert (
videoFile: MVideoFile,
mode: 'streaming-playlist' | 'video',
transaction: Transaction
) {
const baseWhere = {
fps: videoFile.fps,
resolution: videoFile.resolution
}
if (mode === 'streaming-playlist') Object.assign(baseWhere, { videoStreamingPlaylistId: videoFile.videoStreamingPlaylistId })
else Object.assign(baseWhere, { videoId: videoFile.videoId })
const element = await VideoFileModel.findOne({ where: baseWhere, transaction })
if (!element) return videoFile.save({ transaction })
for (const k of Object.keys(videoFile.toJSON())) {
element[k] = videoFile[k]
}
return element.save({ transaction })
}
getVideoOrStreamingPlaylist (this: MVideoFileVideo | MVideoFileStreamingPlaylistVideo): MVideo | MStreamingPlaylistVideo {
if (this.videoId) return (this as MVideoFileVideo).Video
return (this as MVideoFileStreamingPlaylistVideo).VideoStreamingPlaylist
}
2019-05-16 16:55:34 +02:00
isAudio () {
return !!MIMETYPES.AUDIO.EXT_MIMETYPE[this.extname]
}
2019-08-15 11:53:26 +02:00
hasSameUniqueKeysThan (other: MVideoFile) {
return this.fps === other.fps &&
this.resolution === other.resolution &&
(
(this.videoId !== null && this.videoId === other.videoId) ||
(this.videoStreamingPlaylistId !== null && this.videoStreamingPlaylistId === other.videoStreamingPlaylistId)
)
}
}