2018-09-11 10:27:07 -04:00
|
|
|
import {
|
|
|
|
AllowNull,
|
|
|
|
BelongsTo,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
Default,
|
|
|
|
ForeignKey,
|
|
|
|
HasMany,
|
|
|
|
Is,
|
|
|
|
Model,
|
|
|
|
Table,
|
|
|
|
UpdatedAt
|
|
|
|
} from 'sequelize-typescript'
|
2018-06-29 10:41:29 -04:00
|
|
|
import {
|
2018-12-11 08:52:50 -05:00
|
|
|
isVideoFileExtnameValid,
|
2018-06-29 10:41:29 -04:00
|
|
|
isVideoFileInfoHashValid,
|
|
|
|
isVideoFileResolutionValid,
|
|
|
|
isVideoFileSizeValid,
|
|
|
|
isVideoFPSResolutionValid
|
|
|
|
} from '../../helpers/custom-validators/videos'
|
2019-04-23 03:50:57 -04:00
|
|
|
import { parseAggregateResult, throwIfNotValid } from '../utils'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from './video'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../redundancy/video-redundancy'
|
2019-04-08 05:13:49 -04:00
|
|
|
import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
|
2019-04-23 03:50:57 -04:00
|
|
|
import { FindOptions, QueryTypes, Transaction } from 'sequelize'
|
2019-05-16 10:55:34 -04:00
|
|
|
import { MIMETYPES } from '../../initializers/constants'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { MVideoFile } from '@server/typings/models'
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'videoFile',
|
|
|
|
indexes: [
|
2017-08-25 05:36:23 -04:00
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'videoId' ]
|
2017-08-25 05:36:23 -04:00
|
|
|
},
|
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'infoHash' ]
|
2018-07-23 14:13:30 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'videoId', 'resolution', 'fps' ],
|
|
|
|
unique: true
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
]
|
2017-12-12 11:53:50 -05: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 08:52:50 -05:00
|
|
|
@Is('VideoFileExtname', value => throwIfNotValid(value, isVideoFileExtnameValid, 'extname'))
|
|
|
|
@Column
|
2017-12-12 11:53:50 -05:00
|
|
|
extname: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
2019-01-29 02:37:25 -05:00
|
|
|
@Is('VideoFileInfohash', value => throwIfNotValid(value, isVideoFileInfoHashValid, 'info hash'))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
infoHash: string
|
|
|
|
|
2018-09-26 08:08:35 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(-1)
|
2018-06-29 10:41:29 -04:00
|
|
|
@Is('VideoFileFPS', value => throwIfNotValid(value, isVideoFPSResolutionValid, 'fps'))
|
|
|
|
@Column
|
|
|
|
fps: number
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
2017-08-25 05:36:23 -04:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
Video: VideoModel
|
2018-08-14 05:00:03 -04:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
@HasMany(() => VideoRedundancyModel, {
|
|
|
|
foreignKey: {
|
2019-01-29 02:37:25 -05:00
|
|
|
allowNull: true
|
2018-09-11 10:27:07 -04:00
|
|
|
},
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
hooks: true
|
|
|
|
})
|
|
|
|
RedundancyVideos: VideoRedundancyModel[]
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
static doesInfohashExist (infoHash: string) {
|
2018-08-14 05:00:03 -04:00
|
|
|
const query = 'SELECT 1 FROM "videoFile" WHERE "infoHash" = $infoHash LIMIT 1'
|
|
|
|
const options = {
|
2019-10-21 08:50:55 -04:00
|
|
|
type: QueryTypes.SELECT as QueryTypes.SELECT,
|
2018-08-14 05:00:03 -04:00
|
|
|
bind: { infoHash },
|
|
|
|
raw: true
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.sequelize.query(query, options)
|
2019-04-23 03:50:57 -04:00
|
|
|
.then(results => results.length === 1)
|
2018-08-14 05:00:03 -04:00
|
|
|
}
|
2018-09-24 07:07:33 -04:00
|
|
|
|
2018-10-03 10:43:57 -04:00
|
|
|
static loadWithVideo (id: number) {
|
|
|
|
const options = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2019-02-21 08:28:06 -05:00
|
|
|
return VideoFileModel.findByPk(id, options)
|
2018-10-03 10:43:57 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
static listByStreamingPlaylist (streamingPlaylistId: number, transaction: Transaction) {
|
2019-04-08 05:13:49 -04: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 03:50:57 -04:00
|
|
|
static getStats () {
|
|
|
|
const query: FindOptions = {
|
2019-01-15 03:45:54 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [],
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
remote: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
|
|
|
|
return VideoFileModel.aggregate('size', 'SUM', query)
|
|
|
|
.then(result => ({
|
|
|
|
totalLocalVideoFilesSize: parseAggregateResult(result)
|
|
|
|
}))
|
2019-01-15 03:45:54 -05:00
|
|
|
}
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
isAudio () {
|
|
|
|
return !!MIMETYPES.AUDIO.EXT_MIMETYPE[this.extname]
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
hasSameUniqueKeysThan (other: MVideoFile) {
|
2018-09-24 07:07:33 -04:00
|
|
|
return this.fps === other.fps &&
|
|
|
|
this.resolution === other.resolution &&
|
|
|
|
this.videoId === other.videoId
|
|
|
|
}
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|