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

170 lines
3.7 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'
2019-04-23 09:50:57 +02:00
import { FindOptions, QueryTypes, Transaction } from 'sequelize'
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'videoFile',
indexes: [
{
2017-12-12 17:53:50 +01:00
fields: [ 'videoId' ]
},
{
2017-12-12 17:53:50 +01:00
fields: [ 'infoHash' ]
2018-07-23 20:13:30 +02:00
},
{
fields: [ 'videoId', 'resolution', 'fps' ],
unique: true
}
]
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: false
},
onDelete: 'CASCADE'
})
2017-12-12 17:53:50 +01:00
Video: VideoModel
2018-08-14 11:00:03 +02:00
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-04-23 09:50:57 +02:00
type: 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
}
hasSameUniqueKeysThan (other: VideoFileModel) {
return this.fps === other.fps &&
this.resolution === other.resolution &&
this.videoId === other.videoId
}
}