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

188 lines
4.7 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'
2020-12-08 13:30:29 +00:00
import { MVideoImportDefault, MVideoImportFormattable } from '@server/types/models/video/video-import'
import { VideoImport, VideoImportState } from '../../../shared'
2020-12-08 13:30:29 +00:00
import { isVideoImportStateValid, isVideoImportTargetUrlValid } from '../../helpers/custom-validators/video-imports'
2018-08-06 15:13:39 +00:00
import { isVideoMagnetUriValid } from '../../helpers/custom-validators/videos'
2020-12-08 13:30:29 +00:00
import { CONSTRAINTS_FIELDS, VIDEO_IMPORT_STATES } from '../../initializers/constants'
2018-08-07 08:07:53 +00:00
import { UserModel } from '../account/user'
2020-12-08 13:30:29 +00:00
import { getSort, throwIfNotValid } from '../utils'
import { ScopeNames as VideoModelScopeNames, VideoModel } from './video'
2019-04-23 07:50:57 +00:00
@DefaultScope(() => ({
include: [
{
2019-04-23 07:50:57 +00:00
model: UserModel.unscoped(),
2018-08-07 08:07:53 +00:00
required: true
},
{
2019-08-15 09:53:26 +00:00
model: VideoModel.scope([
VideoModelScopeNames.WITH_ACCOUNT_DETAILS,
VideoModelScopeNames.WITH_TAGS,
VideoModelScopeNames.WITH_THUMBNAILS
]),
2018-08-07 08:07:53 +00:00
required: false
}
]
2019-04-23 07:50:57 +00:00
}))
@Table({
tableName: 'videoImport',
indexes: [
{
fields: [ 'videoId' ],
unique: true
2018-08-07 08:07:53 +00:00
},
{
fields: [ 'userId' ]
}
]
})
2020-12-08 13:30:29 +00:00
export class VideoImportModel extends Model {
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
2018-08-06 15:13:39 +00:00
@AllowNull(true)
@Default(null)
2019-04-18 09:28:17 +00:00
@Is('VideoImportTargetUrl', value => throwIfNotValid(value, isVideoImportTargetUrlValid, 'targetUrl', true))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_IMPORTS.URL.max))
targetUrl: string
2018-08-06 15:13:39 +00:00
@AllowNull(true)
@Default(null)
2019-04-18 09:28:17 +00:00
@Is('VideoImportMagnetUri', value => throwIfNotValid(value, isVideoMagnetUriValid, 'magnetUri', true))
2018-08-06 15:13:39 +00:00
@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
2018-08-07 08:07:53 +00:00
@ForeignKey(() => UserModel)
@Column
userId: number
@BelongsTo(() => UserModel, {
foreignKey: {
allowNull: false
},
onDelete: 'cascade'
})
User: UserModel
@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
}
2020-12-08 13:30:29 +00:00
static loadAndPopulateVideo (id: number): Promise<MVideoImportDefault> {
2019-02-21 13:28:06 +00:00
return VideoImportModel.findByPk(id)
}
2018-08-07 08:07:53 +00:00
static listUserVideoImportsForApi (userId: number, start: number, count: number, sort: string) {
2018-08-02 15:48:50 +00:00
const query = {
2018-08-03 14:23:45 +00:00
distinct: true,
2018-08-02 15:48:50 +00:00
include: [
{
2020-04-15 12:15:44 +00:00
attributes: [ 'id' ],
2018-08-07 08:07:53 +00:00
model: UserModel.unscoped(), // FIXME: Without this, sequelize try to COUNT(DISTINCT(*)) which is an invalid SQL query
required: true
2018-08-02 15:48:50 +00:00
}
2018-08-07 08:07:53 +00:00
],
offset: start,
limit: count,
order: getSort(sort),
where: {
userId
}
2018-08-02 15:48:50 +00:00
}
2019-08-15 09:53:26 +00:00
return VideoImportModel.findAndCountAll<MVideoImportDefault>(query)
2018-08-02 15:48:50 +00:00
.then(({ rows, count }) => {
return {
data: rows,
total: count
}
})
}
getTargetIdentifier () {
return this.targetUrl || this.magnetUri || this.torrentName
}
2019-08-20 17:05:31 +00:00
toFormattedJSON (this: MVideoImportFormattable): VideoImport {
const videoFormatOptions = {
completeDescription: true,
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) })
2018-08-02 15:48:50 +00:00
: undefined
return {
2018-08-03 07:27:30 +00:00
id: this.id,
2018-08-07 07:54:36 +00:00
targetUrl: this.targetUrl,
2018-08-07 07:54:36 +00:00
magnetUri: this.magnetUri,
torrentName: this.torrentName,
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'
}
}