1
0
Fork 0
peertube/server/models/video/video-import.ts

189 lines
4.6 KiB
TypeScript
Raw Normal View History

import {
2018-08-02 15:48:50 +00:00
AfterUpdate,
AllowNull,
BelongsTo,
Column,
CreatedAt,
DataType,
Default,
DefaultScope,
ForeignKey,
Is,
Model,
Table,
UpdatedAt
} from 'sequelize-typescript'
2018-08-02 15:48:50 +00:00
import { CONSTRAINTS_FIELDS, VIDEO_IMPORT_STATES } from '../../initializers'
import { getSort, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
import { isVideoImportStateValid, isVideoImportTargetUrlValid } from '../../helpers/custom-validators/video-imports'
import { VideoImport, VideoImportState } from '../../../shared'
import { VideoChannelModel } from './video-channel'
import { AccountModel } from '../account/account'
2018-08-02 15:48:50 +00:00
import { TagModel } from './tag'
2018-08-06 15:13:39 +00:00
import { isVideoMagnetUriValid } from '../../helpers/custom-validators/videos'
@DefaultScope({
include: [
{
model: () => VideoModel,
2018-08-03 07:27:30 +00:00
required: false,
include: [
{
model: () => VideoChannelModel,
required: true,
include: [
{
model: () => AccountModel,
required: true
}
]
2018-08-02 15:48:50 +00:00
},
{
2018-08-03 14:23:45 +00:00
model: () => TagModel
}
]
}
]
})
@Table({
tableName: 'videoImport',
indexes: [
{
fields: [ 'videoId' ],
unique: true
}
]
})
export class VideoImportModel extends Model<VideoImportModel> {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
2018-08-06 15:13:39 +00:00
@AllowNull(true)
@Default(null)
@Is('VideoImportTargetUrl', value => throwIfNotValid(value, isVideoImportTargetUrlValid, 'targetUrl'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_IMPORTS.URL.max))
targetUrl: string
2018-08-06 15:13:39 +00:00
@AllowNull(true)
@Default(null)
@Is('VideoImportMagnetUri', value => throwIfNotValid(value, isVideoMagnetUriValid, 'magnetUri'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_IMPORTS.URL.max)) // Use the same constraints than URLs
magnetUri: string
@AllowNull(true)
@Default(null)
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_IMPORTS.TORRENT_NAME.max))
torrentName: string
@AllowNull(false)
@Default(null)
@Is('VideoImportState', value => throwIfNotValid(value, isVideoImportStateValid, 'state'))
@Column
state: VideoImportState
@AllowNull(true)
@Default(null)
@Column(DataType.TEXT)
error: string
@ForeignKey(() => VideoModel)
@Column
videoId: number
@BelongsTo(() => VideoModel, {
foreignKey: {
2018-08-02 15:48:50 +00:00
allowNull: true
},
2018-08-02 15:48:50 +00:00
onDelete: 'set null'
})
Video: VideoModel
2018-08-02 15:48:50 +00:00
@AfterUpdate
static deleteVideoIfFailed (instance: VideoImportModel, options) {
if (instance.state === VideoImportState.FAILED) {
return instance.Video.destroy({ transaction: options.transaction })
}
return undefined
}
static loadAndPopulateVideo (id: number) {
return VideoImportModel.findById(id)
}
2018-08-02 15:48:50 +00:00
static listUserVideoImportsForApi (accountId: number, start: number, count: number, sort: string) {
const query = {
2018-08-03 14:23:45 +00:00
distinct: true,
2018-08-02 15:48:50 +00:00
offset: start,
limit: count,
order: getSort(sort),
include: [
{
model: VideoModel,
2018-08-03 07:27:30 +00:00
required: false,
2018-08-02 15:48:50 +00:00
include: [
{
model: VideoChannelModel,
required: true,
include: [
{
model: AccountModel,
required: true,
where: {
id: accountId
}
}
]
},
{
model: TagModel,
required: false
}
]
}
]
}
return VideoImportModel.unscoped()
.findAndCountAll(query)
.then(({ rows, count }) => {
return {
data: rows,
total: count
}
})
}
toFormattedJSON (): VideoImport {
const videoFormatOptions = {
additionalAttributes: { state: true, waitTranscoding: true, scheduledUpdate: true }
}
2018-08-02 15:48:50 +00:00
const video = this.Video
? Object.assign(this.Video.toFormattedJSON(videoFormatOptions), {
tags: this.Video.Tags.map(t => t.name)
})
: undefined
return {
2018-08-03 07:27:30 +00:00
id: this.id,
targetUrl: this.targetUrl,
2018-08-02 15:48:50 +00:00
state: {
id: this.state,
label: VideoImportModel.getStateLabel(this.state)
},
2018-08-03 07:27:30 +00:00
error: this.error,
2018-08-02 15:48:50 +00:00
updatedAt: this.updatedAt.toISOString(),
createdAt: this.createdAt.toISOString(),
video
}
}
2018-08-02 15:48:50 +00:00
private static getStateLabel (id: number) {
return VIDEO_IMPORT_STATES[id] || 'Unknown'
}
}